From 7eab7f68ddb7da574438b866e616df2cabe00b83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:23:11 +0300 Subject: [PATCH 01/49] Init themedoc builder --- .gitignore | 3 +- api-generator/build-apidoc.ts | 4 +- api-generator/build-theming.ts | 92 + api-generator/themedoc.json | 3453 +++++++++++++++++ package.json | 3 +- .../themes/types/accordion/index.d.ts | 252 -- .../themes/types/accordion/index.ts | 2 +- 7 files changed, 3552 insertions(+), 257 deletions(-) create mode 100644 api-generator/build-theming.ts create mode 100644 api-generator/themedoc.json delete mode 100644 src/app/components/themes/types/accordion/index.d.ts diff --git a/.gitignore b/.gitignore index 7dc352d2419..0df428e5061 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,8 @@ Thumbs.db # type doc api-generator/typedoc.json +api-generator/themedoc.json .vercel .nx -builder/node_modules \ No newline at end of file +builder/node_modules diff --git a/api-generator/build-apidoc.ts b/api-generator/build-apidoc.ts index 9c3fa1fc703..c3099c846b9 100644 --- a/api-generator/build-apidoc.ts +++ b/api-generator/build-apidoc.ts @@ -38,7 +38,6 @@ async function main() { const project = await app.convert(); await app.generateJson(project, `./api-generator/typedoc.json`); - if (project) { let doc = {}; @@ -52,7 +51,6 @@ async function main() { }; const modules = project.groups.find((g) => g.title === 'Modules'); - if (isProcessable(modules)) { modules.children.forEach((module) => { const name = module.name.replace(/.*\//, ''); @@ -360,6 +358,8 @@ async function main() { doc[name]['types'] = types; } + + // if(isProcessable(module_theming_group)) {} } } }); diff --git a/api-generator/build-theming.ts b/api-generator/build-theming.ts new file mode 100644 index 00000000000..2065162b1a9 --- /dev/null +++ b/api-generator/build-theming.ts @@ -0,0 +1,92 @@ +//@ts-ignore +const TypeDoc = require('typedoc'); +//@ts-ignore +const path = require('path'); +//@ts-ignore +const fs = require('fs'); +//@ts-ignore +const rootDir = path.resolve(__dirname, '../'); +//@ts-ignore +const outputPath = path.resolve(rootDir, 'src/app/showcase/doc/apidoc'); + +// const staticMessages = { +// methods: "Defines methods that can be accessed by the component's reference.", +// emits: 'Defines emit that determine the behavior of the component based on a given condition or report the actions that the component takes.', +// templates: 'Defines the templates used by the component.', +// events: "Defines the custom events used by the component's emitters.", +// interfaces: 'Defines the custom interfaces used by the module.', +// types: 'Defines the custom types used by the module.', +// props: 'Defines the input properties of the component.', +// service: 'Defines the service used by the component', +// }; + +async function theming() { + const app = await TypeDoc.Application.bootstrapWithPlugins({ + // typedoc options here + name: 'PrimeNG', + entryPoints: [`src/app/components/themes/types/accordion/`, `src/app/components/themes/types/panel/`], + entryPointStrategy: 'expand', + hideGenerator: true, + excludeExternals: true, + includeVersion: true, + searchInComments: true, + disableSources: false, + logLevel: 'Error', + sort: ['source-order'], + exclude: ['node_modules', 'src/app/components/**/*spec.ts', 'src/app/components/**/*public_api.ts'], + }); + + const project = await app.convert(); + await app.generateJson(project, `./api-generator/themedoc.json`); + // console.log(project); + if (project) { + let doc = {}; + + const parseText = (text) => { + return text.replace(/{/g, '{').replace(/}/g, '}'); + }; + + const getDeprecatedText = (signature) => { + const deprecatedTag = signature?.comment?.getTag('@deprecated'); + return deprecatedTag ? parseText(deprecatedTag.content[0].text) : undefined; + }; + + const isProcessable = (value) => { + return value && value.children && value.children.length; + }; + + const allowed = (name) => { + return !name.includes('ts-helpers') && !name.includes('icons'); + }; + + const modules = project.groups.find((g) => g.title === 'Modules'); + modules.children.forEach((child) => { + const _name = child.name.split('/').pop(); + doc[_name] = { + name: _name, + properties: {}, + }; + + child.groups.forEach((group) => { + // console.log(group.children); + }); + }); + + let mergedDocs = {}; + + for (const key in doc) { + if (!mergedDocs[key]) { + mergedDocs[key] = { + ...doc[key], + }; + } + } + + const typedocJSON = JSON.stringify(mergedDocs, null, 4); + + !fs.existsSync(outputPath) && fs.mkdirSync(outputPath); + fs.writeFileSync(path.resolve(outputPath, 'index.json'), typedocJSON); + } +} + +theming().catch(console.error); diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json new file mode 100644 index 00000000000..0ba6d8441fd --- /dev/null +++ b/api-generator/themedoc.json @@ -0,0 +1,3453 @@ +{ + "id": 0, + "name": "PrimeNG", + "variant": "project", + "kind": 1, + "flags": {}, + "children": [ + { + "id": 1, + "name": "themes/accordion", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Accordion Design Tokens\n\n[Live Demo](https://www.primeng.org/accordion/)" + } + ] + }, + "children": [ + { + "id": 2, + "name": "AccordionDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 4, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 5, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 5 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" + } + ] + } + } + }, + { + "id": 6, + "name": "panel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the panel section" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 7, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 8, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.panel.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 9, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.panel.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8, + 9 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 28, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" + } + ] + } + } + }, + { + "id": 10, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 45, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 11, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 12, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 51, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L51" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 15, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 16, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 18, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 19, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 20, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 21, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 22, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 23, + "name": "activeHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active hover background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.active.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 24, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of header" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 25, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 26, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 127, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 27, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 133, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 28, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 139, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 29, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 30, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 26, + 27, + 28, + 29, + 30 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 121, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" + } + ] + } + } + }, + { + "id": 31, + "name": "toggleIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toggle icon of header" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 156, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 32, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 33, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toggle icon color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.toggle.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 162, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L162" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 34, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toggle icon hover color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.toggle.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 168, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L168" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 35, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toggle icon active color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.toggle.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 174, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L174" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 36, + "name": "activeHoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toggle icon active hover color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.toggle.icon.active.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 180, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L180" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 33, + 34, + 35, + 36 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 156, + "character": 21, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" + } + ] + } + } + }, + { + "id": 37, + "name": "first", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "First of header" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 185, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 38, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 39, + "name": "topBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "First top border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.first.top.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 191, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L191" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 40, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "First border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.first.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 197, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L197" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 39, + 40 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 185, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" + } + ] + } + } + }, + { + "id": 41, + "name": "last", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Last of header" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 202, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 42, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 43, + "name": "bottomBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Last bottom border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.last.bottom.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 208, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L208" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 44, + "name": "activeBottomBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Last active bottom border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.header.last.active.bottom.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 214, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L214" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 43, + 44 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 202, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 31, + 37, + 41 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 45, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" + } + ] + } + } + }, + { + "id": 45, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 220, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 46, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 47, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.content.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 226, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L226" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 48, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.content.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 232, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L232" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 49, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 238, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L238" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 50, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.content.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 244, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L244" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 51, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "accordion.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 250, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L250" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 47, + 48, + 49, + 50, + 51 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 220, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" + } + ] + } + } + }, + { + "id": 52, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 53, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 54, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2, + "name": "AccordionDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 55, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2, + "name": "AccordionDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 54, + 55 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3, + 6, + 10, + 45, + 52 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2, + "name": "AccordionDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2 + ] + } + ], + "sources": [ + { + "fileName": "accordion/index.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L1" + } + ] + }, + { + "id": 56, + "name": "themes/panel", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" + } + ] + }, + "children": [ + { + "id": 57, + "name": "PanelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 84, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 85, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 86, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 87, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 86, + 87 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 58, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 59, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 60, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 61, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 62, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 63, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 60, + 61, + 62, + 63 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 64, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 65, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 66, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 67, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 68, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 69, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 70, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 71, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 66, + 67, + 68, + 69, + 70, + 71 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 72, + "name": "toggleableHeader", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toggleable header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 73, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 74, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of toggleable header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.toggleable.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 74 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ] + } + } + }, + { + "id": 75, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 76, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 77, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 77 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 78, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 79, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 80, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 80 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ] + } + } + }, + { + "id": 81, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 82, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 83, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 83 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 84, + 58, + 64, + 72, + 75, + 78, + 81 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 57 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L1" + } + ] + } + ], + "groups": [ + { + "title": "Modules", + "children": [ + 1, + 56 + ] + } + ], + "packageName": "primeng", + "packageVersion": "18.0.0-beta.1", + "readme": [ + { + "kind": "text", + "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." + } + ], + "symbolIdMap": { + "1": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "" + }, + "2": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens" + }, + "3": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.root" + }, + "4": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "5": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.transitionDuration" + }, + "6": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.panel" + }, + "7": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "8": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "9": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" + }, + "10": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.header" + }, + "11": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "12": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "13": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" + }, + "14": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" + }, + "15": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" + }, + "16": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.fontWeight" + }, + "17": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderRadius" + }, + "18": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "19": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" + }, + "20": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" + }, + "21": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverBackground" + }, + "22": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBackground" + }, + "23": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverBackground" + }, + "24": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.focusRing" + }, + "25": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "26": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.width" + }, + "27": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.style" + }, + "28": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "29": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.offset" + }, + "30": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.shadow" + }, + "31": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.toggleIcon" + }, + "32": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "33": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "34": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" + }, + "35": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" + }, + "36": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverColor" + }, + "37": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.first" + }, + "38": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "39": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.topBorderRadius" + }, + "40": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "41": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.last" + }, + "42": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "43": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.bottomBorderRadius" + }, + "44": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBottomBorderRadius" + }, + "45": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.content" + }, + "46": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "47": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "48": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" + }, + "49": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" + }, + "50": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "51": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" + }, + "52": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "53": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "54": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "55": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "56": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "" + }, + "57": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens" + }, + "58": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.root" + }, + "59": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "60": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" + }, + "61": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "62": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" + }, + "63": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "64": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.header" + }, + "65": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "66": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" + }, + "67": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" + }, + "68": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "69": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "70": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "71": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "72": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.toggleableHeader" + }, + "73": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "74": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "75": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.title" + }, + "76": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "77": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "78": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.content" + }, + "79": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "80": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "81": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.footer" + }, + "82": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "83": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "84": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "85": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "86": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "87": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + } + } +} \ No newline at end of file diff --git a/package.json b/package.json index 59cd4b05506..77eb5348e3f 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "build:package": "BROWSERSLIST_ENV=library ng build primeng-library && gulp build-assets", "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", - "apidoc": "node ./api-generator/build-apidoc.ts" + "apidoc": "node ./api-generator/build-apidoc.ts", + "themedoc": "node ./api-generator/build-theming.ts" }, "repository": { "type": "git", diff --git a/src/app/components/themes/types/accordion/index.d.ts b/src/app/components/themes/types/accordion/index.d.ts deleted file mode 100644 index 3a8ecf67531..00000000000 --- a/src/app/components/themes/types/accordion/index.d.ts +++ /dev/null @@ -1,252 +0,0 @@ -/** - * - * Accordion Design Tokens - * - * [Live Demo](https://www.primeng.org/accordion/) - * - * @module themes/accordion - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface AccordionDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken accordion.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the panel section - */ - panel?: { - /** - * Border width of panel - * - * @designToken accordion.panel.border.width - */ - borderWidth?: string; - /** - * Border color of panel - * - * @designToken accordion.panel.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Color of header - * - * @designToken accordion.header.color - */ - color?: string; - /** - * Hover color of header - * - * @designToken accordion.header.hover.color - */ - hoverColor?: string; - /** - * Active color of header - * - * @designToken accordion.header.active.color - */ - activeColor?: string; - /** - * Padding of header - * - * @designToken accordion.header.padding - */ - padding?: string; - /** - * Font weight of header - * - * @designToken accordion.header.font.weight - */ - fontWeight?: string; - /** - * Border radius of header - * - * @designToken accordion.header.border.radius - */ - borderRadius?: string; - /** - * Border width of header - * - * @designToken accordion.header.border.width - */ - borderWidth?: string; - /** - * Border color of header - * - * @designToken accordion.header.border.color - */ - borderColor?: string; - /** - * Background of header - * - * @designToken accordion.header.background - */ - background?: string; - /** - * Hover background of header - * - * @designToken accordion.header.hover.background - */ - hoverBackground?: string; - /** - * Active background of header - * - * @designToken accordion.header.active.background - */ - activeBackground?: string; - /** - * Active hover background of header - * - * @designToken accordion.header.active.hover.background - */ - activeHoverBackground?: string; - /** - * Focus ring of header - */ - focusRing?: { - /** - * Focus ring width of header - * - * @designToken accordion.header.focus.ring.width - */ - width?: string; - /** - * Focus ring style of header - * - * @designToken accordion.header.focus.ring.style - */ - style?: string; - /** - * Focus ring color of header - * - * @designToken accordion.header.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of header - * - * @designToken accordion.header.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of header - * - * @designToken accordion.header.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Toggle icon of header - */ - toggleIcon?: { - /** - * Toggle icon color of header - * - * @designToken accordion.header.toggle.icon.color - */ - color?: string; - /** - * Toggle icon hover color of header - * - * @designToken accordion.header.toggle.icon.hover.color - */ - hoverColor?: string; - /** - * Toggle icon active color of header - * - * @designToken accordion.header.toggle.icon.active.color - */ - activeColor?: string; - /** - * Toggle icon active hover color of header - * - * @designToken accordion.header.toggle.icon.active.hover.color - */ - activeHoverColor?: string; - }; - /** - * First of header - */ - first?: { - /** - * First top border radius of header - * - * @designToken accordion.header.first.top.border.radius - */ - topBorderRadius?: string; - /** - * First border width of header - * - * @designToken accordion.header.first.border.width - */ - borderWidth?: string; - }; - /** - * Last of header - */ - last?: { - /** - * Last bottom border radius of header - * - * @designToken accordion.header.last.bottom.border.radius - */ - bottomBorderRadius?: string; - /** - * Last active bottom border radius of header - * - * @designToken accordion.header.last.active.bottom.border.radius - */ - activeBottomBorderRadius?: string; - }; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Border width of content - * - * @designToken accordion.content.border.width - */ - borderWidth?: string; - /** - * Border color of content - * - * @designToken accordion.content.border.color - */ - borderColor?: string; - /** - * Background of content - * - * @designToken accordion.content.background - */ - background?: string; - /** - * Color of content - * - * @designToken accordion.content.color - */ - color?: string; - /** - * Padding of content - * - * @designToken accordion.content.padding - */ - padding?: string; - }; -} diff --git a/src/app/components/themes/types/accordion/index.ts b/src/app/components/themes/types/accordion/index.ts index ada6ef85858..3a8ecf67531 100644 --- a/src/app/components/themes/types/accordion/index.ts +++ b/src/app/components/themes/types/accordion/index.ts @@ -4,7 +4,7 @@ * * [Live Demo](https://www.primeng.org/accordion/) * - * @module themes/autocomplete + * @module themes/accordion * */ From 8300f25da4a77e59fcdfebaf722d92223f2741f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:23:11 +0300 Subject: [PATCH 02/49] Init themedoc builder --- .gitignore | 3 +- api-generator/build-apidoc.ts | 4 +- api-generator/build-theming.ts | 92 ++++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 api-generator/build-theming.ts diff --git a/.gitignore b/.gitignore index 7dc352d2419..0df428e5061 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,8 @@ Thumbs.db # type doc api-generator/typedoc.json +api-generator/themedoc.json .vercel .nx -builder/node_modules \ No newline at end of file +builder/node_modules diff --git a/api-generator/build-apidoc.ts b/api-generator/build-apidoc.ts index ad34f3de605..671aad7e948 100644 --- a/api-generator/build-apidoc.ts +++ b/api-generator/build-apidoc.ts @@ -39,7 +39,6 @@ async function main() { const project = await app.convert(); await app.generateJson(project, `./api-generator/typedoc.json`); - if (project) { let doc = {}; @@ -53,7 +52,6 @@ async function main() { }; const modules = project.groups.find((g) => g.title === 'Modules'); - if (isProcessable(modules)) { modules.children.forEach((module) => { const name = module.name.replace(/.*\//, ''); @@ -383,6 +381,8 @@ async function main() { doc[name]['types'] = types; } + + // if(isProcessable(module_theming_group)) {} } } }); diff --git a/api-generator/build-theming.ts b/api-generator/build-theming.ts new file mode 100644 index 00000000000..2065162b1a9 --- /dev/null +++ b/api-generator/build-theming.ts @@ -0,0 +1,92 @@ +//@ts-ignore +const TypeDoc = require('typedoc'); +//@ts-ignore +const path = require('path'); +//@ts-ignore +const fs = require('fs'); +//@ts-ignore +const rootDir = path.resolve(__dirname, '../'); +//@ts-ignore +const outputPath = path.resolve(rootDir, 'src/app/showcase/doc/apidoc'); + +// const staticMessages = { +// methods: "Defines methods that can be accessed by the component's reference.", +// emits: 'Defines emit that determine the behavior of the component based on a given condition or report the actions that the component takes.', +// templates: 'Defines the templates used by the component.', +// events: "Defines the custom events used by the component's emitters.", +// interfaces: 'Defines the custom interfaces used by the module.', +// types: 'Defines the custom types used by the module.', +// props: 'Defines the input properties of the component.', +// service: 'Defines the service used by the component', +// }; + +async function theming() { + const app = await TypeDoc.Application.bootstrapWithPlugins({ + // typedoc options here + name: 'PrimeNG', + entryPoints: [`src/app/components/themes/types/accordion/`, `src/app/components/themes/types/panel/`], + entryPointStrategy: 'expand', + hideGenerator: true, + excludeExternals: true, + includeVersion: true, + searchInComments: true, + disableSources: false, + logLevel: 'Error', + sort: ['source-order'], + exclude: ['node_modules', 'src/app/components/**/*spec.ts', 'src/app/components/**/*public_api.ts'], + }); + + const project = await app.convert(); + await app.generateJson(project, `./api-generator/themedoc.json`); + // console.log(project); + if (project) { + let doc = {}; + + const parseText = (text) => { + return text.replace(/{/g, '{').replace(/}/g, '}'); + }; + + const getDeprecatedText = (signature) => { + const deprecatedTag = signature?.comment?.getTag('@deprecated'); + return deprecatedTag ? parseText(deprecatedTag.content[0].text) : undefined; + }; + + const isProcessable = (value) => { + return value && value.children && value.children.length; + }; + + const allowed = (name) => { + return !name.includes('ts-helpers') && !name.includes('icons'); + }; + + const modules = project.groups.find((g) => g.title === 'Modules'); + modules.children.forEach((child) => { + const _name = child.name.split('/').pop(); + doc[_name] = { + name: _name, + properties: {}, + }; + + child.groups.forEach((group) => { + // console.log(group.children); + }); + }); + + let mergedDocs = {}; + + for (const key in doc) { + if (!mergedDocs[key]) { + mergedDocs[key] = { + ...doc[key], + }; + } + } + + const typedocJSON = JSON.stringify(mergedDocs, null, 4); + + !fs.existsSync(outputPath) && fs.mkdirSync(outputPath); + fs.writeFileSync(path.resolve(outputPath, 'index.json'), typedocJSON); + } +} + +theming().catch(console.error); From 53d3ff6f404d1edf5c7f82277907d41367a52539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:04:45 +0300 Subject: [PATCH 03/49] rebase v18 --- api-generator/themedoc.json | 148478 +-------------- package.json | 9 +- src/app/components/table/style/tablestyle.ts | 1 + .../layout/topbar/app.topbar.component.html | 16 +- .../pages/landing/herosection.component.ts | 8 +- .../showcase/styles/layout/_templates.scss | 6 +- .../layout/variables/landing/_dark.scss | 24 +- .../layout/variables/landing/_light.scss | 22 +- 8 files changed, 984 insertions(+), 147580 deletions(-) diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json index 7860206a168..753d2c18b95 100644 --- a/api-generator/themedoc.json +++ b/api-generator/themedoc.json @@ -48,7 +48,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" } ], "type": { @@ -92,7 +92,7 @@ "fileName": "accordion/index.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L23" } ], "type": { @@ -114,7 +114,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" } ] } @@ -141,7 +141,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "accordion/index.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L34" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "accordion/index.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L40" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" } ] } @@ -275,7 +275,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" } ], "type": { @@ -319,7 +319,7 @@ "fileName": "accordion/index.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L51" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "accordion/index.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L57" } ], "type": { @@ -399,7 +399,7 @@ "fileName": "accordion/index.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L63" } ], "type": { @@ -439,7 +439,7 @@ "fileName": "accordion/index.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L69" } ], "type": { @@ -479,7 +479,7 @@ "fileName": "accordion/index.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L75" } ], "type": { @@ -519,7 +519,7 @@ "fileName": "accordion/index.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L81" } ], "type": { @@ -559,7 +559,7 @@ "fileName": "accordion/index.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L87" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "accordion/index.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L93" } ], "type": { @@ -639,7 +639,7 @@ "fileName": "accordion/index.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L99" } ], "type": { @@ -679,7 +679,7 @@ "fileName": "accordion/index.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L105" } ], "type": { @@ -719,7 +719,7 @@ "fileName": "accordion/index.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L111" } ], "type": { @@ -759,7 +759,7 @@ "fileName": "accordion/index.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L117" } ], "type": { @@ -788,7 +788,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "accordion/index.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L127" } ], "type": { @@ -872,7 +872,7 @@ "fileName": "accordion/index.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L133" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "accordion/index.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L139" } ], "type": { @@ -952,7 +952,7 @@ "fileName": "accordion/index.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L145" } ], "type": { @@ -992,7 +992,7 @@ "fileName": "accordion/index.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L151" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" } ] } @@ -1045,7 +1045,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" } ], "type": { @@ -1089,7 +1089,7 @@ "fileName": "accordion/index.ts", "line": 162, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L162" } ], "type": { @@ -1129,7 +1129,7 @@ "fileName": "accordion/index.ts", "line": 168, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L168" } ], "type": { @@ -1169,7 +1169,7 @@ "fileName": "accordion/index.ts", "line": 174, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L174" } ], "type": { @@ -1209,7 +1209,7 @@ "fileName": "accordion/index.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L180" } ], "type": { @@ -1234,7 +1234,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" } ] } @@ -1261,7 +1261,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" } ], "type": { @@ -1305,7 +1305,7 @@ "fileName": "accordion/index.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L191" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "accordion/index.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L197" } ], "type": { @@ -1368,7 +1368,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" } ] } @@ -1395,7 +1395,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" } ], "type": { @@ -1439,7 +1439,7 @@ "fileName": "accordion/index.ts", "line": 208, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L208" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L208" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "accordion/index.ts", "line": 214, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L214" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" } ] } @@ -1537,7 +1537,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" } ] } @@ -1564,7 +1564,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "accordion/index.ts", "line": 226, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L226" } ], "type": { @@ -1648,7 +1648,7 @@ "fileName": "accordion/index.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L232" } ], "type": { @@ -1688,7 +1688,7 @@ "fileName": "accordion/index.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L238" } ], "type": { @@ -1728,7 +1728,7 @@ "fileName": "accordion/index.ts", "line": 244, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L244" } ], "type": { @@ -1768,7 +1768,7 @@ "fileName": "accordion/index.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L250" } ], "type": { @@ -1794,7 +1794,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" } ] } @@ -1813,7 +1813,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -1838,7 +1838,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -1876,7 +1876,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -1916,14 +1916,14 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1605, + "target": -1, "name": "ColorSchemeDesignToken.colorScheme" } } @@ -1945,13 +1945,16 @@ "fileName": "accordion/index.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L13" } ], "extendedTypes": [ { "type": "reference", - "target": 1604, + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, "typeArguments": [ { "type": "reference", @@ -1979,13 +1982,13 @@ "fileName": "accordion/index.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L1" } ] }, { "id": 56, - "name": "themes/autocomplete", + "name": "themes/panel", "variant": "declaration", "kind": 2, "flags": {}, @@ -1993,19 +1996,146 @@ "summary": [ { "kind": "text", - "text": "AutoComplete Design Tokens\n\n[Live Demo](https://www.primeng.org/autocomplete/)" + "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" } ] }, "children": [ { "id": 57, - "name": "AutoCompleteDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { + "name": "PanelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 84, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 85, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 86, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 87, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 86, + 87 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { "id": 58, "name": "root", "variant": "declaration", @@ -2023,10 +2153,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" } ], "type": { @@ -2059,7 +2189,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.background" + "text": "panel.background" } ] } @@ -2067,10 +2197,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L23" } ], "type": { @@ -2080,7 +2210,7 @@ }, { "id": 61, - "name": "disabledBackground", + "name": "borderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2090,7 +2220,7 @@ "summary": [ { "kind": "text", - "text": "Disabled background of root" + "text": "Border color of root" } ], "blockTags": [ @@ -2099,7 +2229,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.disabled.background" + "text": "panel.border.color" } ] } @@ -2107,10 +2237,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L29" } ], "type": { @@ -2120,7 +2250,7 @@ }, { "id": 62, - "name": "filledBackground", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2130,7 +2260,7 @@ "summary": [ { "kind": "text", - "text": "Filled background of root" + "text": "Color of root" } ], "blockTags": [ @@ -2139,7 +2269,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.filled.background" + "text": "panel.color" } ] } @@ -2147,10 +2277,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L35" } ], "type": { @@ -2160,7 +2290,7 @@ }, { "id": 63, - "name": "filledFocusBackground", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2170,7 +2300,7 @@ "summary": [ { "kind": "text", - "text": "Filled focus background of root" + "text": "Border radius of root" } ], "blockTags": [ @@ -2179,7 +2309,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.filled.focus.background" + "text": "panel.border.radius" } ] } @@ -2187,100 +2317,76 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 64, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 65, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 60, + 61, + 62, + 63 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 64, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 65, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { "id": 66, - "name": "focusBorderColor", + "name": "background", "variant": "declaration", "kind": 1024, "flags": { @@ -2290,7 +2396,7 @@ "summary": [ { "kind": "text", - "text": "Focus border color of root" + "text": "Background of header" } ], "blockTags": [ @@ -2299,7 +2405,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.focus.border.color" + "text": "panel.header.background" } ] } @@ -2307,10 +2413,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 59, + "fileName": "panel/index.d.ts", + "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L52" } ], "type": { @@ -2320,7 +2426,7 @@ }, { "id": 67, - "name": "invalidBorderColor", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2330,7 +2436,7 @@ "summary": [ { "kind": "text", - "text": "Invalid border color of root" + "text": "Color of header" } ], "blockTags": [ @@ -2339,7 +2445,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.invalid.border.color" + "text": "panel.header.color" } ] } @@ -2347,10 +2453,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 65, + "fileName": "panel/index.d.ts", + "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L58" } ], "type": { @@ -2360,7 +2466,7 @@ }, { "id": 68, - "name": "color", + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2370,7 +2476,7 @@ "summary": [ { "kind": "text", - "text": "Color of root" + "text": "Padding of header" } ], "blockTags": [ @@ -2379,7 +2485,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.color" + "text": "panel.header.padding" } ] } @@ -2387,10 +2493,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 71, + "fileName": "panel/index.d.ts", + "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L64" } ], "type": { @@ -2400,7 +2506,7 @@ }, { "id": 69, - "name": "disabledColor", + "name": "borderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2410,7 +2516,7 @@ "summary": [ { "kind": "text", - "text": "Disabled color of root" + "text": "Border color of header" } ], "blockTags": [ @@ -2419,7 +2525,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.disabled.color" + "text": "panel.header.border.color" } ] } @@ -2427,10 +2533,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 77, + "fileName": "panel/index.d.ts", + "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L70" } ], "type": { @@ -2440,7 +2546,7 @@ }, { "id": 70, - "name": "placeholderColor", + "name": "borderWidth", "variant": "declaration", "kind": 1024, "flags": { @@ -2450,7 +2556,7 @@ "summary": [ { "kind": "text", - "text": "Placeholder color of root" + "text": "Border width of header" } ], "blockTags": [ @@ -2459,7 +2565,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.placeholder.color" + "text": "panel.header.border.width" } ] } @@ -2467,10 +2573,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 83, + "fileName": "panel/index.d.ts", + "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L76" } ], "type": { @@ -2480,87 +2586,7 @@ }, { "id": 71, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 72, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 73, - "name": "paddingY", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2570,7 +2596,7 @@ "summary": [ { "kind": "text", - "text": "Padding y of root" + "text": "Border radius of header" } ], "blockTags": [ @@ -2579,7 +2605,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.padding.y" + "text": "panel.header.border.radius" } ] } @@ -2587,20 +2613,78 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 101, + "fileName": "panel/index.d.ts", + "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L82" } ], "type": { "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 66, + 67, + 68, + 69, + 70, + 71 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 72, + "name": "toggleableHeader", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toggleable header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 73, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { "id": 74, - "name": "borderRadius", + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2610,7 +2694,7 @@ "summary": [ { "kind": "text", - "text": "Border radius of root" + "text": "Padding of toggleable header" } ], "blockTags": [ @@ -2619,7 +2703,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.border.radius" + "text": "panel.toggleable.header.padding" } ] } @@ -2627,277 +2711,259 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 75, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 76, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 77, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 78, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 79, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 80, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 81, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 77, - 78, - 79, - 80, - 81 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 82, - "name": "transitionDuration", + "fileName": "panel/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 74 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ] + } + } + }, + { + "id": 75, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 76, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 77, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 77 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 78, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 79, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 80, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 80 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ] + } + } + }, + { + "id": 81, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 82, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 83, + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2907,7 +2973,7 @@ "summary": [ { "kind": "text", - "text": "Transition duration of root" + "text": "Padding of footer" } ], "blockTags": [ @@ -2916,7 +2982,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.transition.duration" + "text": "panel.footer.padding" } ] } @@ -2924,10 +2990,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 148, + "fileName": "panel/index.d.ts", + "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L126" } ], "type": { @@ -2940,147110 +3006,448 @@ { "title": "Properties", "children": [ - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 82 + 83 ] } ], "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "fileName": "panel/index.d.ts", + "line": 120, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" } ] } } - }, + } + ], + "groups": [ { - "id": 83, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ + "title": "Properties", + "children": [ + 84, + 58, + 64, + 72, + 75, + 78, + 81 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, + "typeArguments": [ { - "fileName": "autocomplete/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" } ], - "type": { - "type": "reflection", - "declaration": { - "id": 84, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 85, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 86, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 87, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 88, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 89, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 85, - 86, - 87, - 88, - 89 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 153, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 90, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 188, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L188" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 91, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 92, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 93, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 92, - 93 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 188, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L188" - } - ] - } - } - }, - { - "id": 94, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 95, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 96, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 97, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 98, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 99, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 100, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 101, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 241, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L241" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 102, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 247, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L247" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 103, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 253, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L253" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 104, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 259, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L259" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 205, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 105, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 264, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L264" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 106, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 107, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 270, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L270" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 108, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 276, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L276" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 109, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 282, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L282" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 110, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 288, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L288" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 107, - 108, - 109, - 110 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 264, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L264" - } - ] - } - } - }, - { - "id": 111, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 293, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L293" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 112, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 113, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 299, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L299" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 114, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 305, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L305" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 115, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 311, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L311" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 116, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 317, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L317" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 117, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 323, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L323" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 118, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of dropdown" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 119, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 120, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 333, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 121, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 339, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L339" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 122, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 345, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L345" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 123, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L351" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 124, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 357, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 120, - 121, - 122, - 123, - 124 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 327, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 125, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 364, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 126, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 370, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 127, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 376, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 128, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 382, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L382" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 129, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 388, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L388" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 130, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 394, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L394" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 113, - 114, - 115, - 116, - 117, - 118, - 125, - 126, - 127, - 128, - 129, - 130 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 293, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L293" - } - ] - } - } - }, - { - "id": 131, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 399, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L399" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 132, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 133, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 405, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L405" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 133 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 399, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L399" - } - ] - } - } - }, - { - "id": 134, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 410, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L410" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 135, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 136, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 416, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L416" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 136 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 410, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L410" - } - ] - } - } - }, - { - "id": 137, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 138, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 139, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 140, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 139, - 140 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 58, - 83, - 90, - 94, - 105, - 111, - 131, - 134, - 137 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 57 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L1" - } - ] - }, - { - "id": 141, - "name": "themes/avatar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Avatar Design Tokens\n\n[Live Demo](https://www.primeng.org/avatar/)" - } - ] - }, - "children": [ - { - "id": 142, - "name": "AvatarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 143, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 144, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 145, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 146, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 147, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 148, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 149, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 145, - 146, - 147, - 148, - 149 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 150, - "name": "group", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the group section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 152, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.group.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 153, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Offset of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.group.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 152, - 153 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 52, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 154, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the lg section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 156, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 157, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 158, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 156, - 157, - 158 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 69, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 159, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the xl section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 160, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 161, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 162, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 163, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 161, - 162, - 163 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 92, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 164, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 165, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 166, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 167, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 166, - 167 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 143, - 150, - 154, - 159, - 164 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 142 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L1" - } - ] - }, - { - "id": 168, - "name": "themes/badge", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Badge Design Tokens\n\n[Live Demo](https://www.primeng.org/badge/)" - } - ] - }, - "children": [ - { - "id": 169, - "name": "BadgeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 170, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 172, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 173, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 174, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 175, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 176, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 177, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 172, - 173, - 174, - 175, - 176, - 177 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 178, - "name": "dot", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dot section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 179, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 180, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of dot" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.dot.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 180 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 58, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 181, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sm section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 182, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 183, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 184, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 185, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 183, - 184, - 185 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 69, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 186, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the lg section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 187, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 188, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 189, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 190, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 188, - 189, - 190 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 92, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 191, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the xl section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 115, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 192, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 193, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 194, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 195, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 193, - 194, - 195 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 115, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L115" - } - ] - } - } - }, - { - "id": 196, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the primary section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 138, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L138" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 197, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 198, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 199, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 198, - 199 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 138, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L138" - } - ] - } - } - }, - { - "id": 200, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 201, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 202, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 203, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 202, - 203 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 155, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 204, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 172, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 205, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 206, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 178, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 207, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 206, - 207 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 172, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L172" - } - ] - } - } - }, - { - "id": 208, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 189, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L189" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 209, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 210, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 211, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 201, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 210, - 211 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 189, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L189" - } - ] - } - } - }, - { - "id": 212, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 206, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L206" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 213, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 214, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 212, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 215, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 218, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L218" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 214, - 215 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 206, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L206" - } - ] - } - } - }, - { - "id": 216, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the danger section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 223, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L223" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 217, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 218, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 219, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 218, - 219 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 223, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L223" - } - ] - } - } - }, - { - "id": 220, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 240, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L240" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 221, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 222, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 246, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L246" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 223, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 252, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L252" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 222, - 223 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 240, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L240" - } - ] - } - } - }, - { - "id": 224, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 225, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 226, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 227, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 226, - 227 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 170, - 178, - 181, - 186, - 191, - 196, - 200, - 204, - 208, - 212, - 216, - 220, - 224 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 169 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L1" - } - ] - }, - { - "id": 228, - "name": "themes/blockui", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "BlockUI Design Tokens\n\n[Live Demo](https://www.primeng.org/blockui/)" - } - ] - }, - "children": [ - { - "id": 229, - "name": "BlockUIDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 230, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 231, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 232, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "blockui.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 232 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 233, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 234, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 235, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 236, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 235, - 236 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 230, - 233 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 229 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L1" - } - ] - }, - { - "id": 237, - "name": "themes/breadcrumb", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Breadcrumb Design Tokens\n\n[Live Demo](https://www.primeng.org/breadcrumb/)" - } - ] - }, - "children": [ - { - "id": 238, - "name": "BreadcrumbDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 239, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 240, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 241, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 242, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 243, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 244, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 241, - 242, - 243, - 244 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 245, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 246, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 247, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 248, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 249, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 250, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 251, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 252, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 253, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 254, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 253, - 254 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 74, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 255, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 256, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 257, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 258, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 259, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 260, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 115, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 261, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 257, - 258, - 259, - 260, - 261 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 91, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 247, - 248, - 249, - 250, - 251, - 255 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 262, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 127, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 264, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.separator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 264 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 127, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" - } - ] - } - } - }, - { - "id": 265, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 266, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 267, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 268, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 267, - 268 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 239, - 245, - 262, - 265 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 238 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L1" - } - ] - }, - { - "id": 269, - "name": "themes/button", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Button Design Tokens\n\n[Live Demo](https://www.primeng.org/button/)" - } - ] - }, - "children": [ - { - "id": 270, - "name": "ButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 271, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 272, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 273, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 274, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 275, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 276, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 277, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 278, - "name": "iconOnlyWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon only width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.icon.only.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 279, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 280, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 281, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 282, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 283, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 281, - 282, - 283 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 57, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 284, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 285, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 286, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 287, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 288, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 286, - 287, - 288 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 80, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 289, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Label of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 290, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 291, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Label font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 291 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 103, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 292, - "name": "raisedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Raised shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.raised.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 293, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 295, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 296, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 297, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 295, - 296, - 297 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 120, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 298, - "name": "badgeSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Badge size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.badge.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 299, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 300, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 301, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 302, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 303, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 304, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 305, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 179, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 306, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 185, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 307, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 191, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 308, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 197, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 309, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 203, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 310, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 209, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 311, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 213, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L213" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 312, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 313, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 219, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L219" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 314, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 225, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 313, - 314 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 213, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L213" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 155, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 315, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L231" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 316, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 317, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 237, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 318, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 243, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 319, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 249, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 320, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 255, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 321, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 261, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 322, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 267, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 323, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 273, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L273" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 324, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 279, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L279" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 325, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 285, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 326, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 289, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L289" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 327, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 328, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 295, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L295" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 329, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 301, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L301" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 328, - 329 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 289, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L289" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 231, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L231" - } - ] - } - } - }, - { - "id": 330, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 307, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L307" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 331, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 332, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 313, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L313" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 333, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 319, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L319" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 334, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 325, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 335, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 331, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 336, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 337, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 337, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 343, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 338, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 349, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 339, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 355, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L355" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 340, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 361, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 341, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 365, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L365" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 342, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 343, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 371, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L371" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 344, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 377, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 343, - 344 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 365, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L365" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 307, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L307" - } - ] - } - } - }, - { - "id": 345, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 383, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L383" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 346, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 347, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 389, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L389" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 348, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 395, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L395" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 349, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 401, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 350, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 407, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 351, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 413, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L413" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 352, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 419, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L419" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 353, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 425, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L425" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 354, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 431, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L431" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 355, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 437, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L437" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 356, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 441, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L441" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 357, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 358, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 447, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L447" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 359, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 453, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L453" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 358, - 359 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 441, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L441" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 383, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L383" - } - ] - } - } - }, - { - "id": 360, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 459, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L459" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 361, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 362, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L465" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 363, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 471, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L471" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 364, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 477, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 365, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 483, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L483" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 366, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 489, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L489" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 367, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 495, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L495" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 368, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 501, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L501" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 369, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 507, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L507" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 370, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 513, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 371, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 517, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L517" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 372, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 373, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 523, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L523" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 374, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 529, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L529" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 373, - 374 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 517, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L517" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 459, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L459" - } - ] - } - } - }, - { - "id": 375, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 535, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L535" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 376, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 377, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 541, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L541" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 378, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 547, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L547" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 379, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 553, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L553" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 380, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 559, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L559" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 381, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 565, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L565" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 382, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 571, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L571" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 383, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 577, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L577" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 384, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 583, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L583" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 385, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 589, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L589" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 386, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 593, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L593" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 387, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 388, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 599, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L599" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 389, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 605, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L605" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 388, - 389 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 593, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L593" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 535, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L535" - } - ] - } - } - }, - { - "id": 390, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 611, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L611" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 391, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 392, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 617, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L617" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 393, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 623, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L623" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 394, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 629, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L629" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 395, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 635, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L635" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 396, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 641, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L641" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 397, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 647, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L647" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 398, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 653, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L653" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 399, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 659, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L659" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 400, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 665, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L665" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 401, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 669, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L669" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 402, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 403, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 675, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L675" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 404, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 681, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L681" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 403, - 404 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 669, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L669" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 611, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L611" - } - ] - } - } - }, - { - "id": 405, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 687, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L687" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 406, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 407, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 693, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L693" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 408, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 699, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L699" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 409, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 705, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L705" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 410, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 711, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L711" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 411, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 717, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L717" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 412, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 723, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L723" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 413, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 729, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L729" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 414, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 735, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L735" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 415, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 741, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L741" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 416, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 745, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L745" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 417, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 418, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 751, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L751" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 419, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 757, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L757" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 418, - 419 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 745, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L745" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 687, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L687" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 284, - 289, - 292, - 293, - 298, - 299, - 300, - 315, - 330, - 345, - 360, - 375, - 390, - 405 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 420, - "name": "outlined", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the outlined section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 764, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L764" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 421, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 422, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 768, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L768" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 423, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 424, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 774, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L774" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 425, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 780, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L780" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 426, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 786, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L786" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 427, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 792, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L792" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 424, - 425, - 426, - 427 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 768, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L768" - } - ] - } - } - }, - { - "id": 428, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 797, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L797" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 429, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 430, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 803, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L803" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 431, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 809, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L809" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 432, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 815, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L815" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 433, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 821, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L821" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 430, - 431, - 432, - 433 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 797, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L797" - } - ] - } - } - }, - { - "id": 434, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 826, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L826" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 435, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 436, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 832, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L832" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 437, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 838, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L838" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 438, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 844, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L844" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 439, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 850, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L850" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 436, - 437, - 438, - 439 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 826, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L826" - } - ] - } - } - }, - { - "id": 440, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 855, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L855" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 442, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 861, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L861" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 443, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 867, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L867" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 444, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 873, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L873" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 879, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L879" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 442, - 443, - 444, - 445 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 855, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L855" - } - ] - } - } - }, - { - "id": 446, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 884, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L884" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 447, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 448, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 890, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L890" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 449, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 896, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L896" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 450, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 902, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L902" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 451, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 908, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L908" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 448, - 449, - 450, - 451 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 884, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L884" - } - ] - } - } - }, - { - "id": 452, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 913, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L913" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 453, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 454, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 919, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L919" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 455, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 925, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L925" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 456, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 931, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L931" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 457, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 937, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L937" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 454, - 455, - 456, - 457 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 913, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L913" - } - ] - } - } - }, - { - "id": 458, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 942, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L942" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 459, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 460, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 948, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L948" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 461, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 954, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L954" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 462, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 960, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L960" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 463, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 966, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L966" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 460, - 461, - 462, - 463 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 942, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L942" - } - ] - } - } - }, - { - "id": 464, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 971, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L971" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 465, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 466, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 977, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L977" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 467, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 983, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L983" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 468, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 989, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L989" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 469, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 995, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L995" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 466, - 467, - 468, - 469 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 971, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L971" - } - ] - } - } - }, - { - "id": 470, - "name": "plain", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1000, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1000" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 471, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 472, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1006, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1006" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 473, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1012, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1012" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 474, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1018, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1018" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 475, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1024, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1024" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 472, - 473, - 474, - 475 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1000, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1000" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 422, - 428, - 434, - 440, - 446, - 452, - 458, - 464, - 470 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 764, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L764" - } - ] - } - } - }, - { - "id": 476, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1030, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1030" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 477, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 478, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1034, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1034" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 479, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 480, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1040, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1040" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 481, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1046, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1046" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1052, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1052" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 480, - 481, - 482 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1034, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1034" - } - ] - } - } - }, - { - "id": 483, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1057, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1057" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 484, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 485, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1063, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1063" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 486, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1069, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1069" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 487, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1075, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1075" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 485, - 486, - 487 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1057, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1057" - } - ] - } - } - }, - { - "id": 488, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1080, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1080" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 489, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 490, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1086, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1086" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 491, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1092, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1092" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 492, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1098, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1098" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 490, - 491, - 492 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1080, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1080" - } - ] - } - } - }, - { - "id": 493, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 494, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 495, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 496, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1115, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 497, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 495, - 496, - 497 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1103, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1103" - } - ] - } - } - }, - { - "id": 498, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1126" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 499, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 500, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 501, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 502, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1144, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 500, - 501, - 502 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1126, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1126" - } - ] - } - } - }, - { - "id": 503, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 504, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 505, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 506, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 507, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 505, - 506, - 507 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1149, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1149" - } - ] - } - } - }, - { - "id": 508, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1172, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 509, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 510, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1178, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 511, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1184, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 512, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1190, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 510, - 511, - 512 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1172, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1172" - } - ] - } - } - }, - { - "id": 513, - "name": "plain", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1195" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 514, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 515, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1201, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 516, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1207, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 517, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1213, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1213" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 515, - 516, - 517 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1195, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1195" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 478, - 483, - 488, - 493, - 498, - 503, - 508, - 513 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1030, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1030" - } - ] - } - } - }, - { - "id": 518, - "name": "link", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the link section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1219, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1219" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 519, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 520, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1225, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 521, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 522, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1237, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 520, - 521, - 522 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1219, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1219" - } - ] - } - } - }, - { - "id": 523, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 525, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 526, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 525, - 526 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 271, - 420, - 476, - 518, - 523 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 270 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1" - } - ] - }, - { - "id": 527, - "name": "themes/card", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Card Design Tokens\n\n[Live Demo](https://www.primeng.org/card/)" - } - ] - }, - "children": [ - { - "id": 528, - "name": "CardDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 529, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 530, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 531, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 532, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 533, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 534, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 531, - 532, - 533, - 534 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 535, - "name": "body", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 536, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 537, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.body.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 538, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of body" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.body.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 537, - 538 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 539, - "name": "caption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the caption section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 541, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.caption.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 541 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 63, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 542, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 543, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 544, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 545, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 544, - 545 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 546, - "name": "subtitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the subtitle section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 547, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 548, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of subtitle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.subtitle.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 548 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 91, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 549, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 550, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 551, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 552, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 551, - 552 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 529, - 535, - 539, - 542, - 546, - 549 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 528 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L1" - } - ] - }, - { - "id": 553, - "name": "themes/carousel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Carousel Design Tokens\n\n[Live Demo](https://www.primeng.org/carousel/)" - } - ] - }, - "children": [ - { - "id": 554, - "name": "CarouselDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 555, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 556, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 557, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 557 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 558, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 559, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 560, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 560 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 561, - "name": "indicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L39" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 562, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 563, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 45, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 564, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 563, - 564 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 39, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L39" - } - ] - } - } - }, - { - "id": 565, - "name": "indicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 56, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L56" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 566, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 567, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 62, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 568, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 569, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 570, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of indicator" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L78" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 571, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 572, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 84, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 573, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 90, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 574, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 96, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 575, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 572, - 573, - 574, - 575, - 576 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 78, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L78" - } - ] - } - } - }, - { - "id": 577, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 578, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 579, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 567, - 568, - 569, - 570, - 577, - 578, - 579 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 56, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L56" - } - ] - } - } - }, - { - "id": 580, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 581, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 582, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 583, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 582, - 583 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 555, - 558, - 561, - 565, - 580 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 554 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L1" - } - ] - }, - { - "id": 584, - "name": "themes/cascadeselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "CascadeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/cascadeselect/)" - } - ] - }, - "children": [ - { - "id": 585, - "name": "CascadeSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 586, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 587, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 588, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 589, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 590, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 591, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 592, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 593, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 594, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 595, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 596, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 597, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 598, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 599, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 600, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 601, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 602, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 603, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 604, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 605, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 606, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 607, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 608, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 609, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 605, - 606, - 607, - 608, - 609 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 610, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 610 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 611, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 612, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 613, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 614, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 613, - 614 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 615, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 616, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 617, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 618, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 619, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 620, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 621, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 617, - 618, - 619, - 620, - 621 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 622, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 623, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 624, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 625, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 624, - 625 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 626, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 222, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 627, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 628, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 629, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 234, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L234" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 630, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 240, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L240" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 631, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 246, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L246" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 632, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 252, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L252" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 633, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 258, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L258" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 634, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 264, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L264" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 635, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 270, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L270" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 636, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 276, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L276" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 637, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of option" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 638, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 639, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 286, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L286" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 640, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 292, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L292" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 641, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 298, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 639, - 640, - 641 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 280, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 222, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" - } - ] - } - } - }, - { - "id": 642, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 643, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 644, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 645, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 644, - 645 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 586, - 611, - 615, - 622, - 626, - 642 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 585 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L1" - } - ] - }, - { - "id": 646, - "name": "themes/checkbox", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checkbox Design Tokens\n\n[Live Demo](https://www.primeng.org/checkbox/)" - } - ] - }, - "children": [ - { - "id": 647, - "name": "CheckboxDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 648, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 649, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 650, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 651, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 652, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 653, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 654, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 655, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 656, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 657, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 658, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 659, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 660, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 661, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 662, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 663, - "name": "checkedFocusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 664, - "name": "checkedDisabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 665, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 113, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 666, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 119, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L119" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 667, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L123" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 668, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 669, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 670, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 671, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 672, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 673, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 153, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L153" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 669, - 670, - 671, - 672, - 673 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 123, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L123" - } - ] - } - } - }, - { - "id": 674, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 674 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 675, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 676, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 677, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 678, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 679, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 680, - "name": "checkedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.checked.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 189, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 681, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 677, - 678, - 679, - 680, - 681 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 165, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L165" - } - ] - } - } - }, - { - "id": 682, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 683, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 684, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 685, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 684, - 685 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 648, - 675, - 682 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 647 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L1" - } - ] - }, - { - "id": 686, - "name": "themes/chip", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Chip Design Tokens\n\n[Live Demo](https://www.primeng.org/chip/)" - } - ] - }, - "children": [ - { - "id": 687, - "name": "ChipDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 688, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 689, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 690, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 691, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 692, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 693, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 694, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 695, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 696, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 690, - 691, - 692, - 693, - 694, - 695, - 696 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 697, - "name": "image", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the image section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 698, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 699, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of image" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.image.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 700, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of image" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.image.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 699, - 700 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 64, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 701, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 702, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 703, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 704, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 703, - 704 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 705, - "name": "removeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the remove icon section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 706, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 707, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 708, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of remove icon" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L108" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 709, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 710, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 711, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 712, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 713, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 714, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 710, - 711, - 712, - 713, - 714 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 108, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L108" - } - ] - } - } - }, - { - "id": 715, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 707, - 708, - 715 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 98, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 716, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 717, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 718, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 719, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 718, - 719 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 688, - 697, - 701, - 705, - 716 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 687 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L1" - } - ] - }, - { - "id": 720, - "name": "themes/colorpicker", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ColorPicker Design Tokens\n\n[Live Demo](https://www.primeng.org/colorpicker/)" - } - ] - }, - "children": [ - { - "id": 721, - "name": "ColorPickerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 722, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 723, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 724, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 724 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 725, - "name": "preview", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the preview section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 726, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 727, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 728, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 729, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 730, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of preview" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 50, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L50" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 731, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 732, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 56, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L56" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 733, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 62, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 734, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 68, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 735, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 736, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 732, - 733, - 734, - 735, - 736 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 50, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L50" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 727, - 728, - 729, - 730 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 737, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 738, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 739, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 740, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 741, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 742, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 739, - 740, - 741, - 742 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 743, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 115, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 744, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 745, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.handle.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 745 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 115, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L115" - } - ] - } - } - }, - { - "id": 746, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 747, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 748, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 749, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 748, - 749 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 722, - 725, - 737, - 743, - 746 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 721 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L1" - } - ] - }, - { - "id": 750, - "name": "themes/confirmdialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ConfirmDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmdialog/)" - } - ] - }, - "children": [ - { - "id": 751, - "name": "ConfirmDialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 752, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 753, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 754, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 755, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 754, - 755 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 756, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 757, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 758, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 758 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 34, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 759, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 760, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 761, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 762, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 761, - 762 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 752, - 756, - 759 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 751 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L1" - } - ] - }, - { - "id": 763, - "name": "themes/confirmpopup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ConfirmPopup Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmpopup/)" - } - ] - }, - "children": [ - { - "id": 764, - "name": "ConfirmPopupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 765, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 766, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 767, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 768, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 769, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 770, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 771, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 772, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 773, - "name": "arrowOffset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Arrow offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.arrow.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 767, - 768, - 769, - 770, - 771, - 772, - 773 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 774, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 775, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 776, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 777, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 776, - 777 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 64, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 778, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 780, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 781, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 780, - 781 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 782, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 784, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 785, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 784, - 785 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 98, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 786, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 787, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 788, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 789, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 788, - 789 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 765, - 774, - 778, - 782, - 786 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 764 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L1" - } - ] - }, - { - "id": 790, - "name": "themes/contextmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ContextMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/contextmenu/)" - } - ] - }, - "children": [ - { - "id": 791, - "name": "ContextMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 792, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 794, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 795, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 796, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 797, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 798, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 799, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 794, - 795, - 796, - 797, - 798, - 799 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 800, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 801, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 802, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 803, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 802, - 803 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 804, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 805, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 806, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 807, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 808, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 809, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 810, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 811, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 812, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 813, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 814, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 815, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 816, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 817, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 818, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 816, - 817, - 818 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 819, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 820, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 821, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 822, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 823, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 824, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 821, - 822, - 823, - 824 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 151, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 825, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 180, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 826, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 827, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 827 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 180, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L180" - } - ] - } - } - }, - { - "id": 828, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 829, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 830, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 831, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 830, - 831 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 792, - 800, - 804, - 819, - 825, - 828 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 791 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L1" - } - ] - }, - { - "id": 832, - "name": "themes/table", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DataTable Design Tokens\n\n[Live Demo](https://www.primeng.org/datatable/)" - } - ] - }, - "children": [ - { - "id": 833, - "name": "DataTableDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 834, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 835, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 836, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 837, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 836, - 837 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 838, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 839, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 840, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 841, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 842, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 843, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 844, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 840, - 841, - 842, - 843, - 844 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 845, - "name": "headerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 846, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 847, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 848, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 849, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 850, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 851, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 852, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 853, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 854, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 855, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 856, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of header cell" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 857, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 858, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 859, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 860, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 861, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 862, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 858, - 859, - 860, - 861, - 862 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 127, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 69, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 863, - "name": "columnTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column title section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 864, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 865, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 865 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 163, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L163" - } - ] - } - } - }, - { - "id": 866, - "name": "row", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 174, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L174" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 867, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 868, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 869, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 870, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 871, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 872, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 873, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 874, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 214, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L214" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 875, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 876, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 220, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L220" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 877, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 226, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L226" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 878, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 232, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 879, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 238, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 880, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 244, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L244" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 876, - 877, - 878, - 879, - 880 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 214, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L214" - } - ] - } - } - }, - { - "id": 881, - "name": "stripedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Striped background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.striped.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 881 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 174, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L174" - } - ] - } - } - }, - { - "id": 882, - "name": "bodyCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 256, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L256" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 883, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 884, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 885, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 886, - "name": "selectedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.selected.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 884, - 885, - 886 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 256, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L256" - } - ] - } - } - }, - { - "id": 887, - "name": "footerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 888, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 889, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 890, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 891, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 892, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 889, - 890, - 891, - 892 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 893, - "name": "columnFooter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column footer section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 308, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 894, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 895, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.footer.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 314, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 895 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 308, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L308" - } - ] - } - } - }, - { - "id": 896, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 319, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L319" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 897, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 898, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 899, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 900, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 901, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 902, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 898, - 899, - 900, - 901, - 902 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 319, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L319" - } - ] - } - } - }, - { - "id": 903, - "name": "dropPointColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the drop point color section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 354, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L354" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 904, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 905, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 906, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 366, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L366" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 907, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 372, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L372" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 908, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 378, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L378" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 909, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 384, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L384" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 910, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 390, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L390" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 911, - "name": "6", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "6 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.6" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 396, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L396" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 912, - "name": "7", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "7 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.7" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 402, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L402" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 913, - "name": "8", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "8 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.8" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 408, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L408" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 914, - "name": "9", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "9 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.9" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 414, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L414" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 915, - "name": "10", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "10 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.10" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 420, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L420" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 916, - "name": "11", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "11 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.11" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 426, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L426" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 917, - "name": "12", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "12 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.12" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 432, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L432" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 918, - "name": "13", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "13 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.13" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 438, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L438" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 919, - "name": "14", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "14 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.14" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 444, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L444" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 354, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L354" - } - ] - } - } - }, - { - "id": 920, - "name": "columnResizerWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column resizer width section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 449, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L449" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 921, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 922, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 455, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L455" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 923, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 461, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L461" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 924, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 467, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L467" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 925, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 473, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L473" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 926, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 479, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L479" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 927, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 485, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L485" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 922, - 923, - 924, - 925, - 926, - 927 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 449, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L449" - } - ] - } - } - }, - { - "id": 928, - "name": "resizeIndicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the resize indicator section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 490, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L490" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 929, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 930, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.resize.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 496, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L496" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 931, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.resize.indicator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 502, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L502" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 930, - 931 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 490, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L490" - } - ] - } - } - }, - { - "id": 932, - "name": "sortIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sort icon section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 507, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L507" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 933, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 934, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.sort.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 513, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 935, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.sort.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 519, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L519" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 934, - 935 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 507, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L507" - } - ] - } - } - }, - { - "id": 936, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 524, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L524" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 937, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 938, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 530, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L530" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 938 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 524, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L524" - } - ] - } - } - }, - { - "id": 939, - "name": "rowToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 535, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L535" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 940, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 941, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 541, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L541" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 942, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 547, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L547" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 943, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 553, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L553" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 944, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 559, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L559" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 945, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 565, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L565" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 946, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 571, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L571" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 947, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 577, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L577" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 948, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row toggle button" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 581, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L581" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 949, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 950, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 587, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L587" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 951, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 593, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L593" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 952, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 599, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L599" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 953, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 605, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L605" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 954, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 611, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L611" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 950, - 951, - 952, - 953, - 954 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 581, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L581" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 535, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L535" - } - ] - } - } - }, - { - "id": 955, - "name": "filter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the filter section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 617, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L617" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 956, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 957, - "name": "inlineGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inline gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.inline.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 623, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L623" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 958, - "name": "overlaySelect", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 627, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L627" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 959, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 960, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 633, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L633" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 961, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 639, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L639" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 962, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 645, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L645" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 963, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 651, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L651" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 964, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select shadow of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 657, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L657" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 960, - 961, - 962, - 963, - 964 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 627, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L627" - } - ] - } - } - }, - { - "id": 965, - "name": "overlayPopover", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 662, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L662" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 966, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 967, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 668, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L668" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 968, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 674, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L674" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 969, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 680, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L680" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 970, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 686, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L686" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 971, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover shadow of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 692, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L692" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 972, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 698, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L698" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 973, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 704, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L704" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 967, - 968, - 969, - 970, - 971, - 972, - 973 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 662, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L662" - } - ] - } - } - }, - { - "id": 974, - "name": "rule", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rule of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 709, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L709" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 975, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 976, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rule border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.rule.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 715, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L715" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 976 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 709, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L709" - } - ] - } - } - }, - { - "id": 977, - "name": "constraintList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 720, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L720" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 978, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 979, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 726, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L726" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 980, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 732, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L732" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 979, - 980 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 720, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L720" - } - ] - } - } - }, - { - "id": 981, - "name": "constraint", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 737, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L737" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 982, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 983, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint focus background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 743, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L743" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 984, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 749, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L749" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 985, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected focus background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 755, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L755" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 986, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 761, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L761" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 987, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint focus color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 767, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L767" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 988, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 773, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L773" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 989, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected focus color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 779, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L779" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 990, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint separator of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 783, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L783" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 991, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 992, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint separator border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 789, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L789" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 992 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 783, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L783" - } - ] - } - } - }, - { - "id": 993, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 796, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L796" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 994, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 802, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L802" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 993, - 994 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 737, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L737" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 957, - 958, - 965, - 974, - 977, - 981 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 617, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L617" - } - ] - } - } - }, - { - "id": 995, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 808, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L808" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 996, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 997, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 814, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L814" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 998, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 820, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L820" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 997, - 998 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 808, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L808" - } - ] - } - } - }, - { - "id": 999, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 825, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L825" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1000, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1001, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 831, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L831" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1002, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 837, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L837" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1001, - 1002 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 825, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L825" - } - ] - } - } - }, - { - "id": 1003, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1004, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1005, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1006, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1005, - 1006 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 834, - 838, - 845, - 863, - 866, - 882, - 887, - 893, - 896, - 903, - 920, - 928, - 932, - 936, - 939, - 955, - 995, - 999, - 1003 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 833 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L1" - } - ] - }, - { - "id": 1007, - "name": "themes/dataview", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DataView Design Tokens\n\n[Live Demo](https://www.primeng.org/dataview/)" - } - ] - }, - "children": [ - { - "id": 1008, - "name": "DataViewDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1009, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1010, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1011, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1012, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1013, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1014, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1011, - 1012, - 1013, - 1014 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1015, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1016, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1017, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1018, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1019, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1020, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1021, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1022, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1017, - 1018, - 1019, - 1020, - 1021, - 1022 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1023, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1024, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1025, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1026, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1027, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1028, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1029, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1030, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1025, - 1026, - 1027, - 1028, - 1029, - 1030 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 87, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 1031, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 128, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L128" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1032, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1033, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 134, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1034, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 140, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1035, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 146, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1036, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1037, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1038, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1033, - 1034, - 1035, - 1036, - 1037, - 1038 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 128, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L128" - } - ] - } - } - }, - { - "id": 1039, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 169, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L169" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1040, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1041, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1042, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1041, - 1042 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 169, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L169" - } - ] - } - } - }, - { - "id": 1043, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 186, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L186" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1044, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1045, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1046, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1045, - 1046 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 186, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L186" - } - ] - } - } - }, - { - "id": 1047, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1048, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1049, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1050, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1049, - 1050 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1009, - 1015, - 1023, - 1031, - 1039, - 1043, - 1047 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1008 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L1" - } - ] - }, - { - "id": 1051, - "name": "themes/datepicker", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DatePicker Design Tokens\n\n[Live Demo](https://www.primeng.org/datepicker/)" - } - ] - }, - "children": [ - { - "id": 1052, - "name": "DatePickerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1053, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1054, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1055, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1055 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1056, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1057, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1058, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1059, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1060, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1061, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1062, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1063, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1058, - 1059, - 1060, - 1061, - 1062, - 1063 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 28, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1064, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1065, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1066, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1067, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1068, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1069, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1070, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1071, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1066, - 1067, - 1068, - 1069, - 1070, - 1071 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 69, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1072, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 110, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L110" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1073, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1074, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.title.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1075, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1074, - 1075 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 110, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L110" - } - ] - } - } - }, - { - "id": 1076, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 127, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1077, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1078, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1079, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1080, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1081, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1082, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1083, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of dropdown" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L161" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1084, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1085, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1086, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1087, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 179, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1088, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 185, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1089, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 191, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1085, - 1086, - 1087, - 1088, - 1089 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 161, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L161" - } - ] - } - } - }, - { - "id": 1090, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1091, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1092, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1093, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1094, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1095, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L127" - } - ] - } - } - }, - { - "id": 1096, - "name": "inputIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the input icon section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1097, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1098, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of input icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.input.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1098 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 1099, - "name": "selectMonth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the select month section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 244, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L244" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1100, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1101, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 250, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L250" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1102, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1103, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1104, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1105, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1101, - 1102, - 1103, - 1104, - 1105 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 244, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L244" - } - ] - } - } - }, - { - "id": 1106, - "name": "selectYear", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the select year section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1107, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1108, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1109, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1110, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1111, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1112, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 309, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L309" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1108, - 1109, - 1110, - 1111, - 1112 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 1113, - "name": "group", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the group section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 314, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L314" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1114, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1115, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.group.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 320, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L320" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1116, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.group.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 326, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L326" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1115, - 1116 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 314, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L314" - } - ] - } - } - }, - { - "id": 1117, - "name": "dayView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the day view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 331, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L331" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1118, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1119, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of day view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.day.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1119 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 331, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L331" - } - ] - } - } - }, - { - "id": 1120, - "name": "weekDay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the week day section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 342, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L342" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1121, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1122, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 348, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L348" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1123, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 354, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L354" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1124, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1122, - 1123, - 1124 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 342, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L342" - } - ] - } - } - }, - { - "id": 1125, - "name": "date", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the date section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 365, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L365" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1126, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1127, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 371, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L371" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1128, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 377, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1129, - "name": "rangeSelectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Range selected background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.range.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 383, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L383" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1130, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 389, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L389" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1131, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 395, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L395" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1132, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 401, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1133, - "name": "rangeSelectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Range selected color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.range.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 407, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1134, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 413, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L413" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1135, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 419, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L419" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1136, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 425, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L425" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1137, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 431, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L431" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1138, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of date" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 435, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L435" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1139, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1140, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 441, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L441" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1141, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 447, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L447" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1142, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 453, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L453" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1143, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 459, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L459" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1144, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L465" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1140, - 1141, - 1142, - 1143, - 1144 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 435, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L435" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 365, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L365" - } - ] - } - } - }, - { - "id": 1145, - "name": "monthView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the month view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 471, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L471" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1146, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1147, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of month view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.month.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 477, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1147 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 471, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L471" - } - ] - } - } - }, - { - "id": 1148, - "name": "month", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the month section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 482, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L482" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1149, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1150, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.month.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 488, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L488" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1150 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 482, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L482" - } - ] - } - } - }, - { - "id": 1151, - "name": "yearView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the year view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 493, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L493" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1152, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1153, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of year view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.year.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 499, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L499" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1153 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 493, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L493" - } - ] - } - } - }, - { - "id": 1154, - "name": "year", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the year section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 504, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L504" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1156, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.year.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 510, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L510" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1156 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 504, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L504" - } - ] - } - } - }, - { - "id": 1157, - "name": "buttonbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the buttonbar section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 515, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L515" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1158, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1159, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of buttonbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.buttonbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 521, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L521" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1160, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of buttonbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.buttonbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 527, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L527" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1159, - 1160 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 515, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L515" - } - ] - } - } - }, - { - "id": 1161, - "name": "timePicker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the time picker section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 532, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L532" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1162, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1163, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 538, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L538" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1164, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 544, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L544" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1165, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 550, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L550" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1166, - "name": "buttonGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Button gap of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.button.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 556, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L556" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1163, - 1164, - 1165, - 1166 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 532, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L532" - } - ] - } - } - }, - { - "id": 1167, - "name": "today", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the today section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 561, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L561" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1168, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1169, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of today" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.today.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 567, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L567" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1170, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of today" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.today.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 573, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L573" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1169, - 1170 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 561, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L561" - } - ] - } - } - }, - { - "id": 1171, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1172, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1173, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1174, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1173, - 1174 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1053, - 1056, - 1064, - 1072, - 1076, - 1096, - 1099, - 1106, - 1113, - 1117, - 1120, - 1125, - 1145, - 1148, - 1151, - 1154, - 1157, - 1161, - 1167, - 1171 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1052 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L1" - } - ] - }, - { - "id": 1175, - "name": "themes/dialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Dialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dialog/)" - } - ] - }, - "children": [ - { - "id": 1176, - "name": "DialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1177, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1178, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1179, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1180, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1181, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1182, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1183, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1179, - 1180, - 1181, - 1182, - 1183 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1184, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1185, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1186, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1187, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1186, - 1187 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1188, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1189, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1190, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1191, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1190, - 1191 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1192, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1194, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1194 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 86, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1195, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1196, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1197, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1198, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1197, - 1198 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 97, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1199, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1200, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1201, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1202, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1201, - 1202 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1177, - 1184, - 1188, - 1192, - 1195, - 1199 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1176 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L1" - } - ] - }, - { - "id": 1203, - "name": "themes/divider", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Divider Design Tokens\n\n[Live Demo](https://www.primeng.org/divider/)" - } - ] - }, - "children": [ - { - "id": 1204, - "name": "DividerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1205, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1206, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1207, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1207 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1208, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1209, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1210, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1211, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1210, - 1211 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1212, - "name": "horizontal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the horizontal section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L45" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1213, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1214, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1215, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1216, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of horizontal" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 61, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L61" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1217, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1218, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 67, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1218 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 61, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L61" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1214, - 1215, - 1216 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 45, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L45" - } - ] - } - } - }, - { - "id": 1219, - "name": "vertical", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the vertical section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L73" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1220, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1221, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1222, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 85, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L85" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1223, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of vertical" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L89" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1224, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1225, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 95, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1225 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 89, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L89" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1221, - 1222, - 1223 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 73, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L73" - } - ] - } - } - }, - { - "id": 1226, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1227, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1228, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1229, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1228, - 1229 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1205, - 1208, - 1212, - 1219, - 1226 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1204 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L1" - } - ] - }, - { - "id": 1230, - "name": "themes/dock", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Dock Design Tokens\n\n[Live Demo](https://www.primeng.org/dock/)" - } - ] - }, - "children": [ - { - "id": 1231, - "name": "DockDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1232, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1233, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1234, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1235, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1236, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1237, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1234, - 1235, - 1236, - 1237 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1238, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1239, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1240, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1241, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1242, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1243, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L68" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1244, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1245, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1246, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1247, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1248, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1249, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1245, - 1246, - 1247, - 1248, - 1249 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 68, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L68" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1240, - 1241, - 1242, - 1243 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1250, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1251, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1252, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1253, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1252, - 1253 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1232, - 1238, - 1250 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1231 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L1" - } - ] - }, - { - "id": 1254, - "name": "themes/drawer", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Drawer Design Tokens\n\n[Live Demo](https://www.primeng.org/drawer/)" - } - ] - }, - "children": [ - { - "id": 1255, - "name": "DrawerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1256, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1257, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1258, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1259, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1260, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1261, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1262, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1258, - 1259, - 1260, - 1261, - 1262 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1263, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1264, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1265, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1265 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1266, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1267, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1268, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1269, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1268, - 1269 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1270, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 80, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1271, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1272, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1272 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 80, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 1273, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1274, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1275, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1276, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1275, - 1276 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1256, - 1263, - 1266, - 1270, - 1273 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1255 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L1" - } - ] - }, - { - "id": 1277, - "name": "themes/dynamicdialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DynamicDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dynamicdialog/)" - } - ] - }, - "children": [ - { - "id": 1278, - "name": "DynamicDialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1279, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1280, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1281, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1282, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1283, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1284, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1285, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1281, - 1282, - 1283, - 1284, - 1285 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1286, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1287, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1288, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1289, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1288, - 1289 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1290, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1291, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1292, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1293, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1292, - 1293 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1294, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1295, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1296, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1296 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 86, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1297, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1298, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1299, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1300, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1299, - 1300 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 97, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1301, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1302, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1303, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1304, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1303, - 1304 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1279, - 1286, - 1290, - 1294, - 1297, - 1301 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1278 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" - } - ] - }, - { - "id": 1305, - "name": "themes/editor", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Editor Design Tokens\n\n[Live Demo](https://www.primeng.org/editor/)" - } - ] - }, - "children": [ - { - "id": 1306, - "name": "EditorDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1307, - "name": "toolbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1308, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1309, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1310, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1311, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1309, - 1310, - 1311 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 17, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1312, - "name": "toolbarItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar item section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1313, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1314, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1315, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1316, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1314, - 1315, - 1316 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 40, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 1317, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1318, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1319, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1320, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1321, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1322, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1323, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1324, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1319, - 1320, - 1321, - 1322, - 1323, - 1324 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 63, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1325, - "name": "overlayOption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay option section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 104, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L104" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1326, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1327, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1328, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1329, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1330, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 128, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1331, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 134, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1327, - 1328, - 1329, - 1330, - 1331 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 104, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L104" - } - ] - } - } - }, - { - "id": 1332, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 139, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1333, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1334, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1335, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1336, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1337, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1334, - 1335, - 1336, - 1337 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 139, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L139" - } - ] - } - } - }, - { - "id": 1338, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1339, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1340, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1341, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1340, - 1341 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1307, - 1312, - 1317, - 1325, - 1332, - 1338 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1306 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L1" - } - ] - }, - { - "id": 1342, - "name": "themes/fieldset", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Fieldset Design Tokens\n\n[Live Demo](https://www.primeng.org/fieldset/)" - } - ] - }, - "children": [ - { - "id": 1343, - "name": "FieldsetDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1344, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1345, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1346, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1347, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1348, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1349, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1350, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1351, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1346, - 1347, - 1348, - 1349, - 1350, - 1351 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1352, - "name": "legend", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the legend section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1353, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1354, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1355, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1356, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1357, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1358, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1359, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1360, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1361, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1362, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1363, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1364, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of legend" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L122" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1365, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1366, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1367, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1368, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 140, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1369, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 146, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1370, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 152, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1366, - 1367, - 1368, - 1369, - 1370 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 122, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L122" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 58, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 1371, - "name": "toggleIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggle icon section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 158, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L158" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1372, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1373, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of toggle icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.toggle.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1374, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of toggle icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.toggle.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 170, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L170" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1373, - 1374 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 158, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L158" - } - ] - } - } - }, - { - "id": 1375, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1376, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1377, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1377 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 175, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 1378, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1379, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1380, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1381, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1380, - 1381 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1344, - 1352, - 1371, - 1375, - 1378 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1343 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L1" - } - ] - }, - { - "id": 1382, - "name": "themes/fileupload", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "FileUpload Design Tokens\n\n[Live Demo](https://www.primeng.org/fileupload/)" - } - ] - }, - "children": [ - { - "id": 1383, - "name": "FileUploadDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1384, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1385, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1386, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1387, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1388, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1389, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1390, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1386, - 1387, - 1388, - 1389, - 1390 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1391, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1393, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1394, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1395, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1396, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1397, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1398, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1393, - 1394, - 1395, - 1396, - 1397, - 1398 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1399, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 93, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L93" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1400, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1401, - "name": "highlightBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Highlight border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.content.highlight.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1402, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1401, - 1402 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 93, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L93" - } - ] - } - } - }, - { - "id": 1403, - "name": "file", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the file section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 110, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L110" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1404, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1405, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1406, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1407, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 128, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1408, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of file" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L132" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1409, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1410, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info gap of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.info.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1410 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 132, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L132" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1405, - 1406, - 1407, - 1408 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 110, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L110" - } - ] - } - } - }, - { - "id": 1411, - "name": "progressbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the progressbar section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 144, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L144" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1412, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1413, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of progressbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.progressbar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1413 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 144, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L144" - } - ] - } - } - }, - { - "id": 1414, - "name": "basic", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the basic section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1415, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1416, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of basic" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.basic.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1416 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 1417, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1418, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1419, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1420, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1419, - 1420 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1384, - 1391, - 1399, - 1403, - 1411, - 1414, - 1417 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1383 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L1" - } - ] - }, - { - "id": 1421, - "name": "themes/floatlabel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "FloatLabel Design Tokens\n\n[Live Demo](https://www.primeng.org/floatlabel/)" - } - ] - }, - "children": [ - { - "id": 1422, - "name": "FloatLabelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1423, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1424, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1425, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1426, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1427, - "name": "invalidColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.invalid.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1428, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1425, - 1426, - 1427, - 1428 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1429, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1431, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1432, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1431, - 1432 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1423, - 1429 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1422 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L1" - } - ] - }, - { - "id": 1433, - "name": "themes/galleria", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Galleria Design Tokens\n\n[Live Demo](https://www.primeng.org/galleria/)" - } - ] - }, - "children": [ - { - "id": 1434, - "name": "GalleriaDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1435, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1436, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1437, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1438, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1439, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1440, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1437, - 1438, - 1439, - 1440 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1441, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1442, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1443, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1444, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1446, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1447, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1448, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1449, - "name": "prev", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Prev of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1450, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1451, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Prev border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.prev.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1451 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 86, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1452, - "name": "next", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Next of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1453, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1454, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Next border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.next.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1454 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 97, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1455, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L108" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1456, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1457, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1458, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1459, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1460, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1461, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1457, - 1458, - 1459, - 1460, - 1461 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 108, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L108" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1452, - 1455 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 46, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1462, - "name": "navIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 144, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L144" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1463, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1464, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of nav icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1464 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 144, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L144" - } - ] - } - } - }, - { - "id": 1465, - "name": "thumbnailsContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnails content section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1466, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1467, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of thumbnails content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnails.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1468, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of thumbnails content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnails.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1467, - 1468 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 155, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 1469, - "name": "thumbnailNavButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnail nav button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 172, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1470, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1471, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 178, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1472, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1473, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1474, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of thumbnail nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L194" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1475, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1476, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 200, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1477, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 206, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1478, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 212, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1479, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 218, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L218" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1480, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 224, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L224" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1476, - 1477, - 1478, - 1479, - 1480 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 194, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L194" - } - ] - } - } - }, - { - "id": 1481, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 237, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1483, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 243, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1471, - 1472, - 1473, - 1474, - 1481, - 1482, - 1483 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 172, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L172" - } - ] - } - } - }, - { - "id": 1484, - "name": "thumbnailNavButtonIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnail nav button icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 248, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L248" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1485, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1486, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of thumbnail nav button icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 254, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L254" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1486 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 248, - "character": 29, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L248" - } - ] - } - } - }, - { - "id": 1487, - "name": "caption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the caption section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 259, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L259" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1488, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1489, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 265, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L265" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1490, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 271, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L271" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1491, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 277, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L277" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1489, - 1490, - 1491 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 259, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L259" - } - ] - } - } - }, - { - "id": 1492, - "name": "indicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 282, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L282" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1493, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1494, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 288, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L288" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1495, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 294, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L294" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1494, - 1495 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 282, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L282" - } - ] - } - } - }, - { - "id": 1496, - "name": "indicatorButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 299, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L299" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1497, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1498, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 305, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L305" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1499, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 311, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L311" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1500, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 317, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L317" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1501, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 323, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L323" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1502, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of indicator button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1503, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1504, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 333, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1505, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 339, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L339" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1506, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 345, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L345" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1507, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L351" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1508, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 357, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1504, - 1505, - 1506, - 1507, - 1508 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 327, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 1509, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 364, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1510, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 370, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1498, - 1499, - 1500, - 1501, - 1502, - 1509, - 1510 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 299, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L299" - } - ] - } - } - }, - { - "id": 1511, - "name": "insetIndicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the inset indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 375, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L375" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1512, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1513, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of inset indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.list.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 381, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L381" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1513 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 375, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L375" - } - ] - } - } - }, - { - "id": 1514, - "name": "insetIndicatorButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the inset indicator button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 386, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L386" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1515, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1516, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 392, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L392" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1517, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 398, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L398" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1518, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 404, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L404" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1516, - 1517, - 1518 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 386, - "character": 27, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L386" - } - ] - } - } - }, - { - "id": 1519, - "name": "mask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mask section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 409, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L409" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1520, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1521, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 415, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L415" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1522, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 421, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L421" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1521, - 1522 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 409, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L409" - } - ] - } - } - }, - { - "id": 1523, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 426, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L426" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1525, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 432, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L432" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1526, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 438, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L438" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1527, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 444, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L444" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1528, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 450, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L450" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1529, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 456, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L456" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1530, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 462, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L462" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1531, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 468, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L468" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1532, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 472, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L472" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1533, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1534, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 478, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L478" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1535, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 484, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L484" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1536, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 490, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L490" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1537, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 496, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L496" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1538, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 502, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L502" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1534, - 1535, - 1536, - 1537, - 1538 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 472, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L472" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 426, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L426" - } - ] - } - } - }, - { - "id": 1539, - "name": "closeButtonIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 508, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L508" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1541, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close button icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 514, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L514" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1541 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 508, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L508" - } - ] - } - } - }, - { - "id": 1542, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1543, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1544, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1545, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1544, - 1545 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1435, - 1441, - 1462, - 1465, - 1469, - 1484, - 1487, - 1492, - 1496, - 1511, - 1514, - 1519, - 1523, - 1539, - 1542 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1434 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L1" - } - ] - }, - { - "id": 1546, - "name": "themes/iconfield", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "IconField Design Tokens\n\n[Live Demo](https://www.primeng.org/iconfield/)" - } - ] - }, - "children": [ - { - "id": 1547, - "name": "IconFieldDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1548, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1549, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1550, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "iconfield.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1550 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1551, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1552, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1553, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1554, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1553, - 1554 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1548, - 1551 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1547 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L1" - } - ] - }, - { - "id": 1555, - "name": "themes/image", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Image Design Tokens\n\n[Live Demo](https://www.primeng.org/image/)" - } - ] - }, - "children": [ - { - "id": 1556, - "name": "ImageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1557, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1558, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1559, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1559 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1560, - "name": "preview", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the preview section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1561, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1562, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of preview" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L32" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1563, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1564, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 38, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L38" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1564 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 32, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L32" - } - ] - } - } - }, - { - "id": 1565, - "name": "mask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask of preview" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 43, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L43" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1566, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1567, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask background of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 49, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L49" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1568, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask color of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 55, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L55" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1567, - 1568 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 43, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L43" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1562, - 1565 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1569, - "name": "toolbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 61, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L61" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1570, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1571, - "name": "position", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position of toolbar" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L65" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1572, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1573, - "name": "left", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position left of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.left" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 71, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1574, - "name": "right", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position right of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.right" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 77, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1575, - "name": "top", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position top of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.top" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 83, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1576, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position bottom of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 89, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1573, - 1574, - 1575, - 1576 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 65, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L65" - } - ] - } - } - }, - { - "id": 1577, - "name": "blur", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Blur of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.blur" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1578, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 102, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1579, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1580, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 114, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1581, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1582, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1583, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1571, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 61, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L61" - } - ] - } - } - }, - { - "id": 1584, - "name": "action", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the action section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 137, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L137" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1585, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1586, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 143, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1587, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1588, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1589, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1590, - "name": "iconSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1591, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1592, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of action" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L177" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1593, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1594, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 183, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1595, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 189, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1596, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 195, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1597, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 201, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1598, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 207, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1594, - 1595, - 1596, - 1597, - 1598 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 177, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L177" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 137, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L137" - } - ] - } - } - }, - { - "id": 1599, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1600, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1601, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1602, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1601, - 1602 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1557, - 1560, - 1569, - 1584, - 1599 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1556 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L1" - } - ] - }, - { - "id": 1603, - "name": "themes", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[Live Demo](https://www.primeng.org/)" - } - ] - }, - "children": [ - { - "id": 1604, - "name": "ColorSchemeDesignToken", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1605, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1606, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1607, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1609, - "name": "T", - "package": "primeng", - "qualifiedName": "ColorSchemeDesignToken.T", - "refersToTypeParameter": true - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1608, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1609, - "name": "T", - "package": "primeng", - "qualifiedName": "ColorSchemeDesignToken.T", - "refersToTypeParameter": true - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1607, - 1608 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1605 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 8, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L8" - } - ], - "typeParameters": [ - { - "id": 1609, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 2, - "name": "AccordionDesignTokens" - }, - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens" - }, - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens" - }, - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens" - }, - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens" - }, - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens" - }, - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens" - }, - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens" - }, - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens" - }, - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens" - }, - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens" - }, - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens" - }, - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens" - }, - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens" - }, - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens" - }, - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens" - }, - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens" - }, - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens" - }, - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens" - }, - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens" - }, - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens" - }, - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens" - }, - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens" - }, - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens" - }, - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens" - }, - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens" - }, - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens" - }, - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens" - }, - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens" - }, - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens" - }, - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens" - }, - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens" - }, - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens" - }, - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens" - }, - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens" - }, - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens" - }, - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens" - }, - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens" - }, - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens" - }, - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens" - }, - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens" - }, - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens" - }, - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens" - }, - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens" - }, - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens" - }, - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens" - }, - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens" - }, - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens" - }, - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens" - }, - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens" - }, - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens" - }, - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens" - }, - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens" - }, - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens" - }, - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens" - }, - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens" - }, - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens" - }, - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens" - }, - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens" - }, - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens" - }, - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens" - }, - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens" - }, - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens" - }, - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens" - }, - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens" - }, - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens" - }, - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens" - }, - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens" - }, - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens" - }, - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens" - }, - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens" - }, - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens" - }, - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens" - }, - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens" - }, - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens" - }, - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens" - }, - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens" - }, - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens" - }, - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens" - }, - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens" - }, - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens" - }, - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens" - }, - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens" - }, - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens" - }, - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens" - }, - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens" - } - ] - }, - { - "id": 1610, - "name": "PaletteDesignToken", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1611, - "name": "50", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 16, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L16" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1612, - "name": "100", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L17" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1613, - "name": "200", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 18, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L18" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1614, - "name": "300", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 19, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L19" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1615, - "name": "400", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 20, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L20" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1616, - "name": "500", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 21, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L21" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1617, - "name": "600", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 22, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L22" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1618, - "name": "700", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 23, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1619, - "name": "800", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 24, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L24" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1620, - "name": "900", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 25, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L25" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1621, - "name": "950", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 26, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L26" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 15, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L15" - } - ] - }, - { - "id": 1622, - "name": "PrimitiveDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1623, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 30, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L30" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1624, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1625, - "name": "none", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 31, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L31" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1626, - "name": "xs", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L32" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1627, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 33, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1628, - "name": "md", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1629, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1630, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 36, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L36" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1625, - 1626, - 1627, - 1628, - 1629, - 1630 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 30, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L30" - } - ] - } - } - }, - { - "id": 1631, - "name": "emerald", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 38, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L38" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1632, - "name": "green", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L39" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1633, - "name": "lime", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L40" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1634, - "name": "red", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 41, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L41" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1635, - "name": "orange", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 42, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L42" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1636, - "name": "amber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 43, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L43" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1637, - "name": "yellow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 44, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L44" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1638, - "name": "teal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L45" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1639, - "name": "cyan", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L46" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1640, - "name": "sky", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 47, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L47" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1641, - "name": "blue", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 48, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L48" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1642, - "name": "indigo", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 49, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L49" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1643, - "name": "violet", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 50, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L50" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1644, - "name": "purple", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L51" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1645, - "name": "fuchsia", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L52" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1646, - "name": "pink", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 53, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L53" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1647, - "name": "rose", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 54, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L54" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1648, - "name": "slate", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 55, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L55" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1649, - "name": "gray", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 56, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L56" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1650, - "name": "zinc", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L57" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1651, - "name": "neutral", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L58" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1652, - "name": "stone", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 59, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L59" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1623, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 29, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L29" - } - ], - "indexSignature": { - "id": 1653, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 60, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L60" - } - ], - "parameters": [ - { - "id": 1654, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 1655, - "name": "SemanticDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1656, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1657, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 65, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L65" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1658, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1659, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 66, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L66" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1660, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 67, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1661, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1662, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1663, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1659, - 1660, - 1661, - 1662, - 1663 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 65, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L65" - } - ] - } - } - }, - { - "id": 1664, - "name": "iconSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 72, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L72" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1665, - "name": "anchorGutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L73" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1666, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L74" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1667, - "name": "formField", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1668, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1669, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1670, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1671, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L78" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1672, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L79" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1673, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1674, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1675, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1676, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 82, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1677, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 83, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1678, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 84, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1674, - 1675, - 1676, - 1677, - 1678 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 79, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L79" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1669, - 1670, - 1671, - 1672 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 75, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L75" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1656, - 1657, - 1664, - 1665, - 1666, - 1667 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 63, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L63" - } - ], - "indexSignature": { - "id": 1679, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 88, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L88" - } - ], - "parameters": [ - { - "id": 1680, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1604, - 1610, - 1622, - 1655 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L1" - } - ] - }, - { - "id": 1681, - "name": "themes/inlinemessage", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InlineMessage Design Tokens\n\n[Live Demo](https://www.primeng.org/inlinemessage/)" - } - ] - }, - "children": [ - { - "id": 1682, - "name": "InlineMessageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1730, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1731, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1732, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1733, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1732, - 1733 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1683, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1684, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1685, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1686, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1687, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1685, - 1686, - 1687 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1688, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1689, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1690, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.text.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1690 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 40, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 1691, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1692, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1693, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1693 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 51, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 1694, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1695, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1696, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1697, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1698, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1699, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1696, - 1697, - 1698, - 1699 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 62, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" - } - ] - } - } - }, - { - "id": 1700, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1701, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1702, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1703, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1704, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1705, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1702, - 1703, - 1704, - 1705 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 91, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 1706, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1707, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1708, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1709, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1710, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1711, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1708, - 1709, - 1710, - 1711 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 120, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 1712, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 149, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1713, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1714, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1715, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1716, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1717, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1714, - 1715, - 1716, - 1717 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 149, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" - } - ] - } - } - }, - { - "id": 1718, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 178, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1719, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1720, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1721, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1722, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 196, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L196" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1723, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 202, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L202" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1720, - 1721, - 1722, - 1723 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 178, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" - } - ] - } - } - }, - { - "id": 1724, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 207, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1725, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1726, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 213, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L213" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1727, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 219, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L219" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1728, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 225, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1729, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1726, - 1727, - 1728, - 1729 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 207, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1730, - 1683, - 1688, - 1691, - 1694, - 1700, - 1706, - 1712, - 1718, - 1724 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1682 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L1" - } - ] - }, - { - "id": 1734, - "name": "themes/inplace", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inplace Design Tokens\n\n[Live Demo](https://www.primeng.org/inplace/)" - } - ] - }, - "children": [ - { - "id": 1735, - "name": "InplaceDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1752, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1753, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1754, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1755, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1754, - 1755 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1736, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1738, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1739, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1740, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 33, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L33" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1741, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1742, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 39, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L39" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1743, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 45, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1744, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1745, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1746, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1742, - 1743, - 1744, - 1745, - 1746 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 33, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L33" - } - ] - } - } - }, - { - "id": 1747, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1738, - 1739, - 1740, - 1747 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1748, - "name": "display", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the display section" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1749, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1750, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of display" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.display.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1751, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of display" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.display.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1750, - 1751 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 75, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L75" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1752, - 1736, - 1748 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1735 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L1" - } - ] - }, - { - "id": 1756, - "name": "themes/inputchips", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputChips Design Tokens\n\n[Live Demo](https://www.primeng.org/inputchips/)" - } - ] - }, - "children": [ - { - "id": 1757, - "name": "InputChipsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1788, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1789, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1790, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1791, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1790, - 1791 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1758, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1759, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1760, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1761, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1762, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1763, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1764, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1765, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1766, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1767, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1768, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1769, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1770, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1771, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1772, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1773, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1774, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1775, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1776, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1777, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1778, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1779, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1780, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1781, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1777, - 1778, - 1779, - 1780, - 1781 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 1782, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1782 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1783, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1784, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1785, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1786, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1787, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1785, - 1786, - 1787 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 153, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L153" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1788, - 1758, - 1783 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1757 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L1" - } - ] - }, - { - "id": 1792, - "name": "themes/inputgroup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/inputgroup/)" - } - ] - }, - "children": [ - { - "id": 1793, - "name": "InputGroupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1800, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1801, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1802, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1803, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1802, - 1803 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1794, - "name": "addon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the addon section" - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1795, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1796, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1797, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1798, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1799, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1796, - 1797, - 1798, - 1799 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1800, - 1794 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1793 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L1" - } - ] - }, - { - "id": 1804, - "name": "themes/inputnumber", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputNumber Design Tokens\n\n[Live Demo](https://www.primeng.org/inputnumber/)" - } - ] - }, - "children": [ - { - "id": 1805, - "name": "InputNumberDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1823, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1824, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1825, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1826, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1825, - 1826 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1806, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1807, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1808, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1808 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1809, - "name": "button", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the button section" - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1810, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1811, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1812, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1813, - "name": "verticalPadding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical padding of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.vertical.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1814, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1815, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1816, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1817, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1818, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1819, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1820, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1821, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1822, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 28, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1823, - 1806, - 1809 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1805 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L1" - } - ] - }, - { - "id": 1827, - "name": "themes/inputtext", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputText Design Tokens\n\n[Live Demo](https://www.primeng.org/inputtext/)" - } - ] - }, - "children": [ - { - "id": 1828, - "name": "InputTextDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1864, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1865, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1866, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1867, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1866, - 1867 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1829, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1830, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1831, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1832, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1833, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1834, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1835, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1836, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1837, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1838, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1839, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1840, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1841, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1842, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1843, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1844, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1845, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1846, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1847, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1848, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1849, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1850, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1851, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1852, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1848, - 1849, - 1850, - 1851, - 1852 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 1853, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1854, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L152" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1855, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1856, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 158, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1857, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 164, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1858, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 170, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L170" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1856, - 1857, - 1858 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 152, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L152" - } - ] - } - } - }, - { - "id": 1859, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1860, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1861, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 181, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1862, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 187, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1863, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 193, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1861, - 1862, - 1863 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 175, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L175" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1853, - 1854, - 1859 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1864, - 1829 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1828 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L1" - } - ] - }, - { - "id": 1868, - "name": "themes/knob", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Knob Design Tokens\n\n[Live Demo](https://www.primeng.org/knob/)" - } - ] - }, - "children": [ - { - "id": 1869, - "name": "KnobDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1889, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1890, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1891, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1892, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1891, - 1892 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1870, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1871, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1872, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1873, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 27, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L27" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1874, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1875, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 33, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1876, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 39, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L39" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1877, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 45, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1878, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1879, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1875, - 1876, - 1877, - 1878, - 1879 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 27, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L27" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1872, - 1873 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1880, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the value section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1881, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1882, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of value" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.value.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1882 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1883, - "name": "range", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the range section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1885, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of range" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.range.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1885 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 1886, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1887, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1888, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.text.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1888 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 85, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L85" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1889, - 1870, - 1880, - 1883, - 1886 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1869 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L1" - } - ] - }, - { - "id": 1893, - "name": "themes/listbox", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listbox Design Tokens\n\n[Live Demo](https://www.primeng.org/listbox/)" - } - ] - }, - "children": [ - { - "id": 1894, - "name": "ListboxDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1948, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1949, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1950, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1951, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1950, - 1951 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1895, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1896, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1897, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1898, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1899, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1900, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1901, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1902, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1903, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1904, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1905, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1906, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1907, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1908, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1909, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 87, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1910, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 93, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1911, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 99, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1912, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 105, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1913, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 111, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1909, - 1910, - 1911, - 1912, - 1913 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 81, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 1914, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1914 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1915, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 123, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L123" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1916, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1917, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1918, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1919, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1920, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1921, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1921 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 139, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1917, - 1918, - 1919 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 123, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L123" - } - ] - } - } - }, - { - "id": 1922, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1923, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1924, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1925, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1926, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1927, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1928, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1929, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1930, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1931, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1932, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1933, - "name": "stripedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Striped background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.striped.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 151, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 1934, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 216, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L216" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1935, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1936, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1937, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1938, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 234, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L234" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1939, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 240, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L240" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1936, - 1937, - 1938, - 1939 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 216, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L216" - } - ] - } - } - }, - { - "id": 1940, - "name": "checkmark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the checkmark section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 245, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L245" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1941, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1942, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1943, - "name": "gutterStart", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter start of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.gutter.start" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1944, - "name": "gutterEnd", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter end of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.gutter.end" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1942, - 1943, - 1944 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 245, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L245" - } - ] - } - } - }, - { - "id": 1945, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 268, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L268" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1946, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1947, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1947 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 268, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L268" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1948, - 1895, - 1915, - 1922, - 1934, - 1940, - 1945 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1894 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L1" - } - ] - }, - { - "id": 1952, - "name": "themes/megamenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MegaMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/megamenu/)" - } - ] - }, - "children": [ - { - "id": 1953, - "name": "MegaMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2030, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2031, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2032, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2033, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2032, - 2033 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1954, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1955, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1956, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1957, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1958, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1959, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1960, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1961, - "name": "verticalOrientation", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation of root" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1962, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1963, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.vertical.orientation.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1964, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.vertical.orientation.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1963, - 1964 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 51, - "character": 30, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 1965, - "name": "horizontalOrientation", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal orientation of root" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L68" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1966, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1967, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal orientation padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.horizontal.orientation.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1967 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 68, - "character": 32, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L68" - } - ] - } - } - }, - { - "id": 1968, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1965, - 1968 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1969, - "name": "baseItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the base item section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1970, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1971, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.base.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1972, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.base.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1971, - 1972 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 86, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1973, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1974, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1975, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1976, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1977, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1978, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1979, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1980, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1981, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1982, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1983, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1984, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1985, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1986, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1987, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1985, - 1986, - 1987 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 155, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L155" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 103, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 1988, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 179, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L179" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1989, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1990, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 185, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1991, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 191, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1992, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1993, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 203, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1994, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 209, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1995, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1996, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 179, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L179" - } - ] - } - } - }, - { - "id": 1997, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 226, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L226" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1998, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1999, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 232, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2000, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 238, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1999, - 2000 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 226, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L226" - } - ] - } - } - }, - { - "id": 2001, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 243, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L243" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2002, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2003, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 249, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2004, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 255, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2005, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 261, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2006, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 267, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2003, - 2004, - 2005, - 2006 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 243, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L243" - } - ] - } - } - }, - { - "id": 2007, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 272, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L272" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2008, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2009, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 278, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L278" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2010, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 284, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L284" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2011, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 290, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2012, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 296, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L296" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2009, - 2010, - 2011, - 2012 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 272, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L272" - } - ] - } - } - }, - { - "id": 2013, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 301, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L301" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2014, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2015, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 307, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L307" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2015 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 301, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L301" - } - ] - } - } - }, - { - "id": 2016, - "name": "mobileButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mobile button section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 312, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L312" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2017, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2018, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 318, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L318" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2019, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 324, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L324" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2020, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 330, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L330" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2021, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 336, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L336" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2022, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 342, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L342" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2023, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of mobile button" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 346, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L346" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2024, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2025, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 352, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L352" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2026, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 358, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L358" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2027, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 364, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2028, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 370, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2029, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 376, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2025, - 2026, - 2027, - 2028, - 2029 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 346, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L346" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 312, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L312" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2030, - 1954, - 1969, - 1973, - 1988, - 1997, - 2001, - 2007, - 2013, - 2016 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1953 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L1" - } - ] - }, - { - "id": 2034, - "name": "themes/menu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Menu Design Tokens\n\n[Live Demo](https://www.primeng.org/menu/)" - } - ] - }, - "children": [ - { - "id": 2035, - "name": "MenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2069, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2070, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2071, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2072, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2071, - 2072 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2036, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2037, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2038, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2039, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2040, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2041, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2042, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2043, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2038, - 2039, - 2040, - 2041, - 2042, - 2043 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2044, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2045, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2046, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2047, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2046, - 2047 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 2048, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2049, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2050, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2051, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2052, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2053, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2054, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2055, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2056, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2057, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2058, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2059, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 127, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2058, - 2059 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 115, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L115" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 2060, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 133, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L133" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2061, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2062, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2063, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2064, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2065, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2062, - 2063, - 2064, - 2065 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 133, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L133" - } - ] - } - } - }, - { - "id": 2066, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 162, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L162" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2067, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2068, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2068 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 162, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L162" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2069, - 2036, - 2044, - 2048, - 2060, - 2066 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2035 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L1" - } - ] - }, - { - "id": 2073, - "name": "themes/menubar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Menubar Design Tokens\n\n[Live Demo](https://www.primeng.org/menubar/)" - } - ] - }, - "children": [ - { - "id": 2074, - "name": "MenubarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2135, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2136, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2137, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2138, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2137, - 2138 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2075, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2076, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2077, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2078, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2079, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2080, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2081, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2082, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2083, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2084, - "name": "baseItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the base item section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2085, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2086, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.base.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2087, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.base.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2086, - 2087 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 64, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 2088, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2089, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2090, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2091, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2092, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2093, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2094, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2095, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2096, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2097, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2098, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L133" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2099, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2100, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2101, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2102, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2100, - 2101, - 2102 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 133, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L133" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 2103, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 157, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L157" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2104, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2105, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2106, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2107, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2108, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2109, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2110, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2111, - "name": "mobileIndent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mobile indent of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.mobile.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 157, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L157" - } - ] - } - } - }, - { - "id": 2112, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 204, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L204" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2113, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2114, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2115, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2116, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2117, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2114, - 2115, - 2116, - 2117 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 204, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L204" - } - ] - } - } - }, - { - "id": 2118, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2119, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2120, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2120 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2121, - "name": "mobileButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mobile button section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 244, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L244" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2122, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2123, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 250, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L250" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2124, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2125, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2126, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2127, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2128, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of mobile button" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 278, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L278" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2129, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2130, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 284, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L284" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2131, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 290, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2132, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 296, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L296" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2133, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 302, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L302" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2134, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 308, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L308" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2130, - 2131, - 2132, - 2133, - 2134 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 278, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L278" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2123, - 2124, - 2125, - 2126, - 2127, - 2128 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 244, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L244" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2135, - 2075, - 2084, - 2088, - 2103, - 2112, - 2118, - 2121 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2074 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L1" - } - ] - }, - { - "id": 2139, - "name": "themes/message", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Message Design Tokens\n\n[Live Demo](https://www.primeng.org/message/)" - } - ] - }, - "children": [ - { - "id": 2140, - "name": "MessageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2248, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2249, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2250, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2251, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2250, - 2251 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2141, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2142, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2143, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2144, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2145, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2143, - 2144, - 2145 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2146, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2147, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2148, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2149, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2148, - 2149 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 40, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2150, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2152, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.text.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2153, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.text.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2152, - 2153 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 57, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 2154, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2156, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2156 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 74, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2157, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2158, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2159, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2160, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2161, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2162, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L107" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2163, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2164, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 113, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2165, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 119, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L119" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2166, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 125, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L125" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2164, - 2165, - 2166 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 107, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L107" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2159, - 2160, - 2161, - 2162 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 85, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L85" - } - ] - } - } - }, - { - "id": 2167, - "name": "closeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close icon section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 131, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L131" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2168, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2169, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 137, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2169 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 131, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L131" - } - ] - } - } - }, - { - "id": 2170, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 142, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L142" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2172, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2173, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2174, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2175, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 166, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L166" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2176, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of info" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 170, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2177, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2178, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 176, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2179, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of info" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 180, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2180, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2181, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 186, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2182, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 192, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2181, - 2182 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 180, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L180" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2178, - 2179 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 170, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L170" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2172, - 2173, - 2174, - 2175, - 2176 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 142, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L142" - } - ] - } - } - }, - { - "id": 2183, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 199, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L199" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2184, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2185, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2186, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2187, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2188, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2189, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of success" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 227, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L227" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2190, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2191, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 233, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2192, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of success" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 237, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L237" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2194, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 243, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2195, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 249, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2194, - 2195 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 237, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L237" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2191, - 2192 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 227, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L227" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2185, - 2186, - 2187, - 2188, - 2189 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 199, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L199" - } - ] - } - } - }, - { - "id": 2196, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 256, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L256" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2197, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2198, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2199, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2200, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2201, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L280" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2202, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of warn" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 284, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L284" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2203, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2204, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 290, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2205, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of warn" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 294, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L294" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2206, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2207, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 300, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L300" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2208, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 306, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L306" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2207, - 2208 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 294, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L294" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2204, - 2205 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 284, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L284" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2198, - 2199, - 2200, - 2201, - 2202 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 256, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L256" - } - ] - } - } - }, - { - "id": 2209, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 313, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L313" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2210, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2211, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 319, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L319" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2212, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2213, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2214, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2215, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of error" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 341, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L341" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2216, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2217, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 347, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L347" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2218, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of error" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L351" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2219, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2220, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 357, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2221, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 363, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L363" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2220, - 2221 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 351, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L351" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2217, - 2218 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 341, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L341" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2211, - 2212, - 2213, - 2214, - 2215 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 313, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L313" - } - ] - } - } - }, - { - "id": 2222, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 370, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L370" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2223, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2224, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 376, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2225, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 382, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L382" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2226, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 388, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L388" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2227, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 394, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L394" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2228, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of secondary" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 398, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L398" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2229, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2230, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 404, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L404" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2231, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of secondary" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 408, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L408" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2232, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2233, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 414, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L414" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2234, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 420, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L420" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2233, - 2234 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 408, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L408" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2230, - 2231 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 398, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L398" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2224, - 2225, - 2226, - 2227, - 2228 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 370, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L370" - } - ] - } - } - }, - { - "id": 2235, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 427, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L427" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2236, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2237, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 433, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L433" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2238, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 439, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L439" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2239, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 445, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L445" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2240, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 451, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L451" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2241, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of contrast" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 455, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L455" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2242, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2243, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 461, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L461" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2244, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of contrast" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L465" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2245, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2246, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 471, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L471" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2247, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 477, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2246, - 2247 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 465, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L465" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2243, - 2244 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 455, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L455" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2237, - 2238, - 2239, - 2240, - 2241 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 427, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L427" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2248, - 2141, - 2146, - 2150, - 2154, - 2157, - 2167, - 2170, - 2183, - 2196, - 2209, - 2222, - 2235 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2140 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L1" - } - ] - }, - { - "id": 2252, - "name": "themes/metergroup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MeterGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/metergroup/)" - } - ] - }, - "children": [ - { - "id": 2253, - "name": "MeterGroupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2275, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2276, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2277, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2278, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2277, - 2278 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2254, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2255, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2256, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2257, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2256, - 2257 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2258, - "name": "meters", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the meters section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2259, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2260, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of meters" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.meters.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2261, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of meters" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.meters.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2260, - 2261 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2262, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2264, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2264 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2265, - "name": "labelMarker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label marker section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2266, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2267, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of label marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.marker.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2267 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 62, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L62" - } - ] - } - } - }, - { - "id": 2268, - "name": "labelIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label icon section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L73" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2269, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2270, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of label icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2270 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 73, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L73" - } - ] - } - } - }, - { - "id": 2271, - "name": "labelList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label list section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 84, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L84" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2272, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2273, - "name": "verticalGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical gap of label list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.list.vertical.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2274, - "name": "horizontalGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal gap of label list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.list.horizontal.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2273, - 2274 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 84, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L84" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2275, - 2254, - 2258, - 2262, - 2265, - 2268, - 2271 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2253 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L1" - } - ] - }, - { - "id": 2279, - "name": "themes/multiselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MultiSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/multiselect/)" - } - ] - }, - "children": [ - { - "id": 2280, - "name": "MultiSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2348, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2349, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2350, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2351, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2350, - 2351 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2281, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2282, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2283, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2284, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2285, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2286, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2287, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2288, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2289, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2290, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2291, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2292, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2293, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2294, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2295, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2296, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2297, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2298, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2299, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2300, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2301, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2302, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2303, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2304, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2300, - 2301, - 2302, - 2303, - 2304 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 2305, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2305 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2306, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2307, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2308, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2309, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2308, - 2309 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 2310, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2311, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2312, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2313, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2314, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2315, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2316, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2312, - 2313, - 2314, - 2315, - 2316 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 2317, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2318, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2319, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2320, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2321, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L221" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2322, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2323, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2323 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 221, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L221" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2319, - 2320, - 2321 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 2324, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2325, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2326, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2327, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2328, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2329, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2330, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2331, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 269, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L269" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2332, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 275, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L275" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2333, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 281, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L281" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2334, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 287, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L287" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2335, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 293, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L293" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 233, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2336, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 298, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L298" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2337, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2338, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2339, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 310, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L310" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2340, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 316, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L316" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2341, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 322, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L322" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2338, - 2339, - 2340, - 2341 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 298, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L298" - } - ] - } - } - }, - { - "id": 2342, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 327, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2343, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2344, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 333, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2344 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 327, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 2345, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 338, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L338" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2346, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2347, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 344, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L344" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2347 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 338, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L338" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2348, - 2281, - 2306, - 2310, - 2317, - 2324, - 2336, - 2342, - 2345 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2280 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L1" - } - ] - }, - { - "id": 2352, - "name": "themes/orderlist", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OrderList Design Tokens\n\n[Live Demo](https://www.primeng.org/orderlist/)" - } - ] - }, - "children": [ - { - "id": 2353, - "name": "OrderListDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2360, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2361, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2362, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2363, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2362, - 2363 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2354, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2355, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2356, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "orderlist.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2356 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2357, - "name": "controls", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the controls section" - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2358, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2359, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of controls" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "orderlist.controls.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2359 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 28, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2360, - 2354, - 2357 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2353 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L1" - } - ] - }, - { - "id": 2364, - "name": "themes/organizationchart", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OrganizationChart Design Tokens\n\n[Live Demo](https://www.primeng.org/organizationchart/)" - } - ] - }, - "children": [ - { - "id": 2365, - "name": "OrganizationChartDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2403, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2404, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2405, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2406, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2405, - 2406 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2366, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2367, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2368, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2369, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2368, - 2369 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2370, - "name": "node", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2372, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2373, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2374, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2375, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2376, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2377, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2378, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2379, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2380, - "name": "toggleablePadding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toggleable padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggleable.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2381, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 34, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2382, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 99, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L99" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2383, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2384, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2385, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2386, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2387, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2388, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2389, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2390, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2391, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L145" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2393, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2394, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2395, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2396, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2397, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 175, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2393, - 2394, - 2395, - 2396, - 2397 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 145, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L145" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 99, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L99" - } - ] - } - } - }, - { - "id": 2398, - "name": "connector", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the connector section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 181, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L181" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2399, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2400, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2401, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2402, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2400, - 2401, - 2402 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 181, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L181" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2403, - 2366, - 2370, - 2382, - 2398 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2365 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L1" - } - ] - }, - { - "id": 2407, - "name": "themes/overlaybadge", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OverlayBadge Design Tokens\n\n[Live Demo](https://www.primeng.org/overlaybadge/)" - } - ] - }, - "children": [ - { - "id": 2408, - "name": "OverlayBadgeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2415, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2416, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2417, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2418, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2417, - 2418 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2409, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2410, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2411, - "name": "outline", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline of root" - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 21, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2412, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2413, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "overlaybadge.outline.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 27, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L27" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2414, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "overlaybadge.outline.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 33, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2413, - 2414 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 21, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2411 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2415, - 2409 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2408 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L1" - } - ] - }, - { - "id": 2419, - "name": "themes/paginator", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Paginator Design Tokens\n\n[Live Demo](https://www.primeng.org/paginator/)" - } - ] - }, - "children": [ - { - "id": 2420, - "name": "PaginatorDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2453, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2454, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2455, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2456, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2455, - 2456 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2421, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2422, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2423, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2424, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2425, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2426, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2427, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2428, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2423, - 2424, - 2425, - 2426, - 2427, - 2428 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2429, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2431, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2432, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2433, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2434, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2435, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2436, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2437, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2438, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2439, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2440, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L116" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2442, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 122, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2443, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2444, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2445, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 140, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2446, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 146, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2442, - 2443, - 2444, - 2445, - 2446 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 116, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L116" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 58, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 2447, - "name": "currentPageReport", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the current page report section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 152, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L152" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2448, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2449, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of current page report" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.current.page.report.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2449 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 152, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L152" - } - ] - } - } - }, - { - "id": 2450, - "name": "jumpToPageInput", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the jump to page input section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2451, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2452, - "name": "maxWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Max width of jump to page input" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.jump.to.page.input.max.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2452 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 163, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L163" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2453, - 2421, - 2429, - 2447, - 2450 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2420 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L1" - } - ] - }, - { - "id": 2457, - "name": "themes/panel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" - } - ] - }, - "children": [ - { - "id": 2458, - "name": "PanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2485, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2486, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2487, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2488, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2487, - 2488 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2459, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2460, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2461, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2462, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2463, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2464, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2461, - 2462, - 2463, - 2464 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2465, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2466, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2467, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2468, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2469, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2470, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2471, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2472, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2467, - 2468, - 2469, - 2470, - 2471, - 2472 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 2473, - "name": "toggleableHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggleable header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2474, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2475, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of toggleable header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.toggleable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2475 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 2476, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2477, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2478, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2478 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 2479, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2480, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2481, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2481 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 2482, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2483, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2484, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2484 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L120" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2485, - 2459, - 2465, - 2473, - 2476, - 2479, - 2482 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2458 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L1" - } - ] - }, - { - "id": 2489, - "name": "themes/panelmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "PanelMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/panelmenu/)" - } - ] - }, - "children": [ - { - "id": 2490, - "name": "PanelMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2530, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2531, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2532, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2533, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2532, - 2533 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2491, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2492, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2493, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2494, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2493, - 2494 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2495, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2496, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2497, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2498, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2499, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2500, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2501, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2502, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2503, - "name": "first", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First of panel" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2504, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2505, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.first.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2506, - "name": "topBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First top border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.first.top.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2505, - 2506 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 74, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2507, - "name": "last", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last of panel" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2508, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2509, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.last.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2510, - "name": "bottomBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last bottom border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.last.bottom.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2509, - 2510 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 91, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L91" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2507 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 34, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2511, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2512, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2513, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2514, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2515, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2516, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2517, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2518, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2519, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2520, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2521, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2522, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2521, - 2522 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 149, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L149" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 109, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 2523, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 167, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L167" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2525, - "name": "indent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Indent of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2525 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 167, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L167" - } - ] - } - } - }, - { - "id": 2526, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 178, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L178" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2527, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2528, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2529, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2528, - 2529 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 178, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L178" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2530, - 2491, - 2495, - 2511, - 2523, - 2526 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2490 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L1" - } - ] - }, - { - "id": 2534, - "name": "themes/password", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Password Design Tokens\n\n[Live Demo](https://www.primeng.org/password/)" - } - ] - }, - "children": [ - { - "id": 2535, - "name": "PasswordDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2560, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2561, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2562, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2563, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2562, - 2563 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2536, - "name": "meter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the meter section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2537, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2538, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2539, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2540, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2538, - 2539, - 2540 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2541, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2542, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2543, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2543 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 40, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2544, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2545, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2546, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2547, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2548, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2549, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2550, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2551, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2546, - 2547, - 2548, - 2549, - 2550, - 2551 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 51, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2552, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2553, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2554, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2554 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 92, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 2555, - "name": "strength", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the strength section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2556, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2557, - "name": "weakBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Weak background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.weak.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2558, - "name": "mediumBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Medium background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.medium.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2559, - "name": "strongBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Strong background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.strong.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2557, - 2558, - 2559 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 103, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L103" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2560, - 2536, - 2541, - 2544, - 2552, - 2555 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2535 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L1" - } - ] - }, - { - "id": 2564, - "name": "themes/picklist", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "PickList Design Tokens\n\n[Live Demo](https://www.primeng.org/picklist/)" - } - ] - }, - "children": [ - { - "id": 2565, - "name": "PickListDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2572, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2573, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2574, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2575, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2574, - 2575 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2566, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2567, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2568, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "picklist.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2568 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2569, - "name": "controls", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the controls section" - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2570, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2571, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of controls" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "picklist.controls.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2571 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 28, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2572, - 2566, - 2569 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2565 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L1" - } - ] - }, - { - "id": 2576, - "name": "themes/popover", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Popover Design Tokens\n\n[Live Demo](https://www.primeng.org/popover/)" - } - ] - }, - "children": [ - { - "id": 2577, - "name": "PopoverDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2590, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2591, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2592, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2593, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2592, - 2593 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2578, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2579, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2580, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2581, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2582, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2583, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2584, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2585, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2586, - "name": "arrowOffset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Arrow offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.arrow.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2587, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2588, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2589, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2589 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 64, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L64" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2590, - 2578, - 2587 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2577 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L1" - } - ] - }, - { - "id": 2594, - "name": "themes/progressbar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ProgressBar Design Tokens\n\n[Live Demo](https://www.primeng.org/progressbar/)" - } - ] - }, - "children": [ - { - "id": 2595, - "name": "ProgressBarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2609, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2610, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2611, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2612, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2611, - 2612 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2596, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2597, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2598, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2599, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2600, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2598, - 2599, - 2600 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2601, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the value section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2602, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2603, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of value" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.value.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2603 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 40, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2604, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2605, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2606, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2607, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2608, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2606, - 2607, - 2608 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L51" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2609, - 2596, - 2601, - 2604 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2595 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L1" - } - ] - }, - { - "id": 2613, - "name": "themes/progressspinner", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ProgressSpinner Design Tokens\n\n[Live Demo](https://www.primeng.org/progressspinner/)" - } - ] - }, - "children": [ - { - "id": 2614, - "name": "ProgressSpinnerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2621, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2622, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2623, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2624, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2623, - 2624 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2615, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2616, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2617, - "name": "color.1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.1 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2618, - "name": "color.2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.2 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2619, - "name": "color.3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.3 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2620, - "name": "color.4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.4 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2617, - 2618, - 2619, - 2620 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2621, - 2615 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2614 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L1" - } - ] - }, - { - "id": 2625, - "name": "themes/radiobutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "RadioButton Design Tokens\n\n[Live Demo](https://www.primeng.org/radiobutton/)" - } - ] - }, - "children": [ - { - "id": 2626, - "name": "RadioButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2659, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2660, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2661, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2662, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2661, - 2662 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2627, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2628, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2629, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2630, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2631, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2632, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2633, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2634, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2635, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2636, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2637, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2638, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2639, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2640, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2641, - "name": "checkedFocusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2642, - "name": "checkedDisabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2643, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2644, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 113, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2645, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L117" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2646, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2647, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2648, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2649, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2650, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2651, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2647, - 2648, - 2649, - 2650, - 2651 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 117, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L117" - } - ] - } - } - }, - { - "id": 2652, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2652 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2653, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 159, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L159" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2654, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2655, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2656, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2657, - "name": "checkedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.checked.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2658, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2655, - 2656, - 2657, - 2658 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 159, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L159" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2659, - 2627, - 2653 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2626 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L1" - } - ] - }, - { - "id": 2663, - "name": "themes/rating", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rating Design Tokens\n\n[Live Demo](https://www.primeng.org/rating/)" - } - ] - }, - "children": [ - { - "id": 2664, - "name": "RatingDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2675, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2676, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2677, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2678, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2677, - 2678 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2665, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2666, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2667, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2668, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2667, - 2668 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2669, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2670, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2671, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2672, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2673, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2674, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2671, - 2672, - 2673, - 2674 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 34, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L34" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2675, - 2665, - 2669 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2664 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L1" - } - ] - }, - { - "id": 2679, - "name": "themes/ripple", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Ripple Design Tokens\n\n[Live Demo](https://www.primeng.org/ripple/)" - } - ] - }, - "children": [ - { - "id": 2680, - "name": "RippleDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2684, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2685, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2686, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2687, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2686, - 2687 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2681, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2682, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2683, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "ripple.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2683 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2684, - 2681 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2680 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L1" - } - ] - }, - { - "id": 2688, - "name": "themes/scrollpanel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ScrollPanel Design Tokens\n\n[Live Demo](https://www.primeng.org/scrollpanel/)" - } - ] - }, - "children": [ - { - "id": 2689, - "name": "ScrollPanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2705, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2706, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2707, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2708, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2707, - 2708 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2690, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2691, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2692, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2692 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2693, - "name": "bar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the bar section" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2694, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2695, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2696, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2697, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of bar" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 44, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2698, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2699, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 50, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L50" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2700, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 56, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L56" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2701, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 62, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2702, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 68, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2703, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2699, - 2700, - 2701, - 2702, - 2703 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 44, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" - } - ] - } - } - }, - { - "id": 2704, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2695, - 2696, - 2697, - 2704 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 28, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2705, - 2690, - 2693 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2689 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L1" - } - ] - }, - { - "id": 2709, - "name": "themes/select", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Select Design Tokens\n\n[Live Demo](https://www.primeng.org/select/)" - } - ] - }, - "children": [ - { - "id": 2710, - "name": "SelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2782, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2784, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2785, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2784, - 2785 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2711, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2712, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2713, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2714, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2715, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2716, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2717, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2718, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2719, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2720, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2721, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2722, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2723, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2724, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2725, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2726, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2727, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2728, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2729, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2730, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2731, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2732, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2733, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2734, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2730, - 2731, - 2732, - 2733, - 2734 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 2735, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2735 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2736, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2738, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2739, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2738, - 2739 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 2740, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2741, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2742, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2743, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2744, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2745, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2746, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2742, - 2743, - 2744, - 2745, - 2746 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 2747, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2748, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2749, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2750, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2751, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L221" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2752, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2753, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2753 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 221, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L221" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2749, - 2750, - 2751 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 2754, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2755, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2756, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2757, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2758, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2759, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2760, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2761, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 269, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L269" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2762, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 275, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L275" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2763, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 281, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L281" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2764, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 287, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L287" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 233, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2765, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 292, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L292" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2766, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2767, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2768, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2769, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 310, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L310" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2770, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 316, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L316" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2767, - 2768, - 2769, - 2770 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 292, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L292" - } - ] - } - } - }, - { - "id": 2771, - "name": "clearIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the clear icon section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 321, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L321" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2772, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2773, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of clear icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.clear.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L327" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2773 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 321, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L321" - } - ] - } - } - }, - { - "id": 2774, - "name": "checkmark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the checkmark section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 332, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L332" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2775, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2776, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 338, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L338" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2777, - "name": "gutterStart", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter start of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.gutter.start" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 344, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L344" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2778, - "name": "gutterEnd", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter end of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.gutter.end" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 350, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L350" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2776, - 2777, - 2778 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 332, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L332" - } - ] - } - } - }, - { - "id": 2779, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 355, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L355" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2780, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2781, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 361, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2781 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 355, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L355" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2782, - 2711, - 2736, - 2740, - 2747, - 2754, - 2765, - 2771, - 2774, - 2779 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2710 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L1" - } - ] - }, - { - "id": 2786, - "name": "themes/selectbutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SelectButton Design Tokens\n\n[Live Demo](https://www.primeng.org/selectbutton/)" - } - ] - }, - "children": [ - { - "id": 2787, - "name": "SelectButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2792, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2794, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2795, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2794, - 2795 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2788, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2789, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2790, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "selectbutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2791, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "selectbutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2790, - 2791 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2792, - 2788 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2787 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L1" - } - ] - }, - { - "id": 2796, - "name": "themes/skeleton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Skeleton Design Tokens\n\n[Live Demo](https://www.primeng.org/skeleton/)" - } - ] - }, - "children": [ - { - "id": 2797, - "name": "SkeletonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2803, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2804, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2805, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2806, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2805, - 2806 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2798, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2799, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2800, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2801, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2802, - "name": "animationBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Animation background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.animation.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2800, - 2801, - 2802 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2803, - 2798 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2797 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L1" - } - ] - }, - { - "id": 2807, - "name": "themes/slider", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Slider Design Tokens\n\n[Live Demo](https://www.primeng.org/slider/)" - } - ] - }, - "children": [ - { - "id": 2808, - "name": "SliderDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2842, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2843, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2844, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2845, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2844, - 2845 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2809, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2810, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2811, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2811 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2812, - "name": "track", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the track section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2813, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2814, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2815, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2816, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2814, - 2815, - 2816 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 28, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2817, - "name": "range", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the range section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2818, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2819, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of range" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.range.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2819 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2820, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2821, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2822, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2823, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2824, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2825, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2826, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2827, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of handle" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L96" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2828, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2829, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2830, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2831, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2832, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content height of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2833, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2829, - 2830, - 2831, - 2832, - 2833 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 96, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L96" - } - ] - } - } - }, - { - "id": 2834, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of handle" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 131, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L131" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2835, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2836, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 137, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2837, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 143, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2838, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 149, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2839, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2840, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2836, - 2837, - 2838, - 2839, - 2840 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 131, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L131" - } - ] - } - } - }, - { - "id": 2841, - "name": "contentBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2834, - 2841 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 62, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L62" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2842, - 2809, - 2812, - 2817, - 2820 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2808 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L1" - } - ] - }, - { - "id": 2846, - "name": "themes/speeddial", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SpeedDial Design Tokens\n\n[Live Demo](https://www.primeng.org/speeddial/)" - } - ] - }, - "children": [ - { - "id": 2847, - "name": "SpeedDialDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2852, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2853, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2854, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2855, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2854, - 2855 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2848, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2849, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2850, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "speeddial.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2851, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "speeddial.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2850, - 2851 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2852, - 2848 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2847 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L1" - } - ] - }, - { - "id": 2856, - "name": "themes/splitbutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SplitButton Design Tokens\n\n[Live Demo](https://www.primeng.org/splitbutton/)" - } - ] - }, - "children": [ - { - "id": 2857, - "name": "SplitButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2863, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2864, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2865, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2866, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2865, - 2866 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2858, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2859, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2860, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2861, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2862, - "name": "raisedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Raised shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.raised.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2860, - 2861, - 2862 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2863, - 2858 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2857 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L1" - } - ] - }, - { - "id": 2867, - "name": "themes/splitter", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Splitter Design Tokens\n\n[Live Demo](https://www.primeng.org/splitter/)" - } - ] - }, - "children": [ - { - "id": 2868, - "name": "SplitterDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2890, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2891, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2892, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2893, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2892, - 2893 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2869, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2870, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2871, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2872, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2873, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2874, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2871, - 2872, - 2873, - 2874 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2875, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the gutter section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2876, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2877, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of gutter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.gutter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2877 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 2878, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2879, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2880, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2881, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2882, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2883, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of handle" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L79" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2885, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 85, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L85" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2886, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 91, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2887, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2888, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2889, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2885, - 2886, - 2887, - 2888, - 2889 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 79, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L79" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2880, - 2881, - 2882, - 2883 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 57, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L57" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2890, - 2869, - 2875, - 2878 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2868 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L1" - } - ] - }, - { - "id": 2894, - "name": "themes/stepper", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Stepper Design Tokens\n\n[Live Demo](https://www.primeng.org/stepper/)" - } - ] - }, - "children": [ - { - "id": 2895, - "name": "StepperDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2947, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2948, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2949, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2950, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2949, - 2950 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2896, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2897, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2898, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2898 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2899, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2900, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2901, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2902, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2903, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2904, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2901, - 2902, - 2903, - 2904 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 28, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2905, - "name": "step", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2906, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2907, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of step" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2908, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of step" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2907, - 2908 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 57, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 2909, - "name": "stepHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step header section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2910, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2911, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2912, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2913, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of step header" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L90" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2914, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2915, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 96, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2916, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2917, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2918, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2919, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2915, - 2916, - 2917, - 2918, - 2919 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 90, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L90" - } - ] - } - } - }, - { - "id": 2920, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2911, - 2912, - 2913, - 2920 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 74, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2921, - "name": "stepTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step title section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 132, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L132" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2922, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2923, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2924, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2925, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2923, - 2924, - 2925 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 132, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L132" - } - ] - } - } - }, - { - "id": 2926, - "name": "stepNumber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step number section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2927, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2928, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2929, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2930, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2931, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 179, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2932, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 185, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2933, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 191, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2934, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2935, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 203, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2936, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 209, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2937, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2938, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 155, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 2939, - "name": "steppanels", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the steppanels section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 226, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L226" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2940, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2941, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of steppanels" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanels.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 232, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2941 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 226, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L226" - } - ] - } - } - }, - { - "id": 2942, - "name": "steppanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the steppanel section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 237, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L237" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2943, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2944, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 243, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2945, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 249, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2946, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 255, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2944, - 2945, - 2946 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 237, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L237" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2947, - 2896, - 2899, - 2905, - 2909, - 2921, - 2926, - 2939, - 2942 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2895 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L1" - } - ] - }, - { - "id": 2951, - "name": "themes/steps", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Steps Design Tokens\n\n[Live Demo](https://www.primeng.org/steps/)" - } - ] - }, - "children": [ - { - "id": 2952, - "name": "StepsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2988, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2989, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2990, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2991, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2990, - 2991 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2953, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2954, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2955, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2955 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2956, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2957, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2958, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.separator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2958 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 28, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2959, - "name": "itemLink", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item link section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L39" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2960, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2961, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 45, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2962, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item link" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 49, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L49" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2963, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2964, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 55, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L55" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2965, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 61, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L61" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2966, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 67, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2967, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 73, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L73" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2968, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 79, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2964, - 2965, - 2966, - 2967, - 2968 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 49, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L49" - } - ] - } - } - }, - { - "id": 2969, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2961, - 2962, - 2969 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 39, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L39" - } - ] - } - } - }, - { - "id": 2970, - "name": "itemLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item label section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2971, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2972, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2973, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2974, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2972, - 2973, - 2974 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 91, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 2975, - "name": "itemNumber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item number section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 114, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L114" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2976, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2977, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2978, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2979, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2980, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2981, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2982, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2983, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 156, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L156" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2984, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 162, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L162" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2985, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2986, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 174, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L174" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2987, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 114, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L114" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2988, - 2953, - 2956, - 2959, - 2970, - 2975 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2952 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L1" - } - ] - }, - { - "id": 2992, - "name": "themes/tabmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tabmenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tabmenu/)" - } - ] - }, - "children": [ - { - "id": 2993, - "name": "TabmenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3035, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3036, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3037, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3038, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3037, - 3038 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2994, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2995, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2996, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2996 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2997, - "name": "tablist", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tablist section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2998, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2999, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3000, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3001, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2999, - 3000, - 3001 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3002, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3003, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3004, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3005, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3006, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3007, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3008, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3009, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3010, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3011, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3012, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3013, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3014, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3015, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3016, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3017, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3018, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3019, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3020, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3021, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3022, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3023, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3024, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3020, - 3021, - 3022, - 3023, - 3024 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 139, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 51, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3025, - "name": "itemIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item icon section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3026, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3027, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3028, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3029, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3027, - 3028, - 3029 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 175, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 3030, - "name": "activeBar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the active bar section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 198, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L198" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3031, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3032, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3033, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Bottom of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3034, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3032, - 3033, - 3034 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 198, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L198" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3035, - 2994, - 2997, - 3002, - 3025, - 3030 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2993 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L1" - } - ] - }, - { - "id": 3039, - "name": "themes/tabs", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tabs Design Tokens\n\n[Live Demo](https://www.primeng.org/tabs/)" - } - ] - }, - "children": [ - { - "id": 3040, - "name": "TabsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3103, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3104, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3105, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3106, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3105, - 3106 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3041, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3042, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3043, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3043 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3044, - "name": "tablist", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tablist section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3045, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3046, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3047, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3048, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3046, - 3047, - 3048 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3049, - "name": "tab", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3050, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3051, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3052, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3053, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3054, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3055, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3056, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3057, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3058, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3059, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3060, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3061, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3062, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3063, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3064, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3065, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of tab" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3066, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3067, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3068, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3069, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3070, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3071, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3067, - 3068, - 3069, - 3070, - 3071 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 139, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 51, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3072, - "name": "tabpanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tabpanel section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3073, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3074, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3075, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3076, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3077, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of tabpanel" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L197" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3078, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3079, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 203, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3080, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 209, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3081, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 215, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3082, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 221, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3083, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3079, - 3080, - 3081, - 3082, - 3083 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 197, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L197" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3074, - 3075, - 3076, - 3077 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 175, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 3084, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3085, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3086, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3087, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3088, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3089, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3090, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 261, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L261" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3091, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3092, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 267, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3093, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 273, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L273" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3094, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 279, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L279" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3095, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 285, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3096, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 291, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3092, - 3093, - 3094, - 3095, - 3096 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 261, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L261" - } - ] - } - } - }, - { - "id": 3097, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3086, - 3087, - 3088, - 3089, - 3090, - 3097 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 3098, - "name": "activeBar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the active bar section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 303, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L303" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3099, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3100, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 309, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L309" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3101, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Bottom of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 315, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L315" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3102, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 321, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L321" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3100, - 3101, - 3102 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 303, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L303" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3103, - 3041, - 3044, - 3049, - 3072, - 3084, - 3098 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3040 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L1" - } - ] - }, - { - "id": 3107, - "name": "themes/tabview", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TabView Design Tokens\n\n[Live Demo](https://www.primeng.org/tabview/)" - } - ] - }, - "children": [ - { - "id": 3108, - "name": "TabViewDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3133, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3134, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3135, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3136, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3135, - 3136 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3109, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3110, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3111, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3111 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3112, - "name": "tabList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab list section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3113, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3114, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.list.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3115, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.list.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3114, - 3115 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3116, - "name": "tab", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L45" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3117, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3118, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3119, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3120, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3121, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3122, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3118, - 3119, - 3120, - 3121, - 3122 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 45, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L45" - } - ] - } - } - }, - { - "id": 3123, - "name": "tabPanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab panel section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 80, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3124, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3125, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3126, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3125, - 3126 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 80, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 3127, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3128, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3129, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3130, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3131, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3132, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3129, - 3130, - 3131, - 3132 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 97, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L97" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3133, - 3109, - 3112, - 3116, - 3123, - 3127 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3108 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L1" - } - ] - }, - { - "id": 3137, - "name": "themes/tag", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tag Design Tokens\n\n[Live Demo](https://www.primeng.org/tag/)" - } - ] - }, - "children": [ - { - "id": 3138, - "name": "TagDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3178, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3179, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3180, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3181, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3180, - 3181 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3139, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3140, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3141, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3142, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3143, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3144, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3145, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3146, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3141, - 3142, - 3143, - 3144, - 3145, - 3146 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3147, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3148, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3149, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3149 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3150, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the primary section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3152, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3153, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3152, - 3153 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 69, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3154, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3156, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3157, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3156, - 3157 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 86, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 3158, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3159, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3160, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3161, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3160, - 3161 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 103, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 3162, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3163, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3164, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3165, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3164, - 3165 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 120, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 3166, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 137, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L137" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3167, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3168, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 143, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3169, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3168, - 3169 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 137, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L137" - } - ] - } - } - }, - { - "id": 3170, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the danger section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 154, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L154" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3172, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3173, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 166, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L166" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3172, - 3173 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 154, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L154" - } - ] - } - } - }, - { - "id": 3174, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 171, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L171" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3175, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3176, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3177, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3176, - 3177 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 171, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L171" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3178, - 3139, - 3147, - 3150, - 3154, - 3158, - 3162, - 3166, - 3170, - 3174 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3138 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L1" - } - ] - }, - { - "id": 3182, - "name": "themes/terminal", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Terminal Design Tokens\n\n[Live Demo](https://www.primeng.org/terminal/)" - } - ] - }, - "children": [ - { - "id": 3183, - "name": "TerminalDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3198, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3199, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3200, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3201, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3200, - 3201 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3184, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3185, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3186, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3187, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3188, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3189, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3190, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3191, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3186, - 3187, - 3188, - 3189, - 3190, - 3191 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3192, - "name": "prompt", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the prompt section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3194, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of prompt" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.prompt.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3194 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 58, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3195, - "name": "commandResponse", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the command response section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3196, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3197, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of command response" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.command.response.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3197 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 69, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L69" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3198, - 3184, - 3192, - 3195 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3183 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L1" - } - ] - }, - { - "id": 3202, - "name": "themes/textarea", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Textarea Design Tokens\n\n[Live Demo](https://www.primeng.org/textarea/)" - } - ] - }, - "children": [ - { - "id": 3203, - "name": "TextareaDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3229, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3230, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3231, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3232, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3231, - 3232 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3204, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3205, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3206, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3207, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3208, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3209, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3210, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3211, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3212, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3213, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3214, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3215, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3216, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3217, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3218, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3219, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3220, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3221, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3222, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3223, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3224, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3225, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3226, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3227, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3223, - 3224, - 3225, - 3226, - 3227 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 3228, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3228 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3229, - 3204 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3203 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L1" - } - ] - }, - { - "id": 3233, - "name": "themes/tieredmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TieredMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tieredmenu/)" - } - ] - }, - "children": [ - { - "id": 3234, - "name": "TieredMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3277, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3278, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3279, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3280, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3279, - 3280 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3235, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3236, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3237, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3238, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3239, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3240, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3241, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3242, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3237, - 3238, - 3239, - 3240, - 3241, - 3242 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3243, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3244, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3245, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3246, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3245, - 3246 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3247, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3248, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3249, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3250, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3251, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3252, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3253, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3254, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3255, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3256, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3257, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3258, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3259, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3260, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3261, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3259, - 3260, - 3261 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 3262, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3264, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3265, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3266, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3267, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3264, - 3265, - 3266, - 3267 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 151, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 3268, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 180, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3269, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3270, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3271, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3272, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3273, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3270, - 3271, - 3272, - 3273 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 180, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" - } - ] - } - } - }, - { - "id": 3274, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 209, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3275, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3276, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3276 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 209, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3277, - 3235, - 3243, - 3247, - 3262, - 3268, - 3274 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3234 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L1" - } - ] - }, - { - "id": 3281, - "name": "themes/timeline", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Timeline Design Tokens\n\n[Live Demo](https://www.primeng.org/timeline/)" - } - ] - }, - "children": [ - { - "id": 3282, - "name": "TimelineDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3313, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3314, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3315, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3316, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3315, - 3316 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3283, - "name": "event", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3284, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3285, - "name": "minHeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min height of event" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.min.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3285 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3286, - "name": "horizontal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the horizontal section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3287, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3288, - "name": "eventContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content of horizontal" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L32" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3289, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3290, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.horizontal.event.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 38, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L38" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3290 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 32, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L32" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3288 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 28, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3291, - "name": "vertical", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the vertical section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 44, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L44" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3292, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3293, - "name": "eventContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content of vertical" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 48, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L48" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3295, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.vertical.event.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 54, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L54" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3295 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 48, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L48" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3293 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 44, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L44" - } - ] - } - } - }, - { - "id": 3296, - "name": "eventMarker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event marker section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 60, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L60" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3297, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3298, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 66, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L66" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3299, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 72, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L72" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3300, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L78" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3301, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 84, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3302, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3303, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of event marker" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L94" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3304, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3305, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content border radius of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 100, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3306, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content size of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 106, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3307, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content background of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 112, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3308, - "name": "insetShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content inset shadow of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.inset.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 118, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3305, - 3306, - 3307, - 3308 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 94, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L94" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3298, - 3299, - 3300, - 3301, - 3302, - 3303 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 60, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L60" - } - ] - } - } - }, - { - "id": 3309, - "name": "eventConnector", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event connector section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 124, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L124" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3310, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3311, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of event connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.connector.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3312, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of event connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.connector.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3311, - 3312 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 124, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L124" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3313, - 3283, - 3286, - 3291, - 3296, - 3309 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3282 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L1" - } - ] - }, - { - "id": 3317, - "name": "themes/toast", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toast Design Tokens\n\n[Live Demo](https://www.primeng.org/toast/)" - } - ] - }, - "children": [ - { - "id": 3318, - "name": "ToastDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3447, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3448, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3449, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3450, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3449, - 3450 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3319, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3320, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3321, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3322, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3323, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3324, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3321, - 3322, - 3323, - 3324 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3325, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3326, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3327, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3327 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 3328, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3329, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3330, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3331, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3330, - 3331 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 57, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 3332, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3333, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3334, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.text.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3334 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 74, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 3335, - "name": "summary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the summary section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3336, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3337, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of summary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.summary.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3338, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of summary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.summary.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3337, - 3338 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 85, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L85" - } - ] - } - } - }, - { - "id": 3339, - "name": "detail", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the detail section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 102, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L102" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3340, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3341, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of detail" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.detail.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3342, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of detail" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.detail.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 114, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3341, - 3342 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 102, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L102" - } - ] - } - } - }, - { - "id": 3343, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 119, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L119" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3344, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3345, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 125, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L125" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3346, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 131, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L131" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3347, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 137, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3348, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L141" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3349, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3350, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3351, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 153, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L153" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3352, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 159, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3350, - 3351, - 3352 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 141, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L141" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3345, - 3346, - 3347, - 3348 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 119, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L119" - } - ] - } - } - }, - { - "id": 3353, - "name": "closeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close icon section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3354, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3355, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3355 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 165, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L165" - } - ] - } - } - }, - { - "id": 3356, - "name": "blur", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the blur section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 176, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L176" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3357, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3358, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3359, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3360, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3361, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3362, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 206, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3358, - 3359, - 3360, - 3361, - 3362 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 176, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L176" - } - ] - } - } - }, - { - "id": 3363, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 211, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L211" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3364, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3365, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3366, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3367, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3368, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3369, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 241, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L241" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3370, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of info" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L245" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3372, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 251, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3373, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of info" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 255, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L255" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3374, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3375, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 261, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3376, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 267, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3375, - 3376 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 255, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L255" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3372, - 3373 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 245, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L245" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3365, - 3366, - 3367, - 3368, - 3369, - 3370 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 211, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L211" - } - ] - } - } - }, - { - "id": 3377, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 274, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L274" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3378, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3379, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L280" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3380, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 286, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L286" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3381, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 292, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L292" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3382, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3383, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3384, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of success" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 308, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3385, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3386, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 314, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3387, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of success" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 318, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L318" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3388, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3389, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 324, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L324" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3390, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 330, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L330" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3389, - 3390 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 318, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L318" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3386, - 3387 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 308, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L308" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3379, - 3380, - 3381, - 3382, - 3383, - 3384 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 274, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L274" - } - ] - } - } - }, - { - "id": 3391, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 337, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L337" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3393, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3394, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3395, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 355, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L355" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3396, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 361, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3397, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 367, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L367" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3398, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of warn" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 371, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L371" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3399, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3400, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 377, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3401, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of warn" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 381, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L381" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3402, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3403, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 387, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L387" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3404, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 393, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L393" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3403, - 3404 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 381, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L381" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3400, - 3401 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 371, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L371" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3393, - 3394, - 3395, - 3396, - 3397, - 3398 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 337, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L337" - } - ] - } - } - }, - { - "id": 3405, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 400, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L400" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3406, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3407, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 406, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L406" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3408, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 412, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L412" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3409, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 418, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L418" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3410, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 424, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L424" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3411, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 430, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L430" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3412, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of error" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 434, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L434" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3413, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3414, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 440, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L440" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3415, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of error" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 444, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L444" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3416, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3417, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 450, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L450" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3418, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 456, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L456" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3417, - 3418 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 444, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L444" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3414, - 3415 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 434, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L434" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3407, - 3408, - 3409, - 3410, - 3411, - 3412 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 400, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L400" - } - ] - } - } - }, - { - "id": 3419, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 463, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L463" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3420, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3421, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 469, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L469" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3422, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 475, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L475" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3423, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 481, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L481" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3424, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 487, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L487" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3425, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 493, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L493" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3426, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of secondary" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 497, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L497" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3427, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3428, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 503, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L503" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3429, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of secondary" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 507, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L507" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3431, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 513, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3432, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 519, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L519" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3431, - 3432 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 507, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L507" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3428, - 3429 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 497, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L497" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3421, - 3422, - 3423, - 3424, - 3425, - 3426 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 463, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L463" - } - ] - } - } - }, - { - "id": 3433, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 526, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L526" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3434, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3435, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 532, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L532" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3436, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 538, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L538" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3437, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 544, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L544" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3438, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 550, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L550" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3439, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 556, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L556" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3440, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of contrast" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 560, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L560" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3442, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 566, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L566" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3443, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of contrast" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 570, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L570" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3444, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 576, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L576" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3446, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 582, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L582" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3445, - 3446 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 570, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L570" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3442, - 3443 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 560, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L560" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3435, - 3436, - 3437, - 3438, - 3439, - 3440 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 526, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L526" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3447, - 3319, - 3325, - 3328, - 3332, - 3335, - 3339, - 3343, - 3353, - 3356, - 3363, - 3377, - 3391, - 3405, - 3419, - 3433 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3318 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L1" - } - ] - }, - { - "id": 3451, - "name": "themes/togglebutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ToggleButton Design Tokens\n\n[Live Demo](https://www.primeng.org/togglebutton/)" - } - ] - }, - "children": [ - { - "id": 3452, - "name": "ToggleButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3491, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3492, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3493, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3494, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3493, - 3494 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3453, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3454, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3455, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3456, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3457, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3458, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3459, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3460, - "name": "disabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3461, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3462, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3463, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3464, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3465, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3466, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3467, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 87, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3468, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 93, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3469, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 99, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3465, - 3466, - 3467, - 3468, - 3469 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 69, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3470, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3471, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3472, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3473, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 124, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L124" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3474, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3475, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3476, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 142, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L142" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3477, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3478, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3479, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 159, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L159" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3480, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3481, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3483, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3484, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3481, - 3482, - 3483, - 3484 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 159, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L159" - } - ] - } - } - }, - { - "id": 3485, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 188, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L188" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3486, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3487, - "name": "left", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Left of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.left" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3488, - "name": "top", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Top of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.top" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3489, - "name": "checkedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked shadow of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.checked.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 206, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3490, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 212, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3487, - 3488, - 3489, - 3490 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 188, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L188" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3491, - 3453, - 3479, - 3485 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3452 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L1" - } - ] - }, - { - "id": 3495, - "name": "themes/toggleswitch", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ToggleSwitch Design Tokens\n\n[Live Demo](https://www.primeng.org/toggleswitch/)" - } - ] - }, - "children": [ - { - "id": 3496, - "name": "ToggleSwitchDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3533, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3534, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3535, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3536, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3535, - 3536 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3497, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3498, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3499, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3500, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3501, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3502, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3503, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3504, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3505, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3506, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3507, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3508, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3509, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3510, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3506, - 3507, - 3508, - 3509, - 3510 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 51, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3511, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3512, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3513, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3514, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3515, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3516, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3517, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 124, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L124" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3518, - "name": "slideDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Slide duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.slide.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3519, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3520, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 142, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L142" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3521, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3522, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3523, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3524, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3525, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3526, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3527, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3528, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3529, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 189, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3530, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3531, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 201, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3532, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 207, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 165, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3533, - 3497, - 3524 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3496 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L1" - } - ] - }, - { - "id": 3537, - "name": "themes/toolbar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toolbar Design Tokens\n\n[Live Demo](https://www.primeng.org/toolbar/)" - } - ] - }, - "children": [ - { - "id": 3538, - "name": "ToolbarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3547, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3548, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3549, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3550, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3549, - 3550 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3539, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3541, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3542, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3543, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3544, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3545, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3546, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3541, - 3542, - 3543, - 3544, - 3545, - 3546 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3547, - 3539 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3538 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L1" - } - ] - }, - { - "id": 3551, - "name": "themes/tooltip", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tooltip Design Tokens\n\n[Live Demo](https://www.primeng.org/tooltip/)" - } - ] - }, - "children": [ - { - "id": 3552, - "name": "TooltipDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3562, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3563, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3564, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3565, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3564, - 3565 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3553, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3554, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3555, - "name": "maxWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Max width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.max.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3556, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3557, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3558, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3559, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3560, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3561, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3562, - 3553 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3552 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L1" - } - ] - }, - { - "id": 3566, - "name": "themes/tree", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tree Design Tokens\n\n[Live Demo](https://www.primeng.org/tree/)" - } - ] - }, - "children": [ - { - "id": 3567, - "name": "TreeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3617, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3618, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3619, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3620, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3619, - 3620 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3568, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3569, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3570, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3571, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3572, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3573, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3574, - "name": "indent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Indent of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3575, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3570, - 3571, - 3572, - 3573, - 3574, - 3575 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3576, - "name": "node", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3577, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3578, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3579, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3580, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3581, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3582, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3583, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3584, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3585, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L104" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3586, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3587, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 110, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3588, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 116, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3589, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 122, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3590, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3591, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3587, - 3588, - 3589, - 3590, - 3591 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 104, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L104" - } - ] - } - } - }, - { - "id": 3592, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3592 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3593, - "name": "nodeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node icon section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 146, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L146" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3594, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3595, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3596, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3597, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3595, - 3596, - 3597 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 146, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L146" - } - ] - } - } - }, - { - "id": 3598, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 169, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L169" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3599, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3600, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3601, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3602, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3603, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3604, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3605, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3606, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3607, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L215" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3608, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3609, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 221, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3610, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3611, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 233, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3612, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 239, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3613, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 245, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3609, - 3610, - 3611, - 3612, - 3613 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 215, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L215" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 169, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L169" - } - ] - } - } - }, - { - "id": 3614, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 251, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L251" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3615, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3616, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3616 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 251, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L251" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3617, - 3568, - 3576, - 3593, - 3598, - 3614 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3567 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L1" - } - ] - }, - { - "id": 3621, - "name": "themes/treeselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TreeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/treeselect/)" - } - ] - }, - "children": [ - { - "id": 3622, - "name": "TreeSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3668, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3669, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3670, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3671, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3670, - 3671 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3623, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3624, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3625, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3626, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3627, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3628, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3629, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3630, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3631, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3632, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3633, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3634, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3635, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3636, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3637, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3638, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3639, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3640, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3641, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3642, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3643, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3644, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3645, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3646, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3642, - 3643, - 3644, - 3645, - 3646 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 3647, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3647 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3648, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3649, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3650, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3651, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3650, - 3651 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 3652, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3653, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3654, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3655, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3656, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3657, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3658, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3654, - 3655, - 3656, - 3657, - 3658 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 3659, - "name": "tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tree section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3660, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3661, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tree" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.tree.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3661 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 3662, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 216, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L216" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3663, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3664, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3664 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 216, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L216" - } - ] - } - } - }, - { - "id": 3665, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 227, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L227" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3666, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3667, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 233, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3667 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 227, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L227" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3668, - 3623, - 3648, - 3652, - 3659, - 3662, - 3665 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3622 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L1" - } - ] - }, - { - "id": 3672, - "name": "themes/treetable", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TreeTable Design Tokens\n\n[Live Demo](https://www.primeng.org/treetable/)" - } - ] - }, - "children": [ - { - "id": 3673, - "name": "TreeTableDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3786, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3787, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3788, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3789, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3788, - 3789 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3674, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3675, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3676, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3677, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3676, - 3677 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3678, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3679, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3680, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3681, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3682, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3683, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3684, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3680, - 3681, - 3682, - 3683, - 3684 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 3685, - "name": "headerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3686, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3687, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3688, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3689, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3690, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3691, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3692, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3693, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3694, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3695, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3696, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of header cell" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3697, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3698, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3699, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3700, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3701, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3702, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3698, - 3699, - 3700, - 3701, - 3702 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 127, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 69, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3703, - "name": "columnTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column title section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3704, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3705, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3705 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 163, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L163" - } - ] - } - } - }, - { - "id": 3706, - "name": "row", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 174, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L174" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3707, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3708, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3709, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3710, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3711, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3712, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3713, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3714, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 214, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L214" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3715, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3716, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 220, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L220" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3717, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 226, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L226" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3718, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 232, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3719, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 238, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3720, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 244, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L244" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3716, - 3717, - 3718, - 3719, - 3720 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 214, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L214" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 174, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L174" - } - ] - } - } - }, - { - "id": 3721, - "name": "bodyCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 250, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L250" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3722, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3723, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3724, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3725, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3726, - "name": "selectedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.selected.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3723, - 3724, - 3725, - 3726 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 250, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L250" - } - ] - } - } - }, - { - "id": 3727, - "name": "footerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3728, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3729, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3730, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3731, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3732, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3729, - 3730, - 3731, - 3732 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 3733, - "name": "columnFooter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column footer section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 308, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3734, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3735, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.footer.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 314, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3735 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 308, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L308" - } - ] - } - } - }, - { - "id": 3736, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 319, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L319" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3738, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3739, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3740, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3741, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3742, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3738, - 3739, - 3740, - 3741, - 3742 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 319, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L319" - } - ] - } - } - }, - { - "id": 3743, - "name": "columnResizerWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column resizer width section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 354, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L354" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3744, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3745, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3746, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 366, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L366" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3747, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 372, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L372" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3748, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 378, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L378" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3749, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 384, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L384" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3750, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 390, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L390" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3745, - 3746, - 3747, - 3748, - 3749, - 3750 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 354, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L354" - } - ] - } - } - }, - { - "id": 3751, - "name": "resizeIndicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the resize indicator section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 395, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L395" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3752, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3753, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.resize.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 401, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3754, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.resize.indicator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 407, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3753, - 3754 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 395, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L395" - } - ] - } - } - }, - { - "id": 3755, - "name": "sortIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sort icon section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 412, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L412" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3756, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3757, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.sort.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 418, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L418" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3758, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.sort.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 424, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L424" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3757, - 3758 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 412, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L412" - } - ] - } - } - }, - { - "id": 3759, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 429, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L429" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3760, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3761, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 435, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L435" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3761 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 429, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L429" - } - ] - } - } - }, - { - "id": 3762, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 440, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L440" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3763, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3764, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 446, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L446" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3765, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 452, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L452" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3766, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 458, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L458" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3767, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 464, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L464" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3768, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 470, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L470" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3769, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 476, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L476" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3770, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 482, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L482" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3771, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 486, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L486" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3772, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3773, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 492, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L492" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3774, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 498, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L498" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3775, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 504, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L504" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3776, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 510, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L510" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3777, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 516, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L516" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3773, - 3774, - 3775, - 3776, - 3777 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 486, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L486" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 440, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L440" - } - ] - } - } - }, - { - "id": 3778, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 522, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L522" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3780, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 528, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L528" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3781, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 534, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L534" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3780, - 3781 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 522, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L522" - } - ] - } - } - }, - { - "id": 3782, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 539, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L539" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3784, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 545, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L545" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3785, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 551, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L551" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3784, - 3785 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 539, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L539" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3786, - 3674, - 3678, - 3685, - 3703, - 3706, - 3721, - 3727, - 3733, - 3736, - 3743, - 3751, - 3755, - 3759, - 3762, - 3778, - 3782 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3673 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L1" - } - ] - }, - { - "id": 3790, - "name": "themes/scroller", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "VirtualScroller Design Tokens\n\n[Live Demo](https://www.primeng.org/virtualscroller/)" - } - ] - }, - "children": [ - { - "id": 3791, - "name": "VirtualScrollerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3799, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3800, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3801, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3802, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3801, - 3802 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3792, - "name": "loaderMask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mask section" - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3794, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of loader mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3795, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of loader mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3794, - 3795 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 17, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3796, - "name": "loaderIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loader icon section" - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3797, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3798, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of the loader icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3798 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 34, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3799, - 3792, - 3796 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3791 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L1" - } - ] - } - ], - "groups": [ - { - "title": "Modules", - "children": [ - 1, - 56, - 141, - 168, - 228, - 237, - 269, - 527, - 553, - 584, - 646, - 686, - 720, - 750, - 763, - 790, - 832, - 1007, - 1051, - 1175, - 1203, - 1230, - 1254, - 1277, - 1305, - 1342, - 1382, - 1421, - 1433, - 1546, - 1555, - 1603, - 1681, - 1734, - 1756, - 1792, - 1804, - 1827, - 1868, - 1893, - 1952, - 2034, - 2073, - 2139, - 2252, - 2279, - 2352, - 2364, - 2407, - 2419, - 2457, - 2489, - 2534, - 2564, - 2576, - 2594, - 2613, - 2625, - 2663, - 2679, - 2688, - 2709, - 2786, - 2796, - 2807, - 2846, - 2856, - 2867, - 2894, - 2951, - 2992, - 3039, - 3107, - 3137, - 3182, - 3202, - 3233, - 3281, - 3317, - 3451, - 3495, - 3537, - 3551, - 3566, - 3621, - 3672, - 3790 - ] - } - ], - "packageName": "primeng", - "packageVersion": "18.0.0-beta.1", - "readme": [ - { - "kind": "text", - "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." - } - ], - "symbolIdMap": { - "1": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "" - }, - "2": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens" - }, - "3": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.root" - }, - "4": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "5": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.transitionDuration" - }, - "6": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.panel" - }, - "7": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "8": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "9": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "10": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.header" - }, - "11": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "12": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "13": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "14": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" - }, - "15": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.padding" - }, - "16": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.fontWeight" - }, - "17": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderRadius" - }, - "18": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "19": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "20": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.background" - }, - "21": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverBackground" - }, - "22": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBackground" - }, - "23": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverBackground" - }, - "24": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.focusRing" - }, - "25": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "26": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.width" - }, - "27": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.style" - }, - "28": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "29": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.offset" - }, - "30": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.shadow" - }, - "31": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.toggleIcon" - }, - "32": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "33": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "34": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "35": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" - }, - "36": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverColor" - }, - "37": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.first" - }, - "38": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "39": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.topBorderRadius" - }, - "40": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "41": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.last" - }, - "42": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "43": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.bottomBorderRadius" - }, - "44": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBottomBorderRadius" - }, - "45": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.content" - }, - "46": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "47": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "48": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "49": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.background" - }, - "50": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "51": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.padding" - }, - "52": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "53": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "54": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "55": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "56": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "" - }, - "57": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens" - }, - "58": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.root" - }, - "59": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "60": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "61": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "62": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "63": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "64": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "65": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "66": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "67": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "68": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "69": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "70": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "71": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "72": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "73": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "74": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "75": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "76": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "77": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "78": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.style" - }, - "79": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "80": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.offset" - }, - "81": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "82": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "83": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.overlay" - }, - "84": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "85": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "86": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "87": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "88": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "89": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "90": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.list" - }, - "91": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "92": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "93": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.gap" - }, - "94": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.option" - }, - "95": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "96": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "97": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "98": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "99": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "100": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "101": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "102": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "103": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "104": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "105": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.optionGroup" - }, - "106": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "107": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "108": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "109": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "110": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "111": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.dropdown" - }, - "112": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "113": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "114": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "115": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "116": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "117": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "118": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "119": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "120": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "121": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.style" - }, - "122": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "123": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.offset" - }, - "124": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "125": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "126": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "127": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "128": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "129": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "130": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "131": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.chip" - }, - "132": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "133": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "134": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.emptyMessage" - }, - "135": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "136": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "137": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "138": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "139": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "140": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "141": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "" - }, - "142": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens" - }, - "143": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.root" - }, - "144": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "145": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "146": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "147": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "148": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.background" - }, - "149": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "150": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.group" - }, - "151": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "152": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "153": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.offset" - }, - "154": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.lg" - }, - "155": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "156": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "157": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "158": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "159": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.xl" - }, - "160": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "161": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "162": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "163": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "164": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "165": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "166": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "167": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "168": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "" - }, - "169": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens" - }, - "170": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.root" - }, - "171": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "172": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "173": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.padding" - }, - "174": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "175": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "176": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "177": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "178": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.dot" - }, - "179": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "180": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.size" - }, - "181": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.sm" - }, - "182": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "183": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "184": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "185": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "186": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.lg" - }, - "187": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "188": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "189": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "190": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "191": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.xl" - }, - "192": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "193": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "194": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "195": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "196": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.primary" - }, - "197": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "198": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "199": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "200": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.secondary" - }, - "201": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "202": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "203": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "204": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.success" - }, - "205": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "206": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "207": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "208": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.info" - }, - "209": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "210": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "211": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "212": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.warn" - }, - "213": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "214": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "215": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "216": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.danger" - }, - "217": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "218": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "219": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "220": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.contrast" - }, - "221": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "222": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "223": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "224": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "225": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "226": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "227": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "228": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "" - }, - "229": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "BlockUIDesignTokens" - }, - "230": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "BlockUIDesignTokens.root" - }, - "231": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "__type" - }, - "232": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "233": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "234": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "235": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "236": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "237": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "" - }, - "238": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens" - }, - "239": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.root" - }, - "240": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "241": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.padding" - }, - "242": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.background" - }, - "243": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.gap" - }, - "244": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "245": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.item" - }, - "246": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "247": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "248": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "249": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "250": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.gap" - }, - "251": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.icon" - }, - "252": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "253": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "254": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "255": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "256": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "257": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.width" - }, - "258": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.style" - }, - "259": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "260": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.offset" - }, - "261": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "262": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.separator" - }, - "263": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "264": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "265": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "266": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "267": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "268": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "269": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "" - }, - "270": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens" - }, - "271": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.root" - }, - "272": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "273": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "274": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "275": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.gap" - }, - "276": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "277": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "278": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.iconOnlyWidth" - }, - "279": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.sm" - }, - "280": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "281": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "282": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "283": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "284": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.lg" - }, - "285": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "286": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "287": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "288": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "289": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.label" - }, - "290": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "291": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "292": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.raisedShadow" - }, - "293": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "294": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "295": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.width" - }, - "296": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.style" - }, - "297": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.offset" - }, - "298": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.badgeSize" - }, - "299": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "300": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "301": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "302": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "303": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "304": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "305": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "306": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "307": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "308": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "309": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "310": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "311": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "312": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "313": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "314": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "315": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "316": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "317": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "318": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "319": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "320": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "321": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "322": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "323": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "324": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "325": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "326": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "327": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "328": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "329": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "330": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "331": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "332": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "333": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "334": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "335": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "336": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "337": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "338": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "339": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "340": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "341": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "342": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "343": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "344": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "345": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "346": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "347": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "348": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "349": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "350": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "351": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "352": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "353": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "354": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "355": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "356": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "357": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "358": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "359": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "360": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "361": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "362": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "363": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "364": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "365": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "366": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "367": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "368": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "369": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "370": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "371": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "372": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "373": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "374": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "375": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "376": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "377": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "378": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "379": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "380": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "381": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "382": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "383": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "384": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "385": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "386": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "387": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "388": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "389": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "390": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "391": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "392": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "393": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "394": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "395": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "396": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "397": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "398": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "399": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "400": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "401": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "402": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "403": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "404": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "405": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.contrast" - }, - "406": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "407": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "408": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "409": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "410": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "411": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "412": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "413": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "414": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "415": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "416": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "417": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "418": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "419": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "420": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.outlined" - }, - "421": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "422": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "423": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "424": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "425": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "426": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "427": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "428": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "429": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "430": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "431": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "432": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "433": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "434": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "435": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "436": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "437": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "438": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "439": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "440": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "441": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "442": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "443": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "444": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "445": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "446": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "447": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "448": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "449": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "450": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "451": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "452": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "453": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "454": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "455": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "456": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "457": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "458": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "459": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "460": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "461": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "462": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "463": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "464": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.contrast" - }, - "465": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "466": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "467": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "468": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "469": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "470": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.plain" - }, - "471": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "472": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "473": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "474": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "475": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "476": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.text" - }, - "477": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "478": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "479": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "480": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "481": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "482": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "483": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "484": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "485": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "486": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "487": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "488": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "489": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "490": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "491": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "492": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "493": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "494": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "495": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "496": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "497": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "498": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "499": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "500": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "501": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "502": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "503": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "504": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "505": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "506": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "507": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "508": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "509": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "510": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "511": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "512": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "513": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.plain" - }, - "514": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "515": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "516": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "517": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "518": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.link" - }, - "519": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "520": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "521": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "522": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "523": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "524": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "525": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "526": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "527": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "" - }, - "528": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens" - }, - "529": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.root" - }, - "530": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "531": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.background" - }, - "532": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "533": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.color" - }, - "534": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "535": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.body" - }, - "536": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "537": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.padding" - }, - "538": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.gap" - }, - "539": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.caption" - }, - "540": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "541": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.gap" - }, - "542": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.title" - }, - "543": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "544": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "545": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "546": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.subtitle" - }, - "547": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "548": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.color" - }, - "549": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "550": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "551": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "552": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "553": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "" - }, - "554": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens" - }, - "555": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.root" - }, - "556": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "557": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "558": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.content" - }, - "559": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "560": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.gap" - }, - "561": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.indicatorList" - }, - "562": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "563": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "564": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.gap" - }, - "565": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.indicator" - }, - "566": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "567": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.width" - }, - "568": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.height" - }, - "569": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "570": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "571": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "572": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.width" - }, - "573": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.style" - }, - "574": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.color" - }, - "575": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.offset" - }, - "576": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "577": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.background" - }, - "578": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "579": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "580": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "581": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "582": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "583": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "584": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "" - }, - "585": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens" - }, - "586": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.root" - }, - "587": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "588": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "589": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "590": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "591": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "592": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "593": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "594": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "595": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "596": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "597": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "598": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "599": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "600": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "601": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "602": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "603": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "604": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "605": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "606": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "607": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "608": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "609": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "610": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "611": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.dropdown" - }, - "612": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "613": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "614": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "615": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.overlay" - }, - "616": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "617": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "618": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "619": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "620": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "621": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "622": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.list" - }, - "623": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "624": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "625": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "626": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.option" - }, - "627": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "628": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "629": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "630": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "631": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "632": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "633": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "634": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "635": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "636": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "637": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.icon" - }, - "638": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "639": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "640": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "641": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.size" - }, - "642": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "643": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "644": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "645": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "646": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "" - }, - "647": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens" - }, - "648": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens.root" - }, - "649": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "650": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "651": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "652": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.height" - }, - "653": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "654": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "655": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "656": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "657": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "658": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "659": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "660": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "661": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "662": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "663": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedFocusBorderColor" - }, - "664": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedDisabledBorderColor" - }, - "665": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "666": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "667": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "668": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "669": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "670": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.style" - }, - "671": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "672": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.offset" - }, - "673": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "674": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "675": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens.icon" - }, - "676": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "677": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.size" - }, - "678": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "679": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "680": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverColor" - }, - "681": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "682": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "683": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "684": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "685": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "686": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "" - }, - "687": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens" - }, - "688": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.root" - }, - "689": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "690": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "691": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "692": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "693": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.gap" - }, - "694": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "695": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.background" - }, - "696": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "697": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.image" - }, - "698": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "699": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.width" - }, - "700": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.height" - }, - "701": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.icon" - }, - "702": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "703": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.size" - }, - "704": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "705": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.removeIcon" - }, - "706": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "707": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.size" - }, - "708": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "709": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "710": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.width" - }, - "711": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.style" - }, - "712": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "713": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.offset" - }, - "714": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "715": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "716": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "717": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "718": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "719": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "720": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "" - }, - "721": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens" - }, - "722": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.root" - }, - "723": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "724": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "725": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.preview" - }, - "726": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "727": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "728": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.height" - }, - "729": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "730": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "731": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "732": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "733": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "734": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "735": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "736": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "737": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.panel" - }, - "738": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "739": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "740": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "741": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "742": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "743": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.handle" - }, - "744": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "745": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "746": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "747": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "748": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "749": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "750": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "" - }, - "751": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens" - }, - "752": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens.icon" - }, - "753": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type" - }, - "754": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.size" - }, - "755": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "756": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens.content" - }, - "757": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type" - }, - "758": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "759": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "760": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "761": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "762": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "763": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "" - }, - "764": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens" - }, - "765": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.root" - }, - "766": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "767": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.background" - }, - "768": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "769": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.color" - }, - "770": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "771": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "772": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "773": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.arrowOffset" - }, - "774": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.content" - }, - "775": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "776": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.padding" - }, - "777": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "778": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.icon" - }, - "779": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "780": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.size" - }, - "781": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.color" - }, - "782": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.footer" - }, - "783": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "784": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "785": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.padding" - }, - "786": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "787": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "790": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "" - }, - "791": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens" - }, - "792": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.root" - }, - "793": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "794": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "795": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "796": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "797": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "798": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "799": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "800": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.list" - }, - "801": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "802": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "803": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "804": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.item" - }, - "805": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "806": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "807": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "808": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "809": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "810": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "811": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "812": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "813": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "814": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "815": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "816": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "817": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "818": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "819": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.submenuIcon" - }, - "820": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "821": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "822": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "823": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "824": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "825": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.separator" - }, - "826": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "827": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "828": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "829": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "830": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "831": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "832": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "" - }, - "833": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens" - }, - "834": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.root" - }, - "835": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "836": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "837": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "838": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.header" - }, - "839": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "840": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "841": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "842": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "843": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "844": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "845": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.headerCell" - }, - "846": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "847": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "848": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "849": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "850": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "851": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "852": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "853": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "854": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "855": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "856": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "857": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "858": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "859": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "860": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "861": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "862": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "863": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnTitle" - }, - "864": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "865": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "866": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.row" - }, - "867": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "868": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "869": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "870": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "871": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "872": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "873": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "874": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "875": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "876": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "877": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "878": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "879": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "880": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "881": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.stripedBackground" - }, - "882": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.bodyCell" - }, - "883": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "884": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "885": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "886": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBorderColor" - }, - "887": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.footerCell" - }, - "888": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "889": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "890": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "891": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "892": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "893": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnFooter" - }, - "894": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "895": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "896": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.footer" - }, - "897": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "898": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "899": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "900": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "901": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "902": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "903": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.dropPointColor" - }, - "904": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "905": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.0" - }, - "906": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.1" - }, - "907": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.2" - }, - "908": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.3" - }, - "909": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.4" - }, - "910": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.5" - }, - "911": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.6" - }, - "912": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.7" - }, - "913": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.8" - }, - "914": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.9" - }, - "915": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.10" - }, - "916": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.11" - }, - "917": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.12" - }, - "918": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.13" - }, - "919": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.14" - }, - "920": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnResizerWidth" - }, - "921": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "922": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.0" - }, - "923": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.1" - }, - "924": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.2" - }, - "925": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.3" - }, - "926": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.4" - }, - "927": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.5" - }, - "928": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.resizeIndicator" - }, - "929": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "930": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "931": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "932": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.sortIcon" - }, - "933": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "934": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "935": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "936": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.loadingIcon" - }, - "937": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "938": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.size" - }, - "939": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.rowToggleButton" - }, - "940": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "941": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "942": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" - }, - "943": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "944": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "945": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" - }, - "946": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.size" - }, - "947": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "948": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "949": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "950": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "951": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "952": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "953": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "954": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "955": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.filter" - }, - "956": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "957": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.inlineGap" - }, - "958": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.overlaySelect" - }, - "959": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "960": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "961": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "962": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "963": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "964": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "965": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.overlayPopover" - }, - "966": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "967": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "968": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "969": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "970": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "971": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "972": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "973": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "974": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.rule" - }, - "975": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "976": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "977": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.constraintList" - }, - "978": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "979": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "980": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "981": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.constraint" - }, - "982": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "983": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "984": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "985": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "986": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "987": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "988": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "989": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "990": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.separator" - }, - "991": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "992": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "993": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "994": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "995": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.paginatorTop" - }, - "996": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "997": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "998": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "999": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.paginatorBottom" - }, - "1000": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "1001": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1002": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1003": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1004": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1005": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1006": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1007": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "" - }, - "1008": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens" - }, - "1009": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.root" - }, - "1010": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1011": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1012": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1013": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1014": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1015": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.header" - }, - "1016": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1017": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1018": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1019": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1020": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1021": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1022": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1023": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.content" - }, - "1024": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1025": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1026": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1027": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1028": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1029": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1030": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1031": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.footer" - }, - "1032": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1033": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1034": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1035": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1036": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1037": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1038": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1039": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.paginatorTop" - }, - "1040": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1041": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1042": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1043": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.paginatorBottom" - }, - "1044": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1045": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1046": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1047": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1048": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1049": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1050": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1051": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "" - }, - "1052": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens" - }, - "1053": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.root" - }, - "1054": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1055": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1056": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.panel" - }, - "1057": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1058": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1059": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1060": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1061": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1062": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1063": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1064": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.header" - }, - "1065": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1066": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1067": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1068": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1069": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1070": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1071": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1072": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.title" - }, - "1073": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1074": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1075": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1076": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.dropdown" - }, - "1077": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1078": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1079": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1080": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1081": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "1082": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1083": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1084": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1085": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1086": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "1087": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1088": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1089": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1090": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1091": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1092": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1093": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1094": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1095": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1096": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.inputIcon" - }, - "1097": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1098": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1099": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.selectMonth" - }, - "1100": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1101": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1102": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1103": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1104": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1105": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1106": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.selectYear" - }, - "1107": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1108": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1109": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1110": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1111": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1112": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1113": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.group" - }, - "1114": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1115": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1116": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1117": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.dayView" - }, - "1118": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1119": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1120": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.weekDay" - }, - "1121": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1122": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1123": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1124": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1125": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.date" - }, - "1126": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1127": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1128": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "1129": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.rangeSelectedBackground" - }, - "1130": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1131": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1132": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "1133": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.rangeSelectedColor" - }, - "1134": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1135": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.height" - }, - "1136": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1137": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1138": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1139": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1140": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1141": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "1142": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1143": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1144": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1145": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.monthView" - }, - "1146": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1147": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1148": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.month" - }, - "1149": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1150": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1151": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.yearView" - }, - "1152": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1153": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1154": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.year" - }, - "1155": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1156": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1157": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.buttonbar" - }, - "1158": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1159": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1160": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1161": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.timePicker" - }, - "1162": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1163": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1164": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1165": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1166": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.buttonGap" - }, - "1167": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.today" - }, - "1168": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1169": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1170": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1171": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1172": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1173": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1174": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1175": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "" - }, - "1176": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens" - }, - "1177": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.root" - }, - "1178": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1179": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.background" - }, - "1180": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1181": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "1182": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1183": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1184": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.header" - }, - "1185": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1186": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1187": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1188": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.title" - }, - "1189": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1190": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1191": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1192": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.content" - }, - "1193": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1194": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1195": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.footer" - }, - "1196": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1197": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1198": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1199": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1200": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1201": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1202": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1203": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "" - }, - "1204": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens" - }, - "1205": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.root" - }, - "1206": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1207": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1208": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.content" - }, - "1209": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1210": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.background" - }, - "1211": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.color" - }, - "1212": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.horizontal" - }, - "1213": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1214": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1215": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1216": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.content" - }, - "1217": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1218": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1219": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.vertical" - }, - "1220": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1221": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1222": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1223": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.content" - }, - "1224": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1225": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1226": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1227": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1228": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1229": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1230": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "" - }, - "1231": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens" - }, - "1232": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens.root" - }, - "1233": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1234": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.background" - }, - "1235": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1236": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1237": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1238": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens.item" - }, - "1239": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1240": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1241": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1242": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.size" - }, - "1243": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1244": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1245": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.width" - }, - "1246": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.style" - }, - "1247": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.color" - }, - "1248": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1249": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1250": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1251": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1252": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1253": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1254": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "" - }, - "1255": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens" - }, - "1256": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.root" - }, - "1257": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1258": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.background" - }, - "1259": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1260": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.color" - }, - "1261": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1262": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1263": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.header" - }, - "1264": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1265": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1266": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.title" - }, - "1267": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1268": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1269": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1270": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.content" - }, - "1271": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1272": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1273": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1274": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1275": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1276": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1277": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "" - }, - "1278": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens" - }, - "1279": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.root" - }, - "1280": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1281": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.background" - }, - "1282": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1283": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "1284": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1285": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1286": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.header" - }, - "1287": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1288": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1289": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1290": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.title" - }, - "1291": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1292": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1293": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1294": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.content" - }, - "1295": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1296": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1297": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.footer" - }, - "1298": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1299": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1300": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1301": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1302": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1303": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1304": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1305": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "" - }, - "1306": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens" - }, - "1307": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.toolbar" - }, - "1308": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1309": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1310": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1311": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1312": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.toolbarItem" - }, - "1313": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1314": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1315": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1316": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1317": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.overlay" - }, - "1318": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1319": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1320": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1321": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1322": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1323": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1324": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1325": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.overlayOption" - }, - "1326": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1327": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1328": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1329": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1330": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1331": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1332": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.content" - }, - "1333": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1334": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1335": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1336": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1337": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1338": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1339": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1340": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1341": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1342": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "" - }, - "1343": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens" - }, - "1344": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.root" - }, - "1345": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1346": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.background" - }, - "1347": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1348": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1349": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1350": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1351": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1352": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.legend" - }, - "1353": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1354": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.background" - }, - "1355": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1356": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1357": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1358": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1359": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1360": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1361": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1362": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1363": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1364": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1365": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1366": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.width" - }, - "1367": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.style" - }, - "1368": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1369": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1370": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1371": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.toggleIcon" - }, - "1372": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1373": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1374": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1375": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.content" - }, - "1376": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1377": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1378": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1379": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1380": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1381": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1382": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "" - }, - "1383": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens" - }, - "1384": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.root" - }, - "1385": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1386": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.background" - }, - "1387": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1388": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.color" - }, - "1389": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1390": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1391": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.header" - }, - "1392": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1393": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.background" - }, - "1394": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.color" - }, - "1395": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1396": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1397": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1398": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1399": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.content" - }, - "1400": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1401": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.highlightBorderColor" - }, - "1402": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1403": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.file" - }, - "1404": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1405": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1406": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1407": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1408": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.info" - }, - "1409": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1410": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1411": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.progressbar" - }, - "1412": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1413": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.height" - }, - "1414": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.basic" - }, - "1415": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1416": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1417": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1418": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1419": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1420": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1421": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "" - }, - "1422": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "FloatLabelDesignTokens" - }, - "1423": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "FloatLabelDesignTokens.root" - }, - "1424": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type" - }, - "1425": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.color" - }, - "1426": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1427": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.invalidColor" - }, - "1428": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1429": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1430": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1431": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1432": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1433": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "" - }, - "1434": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens" - }, - "1435": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.root" - }, - "1436": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1437": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1438": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1439": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1440": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1441": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.navButton" - }, - "1442": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1443": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1444": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1445": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1446": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1447": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1448": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1449": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.prev" - }, - "1450": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1451": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1452": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.next" - }, - "1453": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1454": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1455": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1456": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1457": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1458": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1459": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1460": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1461": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1462": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.navIcon" - }, - "1463": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1464": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1465": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailsContent" - }, - "1466": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1467": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1468": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1469": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailNavButton" - }, - "1470": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1471": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1472": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1473": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1474": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1475": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1476": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1477": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1478": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1479": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1480": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1481": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1482": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1483": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1484": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailNavButtonIcon" - }, - "1485": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1486": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1487": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.caption" - }, - "1488": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1489": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1490": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1491": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1492": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.indicatorList" - }, - "1493": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1494": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1495": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1496": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.indicatorButton" - }, - "1497": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1498": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1499": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.height" - }, - "1500": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1501": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1502": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1503": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1504": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1505": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1506": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1507": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1508": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1509": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1510": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1511": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.insetIndicatorList" - }, - "1512": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1513": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1514": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.insetIndicatorButton" - }, - "1515": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1516": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1517": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1518": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1519": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.mask" - }, - "1520": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1521": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1522": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1523": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.closeButton" - }, - "1524": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1525": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1526": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1527": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1528": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1529": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1530": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1531": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1532": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1533": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1534": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1535": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1536": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1537": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1538": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1539": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.closeButtonIcon" - }, - "1540": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1541": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1542": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1543": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1544": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1545": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1546": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "" - }, - "1547": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "IconFieldDesignTokens" - }, - "1548": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "IconFieldDesignTokens.icon" - }, - "1549": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "__type" - }, - "1550": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "__type.color" - }, - "1551": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1552": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1553": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1554": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1555": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "" - }, - "1556": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens" - }, - "1557": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.root" - }, - "1558": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1559": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1560": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.preview" - }, - "1561": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1562": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.icon" - }, - "1563": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1564": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.size" - }, - "1565": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.mask" - }, - "1566": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1567": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.background" - }, - "1568": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1569": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.toolbar" - }, - "1570": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1571": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.position" - }, - "1572": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1573": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.left" - }, - "1574": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.right" - }, - "1575": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.top" - }, - "1576": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "1577": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.blur" - }, - "1578": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.background" - }, - "1579": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1580": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1581": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1582": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1583": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1584": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.action" - }, - "1585": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1586": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1587": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1588": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1589": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.size" - }, - "1590": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.iconSize" - }, - "1591": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1592": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1593": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1594": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.width" - }, - "1595": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.style" - }, - "1596": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1597": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1598": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1599": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1600": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1601": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1602": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1603": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "" - }, - "1604": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken" - }, - "1605": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1606": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1607": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1608": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1609": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.T" - }, - "1610": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken" - }, - "1611": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.50" - }, - "1612": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.100" - }, - "1613": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.200" - }, - "1614": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.300" - }, - "1615": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.400" - }, - "1616": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.500" - }, - "1617": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.600" - }, - "1618": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.700" - }, - "1619": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.800" - }, - "1620": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.900" - }, - "1621": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.950" - }, - "1622": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens" - }, - "1623": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.borderRadius" - }, - "1624": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1625": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.none" - }, - "1626": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.xs" - }, - "1627": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.sm" - }, - "1628": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.md" - }, - "1629": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.lg" - }, - "1630": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.xl" - }, - "1631": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.emerald" - }, - "1632": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.green" - }, - "1633": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.lime" - }, - "1634": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.red" - }, - "1635": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.orange" - }, - "1636": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.amber" - }, - "1637": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.yellow" - }, - "1638": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.teal" - }, - "1639": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.cyan" - }, - "1640": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.sky" - }, - "1641": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.blue" - }, - "1642": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.indigo" - }, - "1643": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.violet" - }, - "1644": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.purple" - }, - "1645": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.fuchsia" - }, - "1646": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.pink" - }, - "1647": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.rose" - }, - "1648": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.slate" - }, - "1649": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.gray" - }, - "1650": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.zinc" - }, - "1651": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.neutral" - }, - "1652": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.stone" - }, - "1653": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.__index" - }, - "1655": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens" - }, - "1656": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.transitionDuration" - }, - "1657": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.focusRing" - }, - "1658": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1659": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.width" - }, - "1660": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.style" - }, - "1661": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.color" - }, - "1662": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1663": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1664": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.iconSize" - }, - "1665": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.anchorGutter" - }, - "1666": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.primary" - }, - "1667": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.formField" - }, - "1668": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1669": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1670": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1671": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1672": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1673": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1674": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.width" - }, - "1675": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.style" - }, - "1676": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.color" - }, - "1677": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1678": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1679": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.__index" - }, - "1681": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "" - }, - "1682": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens" - }, - "1683": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.root" - }, - "1684": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1685": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1686": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1687": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1688": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.text" - }, - "1689": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1690": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1691": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.icon" - }, - "1692": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1693": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.size" - }, - "1694": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.info" - }, - "1695": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1696": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1697": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1698": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1699": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1700": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.success" - }, - "1701": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1702": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1703": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1704": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1705": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1706": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.warn" - }, - "1707": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1708": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1709": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1710": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1711": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1712": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.error" - }, - "1713": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1714": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1715": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1716": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1717": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1718": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.secondary" - }, - "1719": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1720": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1721": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1722": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1723": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1724": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.contrast" - }, - "1725": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1726": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1727": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1728": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1729": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1730": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1731": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1732": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1733": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1734": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "" - }, - "1735": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens" - }, - "1736": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens.root" - }, - "1737": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1738": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1739": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1740": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1741": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1742": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.width" - }, - "1743": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.style" - }, - "1744": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.color" - }, - "1745": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1746": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1747": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1748": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens.display" - }, - "1749": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1750": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1751": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1752": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1753": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1754": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1755": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1756": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "" - }, - "1757": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens" - }, - "1758": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens.root" - }, - "1759": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1760": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.background" - }, - "1761": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1762": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "1763": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "1764": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1765": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1766": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1767": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1768": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1769": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1770": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "1771": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1772": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1773": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1774": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1775": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1776": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1777": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.width" - }, - "1778": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.style" - }, - "1779": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1780": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1781": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1782": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1783": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens.chip" - }, - "1784": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1785": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1786": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1787": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1790": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1791": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1792": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "" - }, - "1793": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "InputGroupDesignTokens" - }, - "1794": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "InputGroupDesignTokens.addon" - }, - "1795": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type" - }, - "1796": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.background" - }, - "1797": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1798": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.color" - }, - "1799": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1800": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1801": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1802": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1803": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1804": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "" - }, - "1805": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens" - }, - "1806": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens.root" - }, - "1807": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type" - }, - "1808": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1809": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens.button" - }, - "1810": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type" - }, - "1811": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.width" - }, - "1812": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1813": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.verticalPadding" - }, - "1814": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.background" - }, - "1815": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1816": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1817": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1818": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1819": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "1820": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.color" - }, - "1821": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1822": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1823": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1824": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1825": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1826": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1827": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "" - }, - "1828": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "InputTextDesignTokens" - }, - "1829": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "InputTextDesignTokens.root" - }, - "1830": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1831": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.background" - }, - "1832": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1833": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "1834": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "1835": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1836": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1837": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1838": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1839": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.color" - }, - "1840": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1841": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "1842": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1843": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1844": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1845": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1846": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1847": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1848": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.width" - }, - "1849": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.style" - }, - "1850": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.color" - }, - "1851": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1852": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1853": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1854": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.sm" - }, - "1855": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1856": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1857": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1858": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1859": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.lg" - }, - "1860": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1861": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1862": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1863": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1864": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1865": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1866": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1867": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1868": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "" - }, - "1869": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens" - }, - "1870": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.root" - }, - "1871": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1872": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1873": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1874": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1875": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.width" - }, - "1876": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.style" - }, - "1877": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.color" - }, - "1878": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1879": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1880": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.value" - }, - "1881": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1882": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.background" - }, - "1883": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.range" - }, - "1884": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1885": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.background" - }, - "1886": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.text" - }, - "1887": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1888": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.color" - }, - "1889": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1890": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1891": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1892": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1893": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "" - }, - "1894": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens" - }, - "1895": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.root" - }, - "1896": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1897": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "1898": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1899": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1900": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1901": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1902": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1903": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1904": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1905": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1906": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1907": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1908": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1909": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "1910": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.style" - }, - "1911": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1912": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1913": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1914": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1915": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.list" - }, - "1916": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1917": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1918": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1919": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.header" - }, - "1920": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1921": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1922": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.option" - }, - "1923": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1924": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1925": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "1926": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "1927": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1928": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1929": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "1930": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "1931": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1932": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1933": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.stripedBackground" - }, - "1934": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.optionGroup" - }, - "1935": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1936": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "1937": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1938": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1939": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1940": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.checkmark" - }, - "1941": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1942": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1943": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gutterStart" - }, - "1944": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gutterEnd" - }, - "1945": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.emptyMessage" - }, - "1946": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1947": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1948": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1949": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1950": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1951": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1952": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "" - }, - "1953": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens" - }, - "1954": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.root" - }, - "1955": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1956": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "1957": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1958": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1959": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1960": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1961": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.verticalOrientation" - }, - "1962": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1963": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1964": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1965": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.horizontalOrientation" - }, - "1966": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1967": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1968": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1969": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.baseItem" - }, - "1970": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1971": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1972": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1973": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.item" - }, - "1974": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1975": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1976": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1977": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1978": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1979": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1980": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1981": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1982": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1983": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "1984": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1985": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1986": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1987": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1988": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.overlay" - }, - "1989": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1990": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1991": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "1992": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1993": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1994": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1995": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1996": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1997": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenu" - }, - "1998": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1999": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2000": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2001": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenuLabel" - }, - "2002": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2003": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2004": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2005": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2006": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2007": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenuIcon" - }, - "2008": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2009": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "2010": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2011": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2012": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2013": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.separator" - }, - "2014": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2015": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2016": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.mobileButton" - }, - "2017": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2018": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2019": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "2020": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2021": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2022": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2023": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2024": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2025": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.width" - }, - "2026": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.style" - }, - "2027": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2028": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2029": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2030": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2031": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2032": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2033": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2034": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "" - }, - "2035": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens" - }, - "2036": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.root" - }, - "2037": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2038": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2039": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2040": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2041": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2042": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2043": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2044": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.list" - }, - "2045": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2046": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2047": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2048": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.item" - }, - "2049": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2050": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2051": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2052": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2053": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2054": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2055": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2056": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2057": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2058": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2059": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2060": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.submenuLabel" - }, - "2061": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2062": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2063": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2064": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2065": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2066": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.separator" - }, - "2067": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2068": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2069": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2070": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2071": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2072": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2073": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "" - }, - "2074": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens" - }, - "2075": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.root" - }, - "2076": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2077": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2078": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2079": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2080": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2081": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2082": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2083": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2084": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.baseItem" - }, - "2085": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2086": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2087": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2088": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.item" - }, - "2089": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2090": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2091": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2092": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2093": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2094": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2095": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2096": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2097": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2098": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2099": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2100": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2101": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2102": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2103": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.submenu" - }, - "2104": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2105": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2106": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2107": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2108": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2109": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2110": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2111": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.mobileIndent" - }, - "2112": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.submenuIcon" - }, - "2113": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2114": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.size" - }, - "2115": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2116": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2117": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2118": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.separator" - }, - "2119": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2120": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2121": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.mobileButton" - }, - "2122": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2123": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2124": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.size" - }, - "2125": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2126": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2127": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2128": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2129": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2130": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.width" - }, - "2131": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.style" - }, - "2132": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2133": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2134": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2135": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2136": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2137": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2138": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2139": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "" - }, - "2140": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens" - }, - "2141": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.root" - }, - "2142": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2143": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2144": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2145": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2146": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.content" - }, - "2147": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2148": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2149": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2150": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.text" - }, - "2151": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2152": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2153": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2154": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.icon" - }, - "2155": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2156": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.size" - }, - "2157": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.closeButton" - }, - "2158": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2159": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.width" - }, - "2160": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.height" - }, - "2161": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2162": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2163": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2164": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.width" - }, - "2165": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.style" - }, - "2166": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2167": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.closeIcon" - }, - "2168": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2169": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.size" - }, - "2170": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.info" - }, - "2171": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2172": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2173": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2174": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2175": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2176": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2177": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2178": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2179": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2180": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2181": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2182": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2183": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.success" - }, - "2184": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2185": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2186": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2187": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2188": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2189": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2190": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2191": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2192": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2193": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2194": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2195": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2196": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.warn" - }, - "2197": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2198": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2199": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2200": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2201": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2202": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2203": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2204": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2205": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2206": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2207": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2208": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2209": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.error" - }, - "2210": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2211": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2212": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2213": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2214": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2215": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2216": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2217": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2218": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2219": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2220": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2221": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2222": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.secondary" - }, - "2223": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2224": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2225": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2226": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2227": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2228": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2229": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2230": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2231": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2232": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2233": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2234": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2235": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.contrast" - }, - "2236": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2237": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2238": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2239": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2240": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2241": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2242": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2243": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2244": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2245": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2246": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2247": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2248": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2249": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2250": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2251": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2252": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "" - }, - "2253": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens" - }, - "2254": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.root" - }, - "2255": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2256": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2257": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2258": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.meters" - }, - "2259": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2260": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.background" - }, - "2261": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2262": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.label" - }, - "2263": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2264": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2265": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelMarker" - }, - "2266": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2267": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2268": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelIcon" - }, - "2269": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2270": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2271": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelList" - }, - "2272": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2273": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.verticalGap" - }, - "2274": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.horizontalGap" - }, - "2275": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2276": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2277": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2278": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2279": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "" - }, - "2280": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens" - }, - "2281": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.root" - }, - "2282": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2283": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2284": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2285": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2286": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "2287": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2288": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2289": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2290": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2291": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2292": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2293": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "2294": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2295": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "2296": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "2297": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2298": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2299": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2300": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "2301": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "2302": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2303": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2304": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2305": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2306": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.dropdown" - }, - "2307": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2308": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "2309": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2310": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.overlay" - }, - "2311": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2312": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2313": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2314": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2315": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2316": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2317": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.list" - }, - "2318": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2319": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2320": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2321": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.header" - }, - "2322": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2323": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2324": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.option" - }, - "2325": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2326": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2327": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2328": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "2329": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2330": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2331": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2332": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "2333": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2334": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2335": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2336": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.optionGroup" - }, - "2337": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2338": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2339": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2340": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2341": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2342": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.chip" - }, - "2343": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2344": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2345": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.emptyMessage" - }, - "2346": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2347": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2348": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2349": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2350": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2351": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2352": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "" - }, - "2353": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens" - }, - "2354": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens.root" - }, - "2355": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type" - }, - "2356": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2357": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens.controls" - }, - "2358": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type" - }, - "2359": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2360": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2361": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2362": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2363": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2364": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "" - }, - "2365": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens" - }, - "2366": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.root" - }, - "2367": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2368": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "2369": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2370": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.node" - }, - "2371": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2372": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.background" - }, - "2373": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2374": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2375": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2376": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2377": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2378": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2379": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2380": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.toggleablePadding" - }, - "2381": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2382": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.nodeToggleButton" - }, - "2383": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2384": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.background" - }, - "2385": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2386": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2387": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2388": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2389": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.size" - }, - "2390": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2391": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2392": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2393": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.width" - }, - "2394": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.style" - }, - "2395": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2396": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2397": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2398": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.connector" - }, - "2399": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2400": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2401": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2402": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.height" - }, - "2403": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2404": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2405": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2406": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2407": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "" - }, - "2408": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "OverlayBadgeDesignTokens" - }, - "2409": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "OverlayBadgeDesignTokens.root" - }, - "2410": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type" - }, - "2411": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.outline" - }, - "2412": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type" - }, - "2413": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.width" - }, - "2414": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.color" - }, - "2415": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2416": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2417": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2418": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2419": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "" - }, - "2420": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens" - }, - "2421": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.root" - }, - "2422": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2423": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2424": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2425": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2426": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.background" - }, - "2427": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2428": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2429": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.navButton" - }, - "2430": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2431": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.background" - }, - "2432": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2433": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2434": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2435": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2436": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2437": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.width" - }, - "2438": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.height" - }, - "2439": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2440": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2441": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2442": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.width" - }, - "2443": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.style" - }, - "2444": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2445": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2446": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2447": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.currentPageReport" - }, - "2448": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2449": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2450": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.jumpToPageInput" - }, - "2451": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2452": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.maxWidth" - }, - "2453": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2454": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2455": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2456": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2457": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "" - }, - "2458": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens" - }, - "2459": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.root" - }, - "2460": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2461": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2462": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2463": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2464": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2465": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.header" - }, - "2466": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2467": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2468": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2469": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2470": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2471": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2472": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2473": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.toggleableHeader" - }, - "2474": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2475": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2476": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.title" - }, - "2477": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2478": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2479": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.content" - }, - "2480": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2481": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2482": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.footer" - }, - "2483": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2484": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2485": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2486": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2487": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2488": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2489": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "" - }, - "2490": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens" - }, - "2491": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.root" - }, - "2492": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2493": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2494": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2495": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.panel" - }, - "2496": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2497": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2498": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2499": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2500": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2501": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2502": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2503": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.first" - }, - "2504": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2505": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2506": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.topBorderRadius" - }, - "2507": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.last" - }, - "2508": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2509": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2510": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.bottomBorderRadius" - }, - "2511": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.item" - }, - "2512": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2513": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2514": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2515": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2516": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2517": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2518": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2519": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2520": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2521": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2522": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2523": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.submenu" - }, - "2524": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2525": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.indent" - }, - "2526": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.submenuIcon" - }, - "2527": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2528": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2529": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2530": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2531": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2532": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2533": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2534": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "" - }, - "2535": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens" - }, - "2536": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.meter" - }, - "2537": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2538": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.background" - }, - "2539": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2540": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.height" - }, - "2541": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.icon" - }, - "2542": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2543": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.color" - }, - "2544": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.overlay" - }, - "2545": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2546": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.background" - }, - "2547": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2548": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2549": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.color" - }, - "2550": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2551": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2552": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.content" - }, - "2553": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2554": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2555": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.strength" - }, - "2556": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2557": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.weakBackground" - }, - "2558": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.mediumBackground" - }, - "2559": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.strongBackground" - }, - "2560": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2561": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2562": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2563": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2564": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "" - }, - "2565": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens" - }, - "2566": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens.root" - }, - "2567": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type" - }, - "2568": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2569": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens.controls" - }, - "2570": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type" - }, - "2571": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2572": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2573": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2574": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2575": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2576": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "" - }, - "2577": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens" - }, - "2578": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens.root" - }, - "2579": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type" - }, - "2580": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.background" - }, - "2581": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2582": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.color" - }, - "2583": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2584": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2585": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "2586": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.arrowOffset" - }, - "2587": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens.content" - }, - "2588": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type" - }, - "2589": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2590": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2591": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2592": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2593": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2594": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "" - }, - "2595": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens" - }, - "2596": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.root" - }, - "2597": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2598": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2599": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2600": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.height" - }, - "2601": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.value" - }, - "2602": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2603": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2604": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.label" - }, - "2605": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2606": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2607": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2608": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2609": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2610": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2611": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2612": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2613": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "" - }, - "2614": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "ProgressSpinnerDesignTokens" - }, - "2615": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "ProgressSpinnerDesignTokens.root" - }, - "2616": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type" - }, - "2617": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.1" - }, - "2618": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.2" - }, - "2619": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.3" - }, - "2620": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.4" - }, - "2621": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2622": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2623": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2624": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2625": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "" - }, - "2626": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens" - }, - "2627": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens.root" - }, - "2628": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2629": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "2630": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.height" - }, - "2631": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.background" - }, - "2632": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "2633": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "2634": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2635": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2636": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2637": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2638": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2639": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "2640": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "2641": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedFocusBorderColor" - }, - "2642": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedDisabledBorderColor" - }, - "2643": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2644": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2645": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2646": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2647": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "2648": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.style" - }, - "2649": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "2650": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2651": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2652": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2653": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens.icon" - }, - "2654": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2655": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.size" - }, - "2656": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "2657": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverColor" - }, - "2658": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2659": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2660": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2661": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2662": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2663": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "" - }, - "2664": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens" - }, - "2665": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens.root" - }, - "2666": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type" - }, - "2667": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2668": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2669": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens.icon" - }, - "2670": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type" - }, - "2671": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.size" - }, - "2672": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.color" - }, - "2673": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2674": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2675": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2676": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2677": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2678": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2679": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "" - }, - "2680": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "RippleDesignTokens" - }, - "2681": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "RippleDesignTokens.root" - }, - "2682": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "__type" - }, - "2683": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "__type.background" - }, - "2684": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2685": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2686": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2687": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2688": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "" - }, - "2689": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens" - }, - "2690": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens.root" - }, - "2691": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2692": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2693": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens.bar" - }, - "2694": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2695": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.size" - }, - "2696": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2697": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2698": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2699": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.width" - }, - "2700": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.style" - }, - "2701": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2702": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2703": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2704": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2705": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2706": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2707": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2708": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2709": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "" - }, - "2710": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens" - }, - "2711": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.root" - }, - "2712": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2713": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2714": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2715": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2716": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "2717": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2718": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2719": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2720": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2721": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2722": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2723": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "2724": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2725": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "2726": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "2727": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2728": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2729": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2730": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.width" - }, - "2731": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.style" - }, - "2732": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2733": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2734": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2735": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2736": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.dropdown" - }, - "2737": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2738": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.width" - }, - "2739": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2740": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.overlay" - }, - "2741": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2742": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2743": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2744": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2745": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2746": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2747": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.list" - }, - "2748": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2749": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2750": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2751": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.header" - }, - "2752": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2753": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2754": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.option" - }, - "2755": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2756": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2757": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2758": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "2759": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2760": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2761": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2762": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "2763": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2764": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2765": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.optionGroup" - }, - "2766": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2767": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2768": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2769": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2770": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2771": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.clearIcon" - }, - "2772": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2773": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2774": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.checkmark" - }, - "2775": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2776": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2777": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gutterStart" - }, - "2778": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gutterEnd" - }, - "2779": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.emptyMessage" - }, - "2780": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2781": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2782": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2783": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2784": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2785": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2786": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "" - }, - "2787": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "SelectButtonDesignTokens" - }, - "2788": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "SelectButtonDesignTokens.root" - }, - "2789": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type" - }, - "2790": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2791": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2792": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2793": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2794": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2795": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2796": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "" - }, - "2797": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "SkeletonDesignTokens" - }, - "2798": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "SkeletonDesignTokens.root" - }, - "2799": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type" - }, - "2800": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2801": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.background" - }, - "2802": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.animationBackground" - }, - "2803": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2804": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2805": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2806": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2807": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "" - }, - "2808": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens" - }, - "2809": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.root" - }, - "2810": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2811": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2812": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.track" - }, - "2813": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2814": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2815": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2816": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.size" - }, - "2817": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.range" - }, - "2818": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2819": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2820": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.handle" - }, - "2821": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2822": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2823": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.height" - }, - "2824": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2825": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2826": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2827": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.content" - }, - "2828": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2829": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2830": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2831": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2832": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.height" - }, - "2833": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2834": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2835": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2836": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2837": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.style" - }, - "2838": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.color" - }, - "2839": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2840": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2841": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.contentBackground" - }, - "2842": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2843": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2844": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2845": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2846": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "" - }, - "2847": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "SpeedDialDesignTokens" - }, - "2848": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "SpeedDialDesignTokens.root" - }, - "2849": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type" - }, - "2850": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2851": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2852": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2853": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2854": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2855": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2856": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "" - }, - "2857": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "SplitButtonDesignTokens" - }, - "2858": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "SplitButtonDesignTokens.root" - }, - "2859": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type" - }, - "2860": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2861": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "2862": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.raisedShadow" - }, - "2863": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2864": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2865": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2866": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2867": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "" - }, - "2868": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens" - }, - "2869": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.root" - }, - "2870": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2871": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2872": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2873": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.color" - }, - "2874": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2875": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.gutter" - }, - "2876": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2877": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2878": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.handle" - }, - "2879": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2880": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.size" - }, - "2881": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2882": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2883": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2884": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2885": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.width" - }, - "2886": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.style" - }, - "2887": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.color" - }, - "2888": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2889": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2890": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2891": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2892": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2893": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2894": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "" - }, - "2895": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens" - }, - "2896": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.root" - }, - "2897": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2898": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2899": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.separator" - }, - "2900": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2901": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2902": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2903": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.margin" - }, - "2904": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.size" - }, - "2905": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.step" - }, - "2906": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2907": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2908": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2909": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepHeader" - }, - "2910": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2911": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2912": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2913": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2914": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2915": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.width" - }, - "2916": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.style" - }, - "2917": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2918": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2919": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2920": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2921": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepTitle" - }, - "2922": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2923": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2924": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2925": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2926": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepNumber" - }, - "2927": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2928": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2929": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2930": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2931": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "2932": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2933": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2934": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.size" - }, - "2935": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2936": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2937": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2938": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2939": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.steppanels" - }, - "2940": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2941": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2942": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.steppanel" - }, - "2943": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2944": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2945": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2946": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2947": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2948": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2949": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2950": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2951": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "" - }, - "2952": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens" - }, - "2953": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.root" - }, - "2954": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2955": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2956": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.separator" - }, - "2957": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2958": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.background" - }, - "2959": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemLink" - }, - "2960": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2961": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2962": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2963": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2964": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.width" - }, - "2965": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.style" - }, - "2966": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2967": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2968": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2969": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2970": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemLabel" - }, - "2971": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2972": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2973": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2974": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2975": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemNumber" - }, - "2976": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2977": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.background" - }, - "2978": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2979": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2980": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "2981": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2982": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2983": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.size" - }, - "2984": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2985": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2986": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2987": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2988": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2989": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2990": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2991": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2992": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "" - }, - "2993": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens" - }, - "2994": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.root" - }, - "2995": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2996": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2997": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.tablist" - }, - "2998": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2999": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3000": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3001": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3002": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.item" - }, - "3003": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3004": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3005": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3006": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3007": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3008": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3009": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3010": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3011": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3012": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3013": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3014": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3015": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3016": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3017": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3018": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3019": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3020": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.width" - }, - "3021": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.style" - }, - "3022": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3023": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3024": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3025": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.itemIcon" - }, - "3026": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3027": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3028": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3029": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3030": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.activeBar" - }, - "3031": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3032": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.height" - }, - "3033": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "3034": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3035": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3036": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3037": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3038": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3039": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "" - }, - "3040": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens" - }, - "3041": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.root" - }, - "3042": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3043": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3044": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tablist" - }, - "3045": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3046": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3047": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3048": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3049": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tab" - }, - "3050": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3051": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3052": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3053": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3054": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3055": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3056": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3057": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3058": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3059": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3060": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3061": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3062": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3063": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3064": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3065": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3066": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3067": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3068": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3069": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3070": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3071": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3072": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tabpanel" - }, - "3073": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3074": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3075": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3076": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3077": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3078": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3079": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3080": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3081": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3082": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3083": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3084": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.navButton" - }, - "3085": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3086": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3087": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3088": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3089": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3090": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3091": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3092": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3093": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3094": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3095": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3096": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3097": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3098": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.activeBar" - }, - "3099": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3100": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.height" - }, - "3101": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "3102": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3103": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3104": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3105": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3106": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3107": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "" - }, - "3108": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens" - }, - "3109": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.root" - }, - "3110": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3111": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3112": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tabList" - }, - "3113": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3114": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3115": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3116": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tab" - }, - "3117": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3118": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3119": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3120": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3121": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3122": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3123": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tabPanel" - }, - "3124": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3125": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3126": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3127": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.navButton" - }, - "3128": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3129": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3130": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3131": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3132": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3133": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3134": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3135": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3136": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3137": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "" - }, - "3138": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens" - }, - "3139": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.root" - }, - "3140": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3141": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3142": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3143": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3144": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3145": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3146": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "3147": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.icon" - }, - "3148": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3149": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.size" - }, - "3150": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.primary" - }, - "3151": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3152": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3153": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3154": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.secondary" - }, - "3155": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3156": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3157": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3158": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.success" - }, - "3159": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3160": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3161": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3162": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.info" - }, - "3163": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3164": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3165": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3166": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.warn" - }, - "3167": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3168": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3169": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3170": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.danger" - }, - "3171": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3172": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3173": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3174": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.contrast" - }, - "3175": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3176": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3177": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3178": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3179": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3180": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3181": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3182": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "" - }, - "3183": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens" - }, - "3184": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.root" - }, - "3185": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3186": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.background" - }, - "3187": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3188": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.color" - }, - "3189": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.height" - }, - "3190": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3191": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3192": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.prompt" - }, - "3193": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3194": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3195": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.commandResponse" - }, - "3196": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3197": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3198": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3199": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3200": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3201": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3202": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "" - }, - "3203": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "TextareaDesignTokens" - }, - "3204": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "TextareaDesignTokens.root" - }, - "3205": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type" - }, - "3206": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.background" - }, - "3207": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3208": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "3209": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "3210": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3211": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3212": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "3213": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3214": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.color" - }, - "3215": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3216": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "3217": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3218": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "3219": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "3220": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3221": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3222": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type" - }, - "3223": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.width" - }, - "3224": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.style" - }, - "3225": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.color" - }, - "3226": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3227": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3228": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3229": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3230": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3231": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3232": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3233": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "" - }, - "3234": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens" - }, - "3235": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.root" - }, - "3236": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3237": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3238": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3239": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3240": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3241": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3242": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3243": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.list" - }, - "3244": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3245": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3246": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3247": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.item" - }, - "3248": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3249": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "3250": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3251": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3252": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3253": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3254": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3255": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3256": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3257": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "3258": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3259": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3260": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3261": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3262": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.submenuLabel" - }, - "3263": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3264": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3265": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3266": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3267": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3268": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.submenuIcon" - }, - "3269": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3270": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "3271": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3272": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3273": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3274": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.separator" - }, - "3275": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3276": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3277": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3278": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3279": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3280": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3281": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "" - }, - "3282": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens" - }, - "3283": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.event" - }, - "3284": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3285": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.minHeight" - }, - "3286": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.horizontal" - }, - "3287": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3288": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.eventContent" - }, - "3289": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3290": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3291": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.vertical" - }, - "3292": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3293": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.eventContent" - }, - "3294": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3295": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3296": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.eventMarker" - }, - "3297": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3298": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3299": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3300": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3301": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.background" - }, - "3302": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3303": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.content" - }, - "3304": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3305": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3306": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3307": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.background" - }, - "3308": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.insetShadow" - }, - "3309": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.eventConnector" - }, - "3310": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3311": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.color" - }, - "3312": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3313": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3314": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3315": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3316": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3317": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "" - }, - "3318": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens" - }, - "3319": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.root" - }, - "3320": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3321": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3322": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3323": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3324": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3325": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.icon" - }, - "3326": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3327": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.size" - }, - "3328": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.content" - }, - "3329": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3330": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3331": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3332": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.text" - }, - "3333": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3334": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3335": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.summary" - }, - "3336": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3337": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3338": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3339": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.detail" - }, - "3340": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3341": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3342": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3343": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.closeButton" - }, - "3344": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3345": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3346": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.height" - }, - "3347": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3348": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3349": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3350": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3351": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.style" - }, - "3352": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3353": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.closeIcon" - }, - "3354": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3355": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.size" - }, - "3356": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.blur" - }, - "3357": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3358": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.0" - }, - "3359": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.1" - }, - "3360": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.2" - }, - "3361": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.3" - }, - "3362": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.4" - }, - "3363": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.info" - }, - "3364": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3365": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3366": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3367": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3368": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3369": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3370": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3371": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3372": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3373": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3374": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3375": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3376": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3377": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.success" - }, - "3378": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3379": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3380": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3381": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3382": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3383": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3384": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3385": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3386": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3387": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3388": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3389": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3390": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3391": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.warn" - }, - "3392": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3393": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3394": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3395": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3396": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3397": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3398": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3399": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3400": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3401": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3402": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3403": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3404": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3405": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.error" - }, - "3406": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3407": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3408": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3409": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3410": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3411": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3412": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3413": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3414": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3415": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3416": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3417": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3418": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3419": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.secondary" - }, - "3420": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3421": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3422": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3423": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3424": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3425": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3426": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3427": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3428": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3429": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3430": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3431": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3432": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3433": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.contrast" - }, - "3434": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3435": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3436": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3437": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3438": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3439": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3440": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3441": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3442": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3443": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3444": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3445": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3446": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3447": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3448": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3449": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3450": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3451": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "" - }, - "3452": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens" - }, - "3453": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.root" - }, - "3454": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3455": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3456": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3457": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3458": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3459": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3460": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledBorderColor" - }, - "3461": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3462": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3463": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3464": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3465": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "3466": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.style" - }, - "3467": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3468": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3469": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3470": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3471": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.background" - }, - "3472": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3473": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3474": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3475": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3476": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3477": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "3478": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "3479": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.icon" - }, - "3480": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3481": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3482": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3483": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3484": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "3485": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.content" - }, - "3486": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3487": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.left" - }, - "3488": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.top" - }, - "3489": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedShadow" - }, - "3490": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3491": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3492": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3493": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3494": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3495": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "" - }, - "3496": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens" - }, - "3497": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens.root" - }, - "3498": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3499": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.width" - }, - "3500": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.height" - }, - "3501": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3502": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3503": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3504": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3505": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3506": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.width" - }, - "3507": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.style" - }, - "3508": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.color" - }, - "3509": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3510": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3511": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3512": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3513": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3514": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "3515": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "3516": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3517": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3518": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.slideDuration" - }, - "3519": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3520": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.background" - }, - "3521": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3522": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3523": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "3524": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens.handle" - }, - "3525": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3526": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3527": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.size" - }, - "3528": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3529": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.background" - }, - "3530": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3531": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3532": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "3533": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3534": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3535": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3536": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3537": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "" - }, - "3538": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "ToolbarDesignTokens" - }, - "3539": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "ToolbarDesignTokens.root" - }, - "3540": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type" - }, - "3541": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "3542": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3543": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3544": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.color" - }, - "3545": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3546": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3547": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3548": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3549": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3550": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3551": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "" - }, - "3552": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "TooltipDesignTokens" - }, - "3553": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "TooltipDesignTokens.root" - }, - "3554": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type" - }, - "3555": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.maxWidth" - }, - "3556": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "3557": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3558": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3559": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3560": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.background" - }, - "3561": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.color" - }, - "3562": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3563": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3564": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3565": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3566": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 57 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L1" + } + ] + } + ], + "groups": [ + { + "title": "Modules", + "children": [ + 1, + 56 + ] + } + ], + "packageName": "primeng", + "packageVersion": "18.0.0-beta.1", + "readme": [ + { + "kind": "text", + "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." + } + ], + "symbolIdMap": { + "1": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "" }, - "3567": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens" + "2": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens" }, - "3568": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.root" + "3": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.root" }, - "3569": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "4": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3570": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.background" - }, - "3571": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3572": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3573": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3574": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.indent" - }, - "3575": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "5": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.transitionDuration" }, - "3576": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.node" - }, - "3577": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" - }, - "3578": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3579": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3580": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3581": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3582": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3583": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3584": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3585": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.focusRing" + "6": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.panel" }, - "3586": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "7": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3587": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.width" - }, - "3588": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.style" - }, - "3589": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3590": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3591": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.shadow" + "8": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3592": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.gap" + "9": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" }, - "3593": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.nodeIcon" + "10": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.header" }, - "3594": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "11": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3595": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "12": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3596": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "13": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.hoverColor" }, - "3597": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedColor" + "14": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" }, - "3598": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.nodeToggleButton" + "15": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" }, - "3599": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" + "16": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.fontWeight" }, - "3600": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "17": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.borderRadius" }, - "3601": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.size" + "18": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3602": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverBackground" + "19": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" }, - "3603": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" + "20": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" }, - "3604": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" + "21": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverBackground" }, - "3605": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverColor" + "22": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBackground" }, - "3606": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" + "23": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverBackground" }, - "3607": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "24": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.focusRing" }, - "3608": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "25": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3609": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "26": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.width" }, - "3610": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "27": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.style" }, - "3611": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "28": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3612": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "29": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.offset" }, - "3613": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "30": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.shadow" }, - "3614": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.loadingIcon" - }, - "3615": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" - }, - "3616": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.size" - }, - "3617": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3618": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3619": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3620": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3621": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "" - }, - "3622": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens" - }, - "3623": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.root" + "31": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.toggleIcon" }, - "3624": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "32": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3625": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "3626": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3627": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "3628": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "3629": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3630": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3631": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "3632": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3633": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "33": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3634": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3635": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "3636": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3637": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.paddingX" + "34": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" }, - "3638": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.paddingY" + "35": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" }, - "3639": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" + "36": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverColor" }, - "3640": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.focusRing" + "37": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.first" }, - "3641": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "38": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3642": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "3643": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "3644": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "3645": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3646": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" + "39": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.topBorderRadius" }, - "3647": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" + "40": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3648": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.dropdown" + "41": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.last" }, - "3649": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "42": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3650": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.width" + "43": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.bottomBorderRadius" }, - "3651": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.color" + "44": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBottomBorderRadius" }, - "3652": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.overlay" + "45": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.content" }, - "3653": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "46": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3654": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.background" + "47": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3655": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "48": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.borderColor" }, - "3656": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" + "49": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" }, - "3657": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "50": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3658": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3659": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.tree" - }, - "3660": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3661": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3662": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.emptyMessage" - }, - "3663": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3664": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "51": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.padding" }, - "3665": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.chip" - }, - "3666": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3667": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3668": { + "52": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "3669": { + "53": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type" }, - "3670": { + "54": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.light" }, - "3671": { + "55": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" }, - "3672": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "56": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "" }, - "3673": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens" - }, - "3674": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.root" - }, - "3675": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3676": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3677": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3678": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.header" - }, - "3679": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3680": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3681": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3682": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3683": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3684": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3685": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.headerCell" - }, - "3686": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3687": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3688": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3689": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3690": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3691": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3692": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3693": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3694": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3695": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3696": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3697": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3698": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3699": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" - }, - "3700": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3701": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3702": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3703": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnTitle" - }, - "3704": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3705": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3706": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.row" - }, - "3707": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3708": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3709": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3710": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3711": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3712": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3713": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3714": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3715": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3716": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3717": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" - }, - "3718": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3719": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3720": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3721": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.bodyCell" - }, - "3722": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3723": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3724": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3725": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3726": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBorderColor" - }, - "3727": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.footerCell" - }, - "3728": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3729": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3730": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3731": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3732": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3733": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnFooter" - }, - "3734": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3735": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.fontWeight" + "57": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens" }, - "3736": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.footer" + "58": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.root" }, - "3737": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "59": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type" }, - "3738": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "60": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type.background" }, - "3739": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3740": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3741": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3742": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3743": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnResizerWidth" - }, - "3744": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3745": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.0" - }, - "3746": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.1" - }, - "3747": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.2" - }, - "3748": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.3" - }, - "3749": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.4" - }, - "3750": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.5" - }, - "3751": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.resizeIndicator" - }, - "3752": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3753": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3754": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3755": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.sortIcon" - }, - "3756": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3757": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3758": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3759": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.loadingIcon" - }, - "3760": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3761": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.size" - }, - "3762": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.nodeToggleButton" - }, - "3763": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3764": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3765": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" - }, - "3766": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3767": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3768": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" - }, - "3769": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.size" - }, - "3770": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3771": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3772": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "61": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "3773": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" + "62": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" }, - "3774": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" + "63": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" }, - "3775": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" + "64": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.header" }, - "3776": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" + "65": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3777": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" + "66": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" }, - "3778": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.paginatorTop" + "67": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" }, - "3779": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "68": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3780": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" + "69": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "3781": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" + "70": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderWidth" }, - "3782": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.paginatorBottom" + "71": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" }, - "3783": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "72": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.toggleableHeader" }, - "3784": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" + "73": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3785": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" + "74": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3786": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "75": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.title" }, - "3787": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", + "76": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type" }, - "3788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3790": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "" - }, - "3791": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens" - }, - "3792": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens.loaderMask" + "77": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.fontWeight" }, - "3793": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type" + "78": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.content" }, - "3794": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.background" + "79": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3795": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.color" + "80": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3796": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens.loaderIcon" + "81": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.footer" }, - "3797": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type" + "82": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3798": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.size" + "83": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3799": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "84": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "3800": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" + "85": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" }, - "3801": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" + "86": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" }, - "3802": { + "87": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index d80688e8a9a..77eb5348e3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.2", + "version": "18.0.0-beta.1", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", @@ -17,8 +17,7 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-themedoc.ts", - "build:docs": "npm run apidoc && npm run themedoc" + "themedoc": "node ./api-generator/build-theming.ts" }, "repository": { "type": "git", @@ -89,7 +88,7 @@ "@angular/ssr": "^18.0.1", "@docsearch/js": "^3.3.4", "esbuild": "^0.19.8", - "@primeuix/styled": "0.1.3", + "@primeuix/styled": "0.0.6", "@algolia/client-search": "^4.19.1" }, "dependencies": { @@ -98,4 +97,4 @@ "tailwindcss": "^3.4.10", "tailwindcss-primeui": "^0.3.4" } -} +} \ No newline at end of file diff --git a/src/app/components/table/style/tablestyle.ts b/src/app/components/table/style/tablestyle.ts index 1dc20325348..92fb0dc5435 100644 --- a/src/app/components/table/style/tablestyle.ts +++ b/src/app/components/table/style/tablestyle.ts @@ -698,6 +698,7 @@ const inlineStyles = { thead: { position: 'sticky' }, tfoot: { position: 'sticky' }, }; + @Injectable() export class TableStyle extends BaseStyle { name = 'datatable'; diff --git a/src/app/showcase/layout/topbar/app.topbar.component.html b/src/app/showcase/layout/topbar/app.topbar.component.html index fb133099645..45c02a4e79f 100644 --- a/src/app/showcase/layout/topbar/app.topbar.component.html +++ b/src/app/showcase/layout/topbar/app.topbar.component.html @@ -123,14 +123,14 @@
  • -
  • - \ No newline at end of file + diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index db1cc941bb0..4591725b947 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription, debounceTime } from 'rxjs'; +import { Subscription } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -759,13 +759,13 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "Achieve sophistication and subtlety with Verona's minimalistic, content-focused design.", + text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' }, { title: 'Freya', link: 'https://primevue.org/templates/freya/', image: 'https://primefaces.org/cdn/primevue/images/layouts/freya-vue.png', - text: "Give your application a sleek, updated look with Freya's chic and modern premium template.", + text: 'Give your application a sleek, updated look with Freya\'s chic and modern premium template.', }, ]; @@ -815,7 +815,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { name: 'Jacob Jones', time: '12.23.2023', title: 'Optimized Workflow Revolution ', - text: "Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it's efficiency like never before. Let's get in touch for a brief demo!", + text: 'Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it\'s efficiency like never before. Let\'s get in touch for a brief demo!', }, { image: 'https://www.primefaces.org/cdn/primevue/images/landing/apps/avatar8.png', diff --git a/src/assets/showcase/styles/layout/_templates.scss b/src/assets/showcase/styles/layout/_templates.scss index 3b56e1e4a40..762d730b9f4 100644 --- a/src/assets/showcase/styles/layout/_templates.scss +++ b/src/assets/showcase/styles/layout/_templates.scss @@ -26,12 +26,12 @@ @keyframes p-features-order-animation { 0% { clip-path: polygon(0% 100%, 15% 100%, 32% 100%, 54% 100%, 70% 100%, 84% 100%, 100% 100%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 20% { clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 40% { @@ -45,4 +45,4 @@ 100% { clip-path: polygon(0 0, 18% 0, 39% 0, 53% 0, 62% 0, 87% 0, 100% 0, 100% 100%, 0 100%); } -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_dark.scss b/src/assets/showcase/styles/layout/variables/landing/_dark.scss index 22932c59cc9..ec442774e80 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_dark.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_dark.scss @@ -18,29 +18,29 @@ --home-blocks-border-left:5px solid #1f2937; --home-blocks-border-bottom:7px solid #1f2937; --home-blocks-border:1px solid #424b57; - --home-blocks-sidebar-bg:var(--p-surface-900); - --home-blocks-list-bg:var(--p-surface-800); - --home-blocks-main-bg:var(--p-surface-950); + --home-blocks-sidebar-bg: var(--p-surface-900); + --home-blocks-list-bg: var(--p-surface-800); + --home-blocks-main-bg: var(--p-surface-950); --home-blocks-main-border:1px solid #424b57; - --home-blocks-item-bg:var(--p-surface-900); - --home-blocks-image-bg:var(--p-surface-800); - --home-blocks-text-color:var(--p-surface-600); + --home-blocks-item-bg: var(--p-surface-900); + --home-blocks-image-bg: var(--p-surface-800); + --home-blocks-text-color: var(--p-surface-600); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, 0.25); --home-blocks-active-border-top:1px solid #424b57; --home-blocks-active-border-right:1px solid #424b57; --home-blocks-active-border-bottom:6px solid #424b57; --home-blocks-active-border-left:4px solid #424b57; --home-blocks-animation-shadow:0px 30px 50px 20px rgba(0, 0, 0, 0.25); - --home-blocks-tablebar-bg:var(--p-surface-700); - --home-blocks-bar-bg:var(--p-surface-700); - --home-blocks-bar-button-bg:var(--p-surface-700); - --home-blocks-circle-bg:var(--p-surface-800); + --home-blocks-tablebar-bg: var(--p-surface-700); + --home-blocks-bar-bg: var(--p-surface-700); + --home-blocks-bar-button-bg: var(--p-surface-700); + --home-blocks-circle-bg: var(--p-surface-800); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0, 0, 0, 0.25); --home-templates-block-border-left:5px solid #424b57; --home-templates-block-border-bottom:7px solid #424b57; --home-templates-line:rgba(255,255,255,.1); - --home-templates-block-hover-bg:var(--p-mask-background); + --home-templates-block-hover-bg: var(--p-mask-background); --home-templates-btn-bg:#1f2937; --home-templates-btn-text-color:#ffffff; --home-templates-btn-shadow:0px 10px 15px 0px rgba(0, 0, 0, 0.25); @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid #424b57; --home-features-card-shadow: none; --home-box-ring-color: color-mix(in srgb, var(--primary-color), transparent 70%); -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_light.scss b/src/assets/showcase/styles/layout/variables/landing/_light.scss index ba546d11cdc..c84929681a6 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_light.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_light.scss @@ -18,23 +18,23 @@ --home-blocks-border-left:5px solid rgba(0,0,0,.1); --home-blocks-border-bottom:7px solid rgba(0,0,0,.1); --home-blocks-border:1px solid rgba(0,0,0,.1); - --home-blocks-sidebar-bg:var(--p-surface-100); - --home-blocks-list-bg:var(--p-surface-50); - --home-blocks-main-bg:var(--p-surface-0); + --home-blocks-sidebar-bg: var(--p-surface-100); + --home-blocks-list-bg: var(--p-surface-50); + --home-blocks-main-bg: var(--p-surface-0); --home-blocks-main-border:1px solid rgba(0,0,0,.1); - --home-blocks-item-bg:var(--p-surface-100); - --home-blocks-image-bg:var(--p-surface-200); - --home-blocks-text-color:var(--p-surface-300); + --home-blocks-item-bg: var(--p-surface-100); + --home-blocks-image-bg: var(--p-surface-200); + --home-blocks-text-color: var(--p-surface-300); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, .1); --home-blocks-active-border-top:1px solid rgba(0,0,0,.07); --home-blocks-active-border-right:1px solid rgba(0,0,0,.07); --home-blocks-active-border-bottom:4px solid rgba(0,0,0,.07); --home-blocks-active-border-left:4px solid rgba(0,0,0,.07); --home-blocks-animation-shadow:0px 30px 50px 10px rgba(0, 0, 0, .2); - --home-blocks-tablebar-bg:var(--p-surface-300); - --home-blocks-bar-bg:var(--p-surface-300); - --home-blocks-bar-button-bg:var(--p-surface-0); - --home-blocks-circle-bg:var(--p-surface-300); + --home-blocks-tablebar-bg: var(--p-surface-300); + --home-blocks-bar-bg: var(--p-surface-300); + --home-blocks-bar-button-bg: var(--p-surface-0); + --home-blocks-circle-bg: var(--p-surface-300); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0,0,0,.1); --home-templates-block-border-left:5px solid #d1d5db; @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid rgba(0,0,0,.1); --home-features-card-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.02), 0px 28px 28px 0px rgba(0, 0, 0, 0.02), 0px 63px 38px 0px rgba(0, 0, 0, 0.01); --home-box-ring-color: var(--p-primary-200); -} \ No newline at end of file +} From 5065d893d83409700b6db884031c00bf07276d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:58:35 +0300 Subject: [PATCH 04/49] Update version --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 77eb5348e3f..2ce34c6edb9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.1", + "version": "18.0.0-beta.2", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", @@ -17,7 +17,8 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-theming.ts" + "themedoc": "node ./api-generator/build-theming.ts", + "build:docs": "npm run apidoc && npm run themedoc" }, "repository": { "type": "git", @@ -97,4 +98,4 @@ "tailwindcss": "^3.4.10", "tailwindcss-primeui": "^0.3.4" } -} \ No newline at end of file +} From 64c83009dd1b498254560153287dd4ae6d53eef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:07:03 +0300 Subject: [PATCH 05/49] Fix typo --- .../showcase/pages/landing/herosection.component.ts | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index d269ec09c9f..47031399c8f 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription } from 'rxjs'; +import { Subscription, debounceTime } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -227,7 +227,7 @@ import { KnobModule } from 'primeng/knob'; 'w-full': !isSlimMenu, }" > - + ・ Slim Mode @@ -741,14 +741,13 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Ultima', link: 'https://primevue.org/templates/ultima/', image: 'https://primefaces.org/cdn/primevue/images/layouts/ultima-vue.jpg', - text: 'Elevate your application\'s intuitiveness with Ultima\'s premium Material Design interface.', + text: "Elevate your application's intuitiveness with Ultima's premium Material Design interface.", }, { title: 'Diamond', link: 'https://primevue.org/templates/diamond/', image: 'https://primefaces.org/cdn/primevue/images/layouts/diamond-vue.jpg', - text: 'Handle complex operations with elegance with Diamond\'s robust and powerful premium design.', - }, + text: "H'Handle complex operations with elegance with Diamond\'s robust and powerful premium design.' }, { title: 'Atlantis', link: 'https://primevue.org/templates/atlantis/', @@ -759,7 +758,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' + text: 'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.', }, { title: 'Freya', From 50725f7ad8939d272c09e950ed934b453358b747 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:23:11 +0300 Subject: [PATCH 06/49] Init themedoc builder --- .gitignore | 3 +- api-generator/build-apidoc.ts | 4 +- api-generator/build-theming.ts | 92 ++++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 api-generator/build-theming.ts diff --git a/.gitignore b/.gitignore index 7dc352d2419..0df428e5061 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,8 @@ Thumbs.db # type doc api-generator/typedoc.json +api-generator/themedoc.json .vercel .nx -builder/node_modules \ No newline at end of file +builder/node_modules diff --git a/api-generator/build-apidoc.ts b/api-generator/build-apidoc.ts index ad34f3de605..671aad7e948 100644 --- a/api-generator/build-apidoc.ts +++ b/api-generator/build-apidoc.ts @@ -39,7 +39,6 @@ async function main() { const project = await app.convert(); await app.generateJson(project, `./api-generator/typedoc.json`); - if (project) { let doc = {}; @@ -53,7 +52,6 @@ async function main() { }; const modules = project.groups.find((g) => g.title === 'Modules'); - if (isProcessable(modules)) { modules.children.forEach((module) => { const name = module.name.replace(/.*\//, ''); @@ -383,6 +381,8 @@ async function main() { doc[name]['types'] = types; } + + // if(isProcessable(module_theming_group)) {} } } }); diff --git a/api-generator/build-theming.ts b/api-generator/build-theming.ts new file mode 100644 index 00000000000..2065162b1a9 --- /dev/null +++ b/api-generator/build-theming.ts @@ -0,0 +1,92 @@ +//@ts-ignore +const TypeDoc = require('typedoc'); +//@ts-ignore +const path = require('path'); +//@ts-ignore +const fs = require('fs'); +//@ts-ignore +const rootDir = path.resolve(__dirname, '../'); +//@ts-ignore +const outputPath = path.resolve(rootDir, 'src/app/showcase/doc/apidoc'); + +// const staticMessages = { +// methods: "Defines methods that can be accessed by the component's reference.", +// emits: 'Defines emit that determine the behavior of the component based on a given condition or report the actions that the component takes.', +// templates: 'Defines the templates used by the component.', +// events: "Defines the custom events used by the component's emitters.", +// interfaces: 'Defines the custom interfaces used by the module.', +// types: 'Defines the custom types used by the module.', +// props: 'Defines the input properties of the component.', +// service: 'Defines the service used by the component', +// }; + +async function theming() { + const app = await TypeDoc.Application.bootstrapWithPlugins({ + // typedoc options here + name: 'PrimeNG', + entryPoints: [`src/app/components/themes/types/accordion/`, `src/app/components/themes/types/panel/`], + entryPointStrategy: 'expand', + hideGenerator: true, + excludeExternals: true, + includeVersion: true, + searchInComments: true, + disableSources: false, + logLevel: 'Error', + sort: ['source-order'], + exclude: ['node_modules', 'src/app/components/**/*spec.ts', 'src/app/components/**/*public_api.ts'], + }); + + const project = await app.convert(); + await app.generateJson(project, `./api-generator/themedoc.json`); + // console.log(project); + if (project) { + let doc = {}; + + const parseText = (text) => { + return text.replace(/{/g, '{').replace(/}/g, '}'); + }; + + const getDeprecatedText = (signature) => { + const deprecatedTag = signature?.comment?.getTag('@deprecated'); + return deprecatedTag ? parseText(deprecatedTag.content[0].text) : undefined; + }; + + const isProcessable = (value) => { + return value && value.children && value.children.length; + }; + + const allowed = (name) => { + return !name.includes('ts-helpers') && !name.includes('icons'); + }; + + const modules = project.groups.find((g) => g.title === 'Modules'); + modules.children.forEach((child) => { + const _name = child.name.split('/').pop(); + doc[_name] = { + name: _name, + properties: {}, + }; + + child.groups.forEach((group) => { + // console.log(group.children); + }); + }); + + let mergedDocs = {}; + + for (const key in doc) { + if (!mergedDocs[key]) { + mergedDocs[key] = { + ...doc[key], + }; + } + } + + const typedocJSON = JSON.stringify(mergedDocs, null, 4); + + !fs.existsSync(outputPath) && fs.mkdirSync(outputPath); + fs.writeFileSync(path.resolve(outputPath, 'index.json'), typedocJSON); + } +} + +theming().catch(console.error); From d137b3854e74bc6745a2c8b50bbaf2c0b19e8e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:04:45 +0300 Subject: [PATCH 07/49] rebase v18 --- api-generator/themedoc.json | 148478 +-------------- package.json | 9 +- src/app/components/table/style/tablestyle.ts | 1 + .../layout/topbar/app.topbar.component.html | 16 +- .../pages/landing/herosection.component.ts | 8 +- .../showcase/styles/layout/_templates.scss | 6 +- .../layout/variables/landing/_dark.scss | 24 +- .../layout/variables/landing/_light.scss | 22 +- 8 files changed, 984 insertions(+), 147580 deletions(-) diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json index 7860206a168..753d2c18b95 100644 --- a/api-generator/themedoc.json +++ b/api-generator/themedoc.json @@ -48,7 +48,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" } ], "type": { @@ -92,7 +92,7 @@ "fileName": "accordion/index.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L23" } ], "type": { @@ -114,7 +114,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" } ] } @@ -141,7 +141,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "accordion/index.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L34" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "accordion/index.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L40" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" } ] } @@ -275,7 +275,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" } ], "type": { @@ -319,7 +319,7 @@ "fileName": "accordion/index.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L51" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "accordion/index.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L57" } ], "type": { @@ -399,7 +399,7 @@ "fileName": "accordion/index.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L63" } ], "type": { @@ -439,7 +439,7 @@ "fileName": "accordion/index.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L69" } ], "type": { @@ -479,7 +479,7 @@ "fileName": "accordion/index.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L75" } ], "type": { @@ -519,7 +519,7 @@ "fileName": "accordion/index.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L81" } ], "type": { @@ -559,7 +559,7 @@ "fileName": "accordion/index.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L87" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "accordion/index.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L93" } ], "type": { @@ -639,7 +639,7 @@ "fileName": "accordion/index.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L99" } ], "type": { @@ -679,7 +679,7 @@ "fileName": "accordion/index.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L105" } ], "type": { @@ -719,7 +719,7 @@ "fileName": "accordion/index.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L111" } ], "type": { @@ -759,7 +759,7 @@ "fileName": "accordion/index.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L117" } ], "type": { @@ -788,7 +788,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "accordion/index.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L127" } ], "type": { @@ -872,7 +872,7 @@ "fileName": "accordion/index.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L133" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "accordion/index.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L139" } ], "type": { @@ -952,7 +952,7 @@ "fileName": "accordion/index.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L145" } ], "type": { @@ -992,7 +992,7 @@ "fileName": "accordion/index.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L151" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" } ] } @@ -1045,7 +1045,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" } ], "type": { @@ -1089,7 +1089,7 @@ "fileName": "accordion/index.ts", "line": 162, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L162" } ], "type": { @@ -1129,7 +1129,7 @@ "fileName": "accordion/index.ts", "line": 168, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L168" } ], "type": { @@ -1169,7 +1169,7 @@ "fileName": "accordion/index.ts", "line": 174, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L174" } ], "type": { @@ -1209,7 +1209,7 @@ "fileName": "accordion/index.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L180" } ], "type": { @@ -1234,7 +1234,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" } ] } @@ -1261,7 +1261,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" } ], "type": { @@ -1305,7 +1305,7 @@ "fileName": "accordion/index.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L191" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "accordion/index.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L197" } ], "type": { @@ -1368,7 +1368,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" } ] } @@ -1395,7 +1395,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" } ], "type": { @@ -1439,7 +1439,7 @@ "fileName": "accordion/index.ts", "line": 208, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L208" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L208" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "accordion/index.ts", "line": 214, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L214" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" } ] } @@ -1537,7 +1537,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" } ] } @@ -1564,7 +1564,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "accordion/index.ts", "line": 226, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L226" } ], "type": { @@ -1648,7 +1648,7 @@ "fileName": "accordion/index.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L232" } ], "type": { @@ -1688,7 +1688,7 @@ "fileName": "accordion/index.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L238" } ], "type": { @@ -1728,7 +1728,7 @@ "fileName": "accordion/index.ts", "line": 244, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L244" } ], "type": { @@ -1768,7 +1768,7 @@ "fileName": "accordion/index.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L250" } ], "type": { @@ -1794,7 +1794,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" } ] } @@ -1813,7 +1813,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -1838,7 +1838,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -1876,7 +1876,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -1916,14 +1916,14 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1605, + "target": -1, "name": "ColorSchemeDesignToken.colorScheme" } } @@ -1945,13 +1945,16 @@ "fileName": "accordion/index.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L13" } ], "extendedTypes": [ { "type": "reference", - "target": 1604, + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, "typeArguments": [ { "type": "reference", @@ -1979,13 +1982,13 @@ "fileName": "accordion/index.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L1" } ] }, { "id": 56, - "name": "themes/autocomplete", + "name": "themes/panel", "variant": "declaration", "kind": 2, "flags": {}, @@ -1993,19 +1996,146 @@ "summary": [ { "kind": "text", - "text": "AutoComplete Design Tokens\n\n[Live Demo](https://www.primeng.org/autocomplete/)" + "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" } ] }, "children": [ { "id": 57, - "name": "AutoCompleteDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { + "name": "PanelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 84, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 85, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 86, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 87, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 86, + 87 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { "id": 58, "name": "root", "variant": "declaration", @@ -2023,10 +2153,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" } ], "type": { @@ -2059,7 +2189,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.background" + "text": "panel.background" } ] } @@ -2067,10 +2197,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L23" } ], "type": { @@ -2080,7 +2210,7 @@ }, { "id": 61, - "name": "disabledBackground", + "name": "borderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2090,7 +2220,7 @@ "summary": [ { "kind": "text", - "text": "Disabled background of root" + "text": "Border color of root" } ], "blockTags": [ @@ -2099,7 +2229,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.disabled.background" + "text": "panel.border.color" } ] } @@ -2107,10 +2237,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L29" } ], "type": { @@ -2120,7 +2250,7 @@ }, { "id": 62, - "name": "filledBackground", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2130,7 +2260,7 @@ "summary": [ { "kind": "text", - "text": "Filled background of root" + "text": "Color of root" } ], "blockTags": [ @@ -2139,7 +2269,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.filled.background" + "text": "panel.color" } ] } @@ -2147,10 +2277,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L35" } ], "type": { @@ -2160,7 +2290,7 @@ }, { "id": 63, - "name": "filledFocusBackground", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2170,7 +2300,7 @@ "summary": [ { "kind": "text", - "text": "Filled focus background of root" + "text": "Border radius of root" } ], "blockTags": [ @@ -2179,7 +2309,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.filled.focus.background" + "text": "panel.border.radius" } ] } @@ -2187,100 +2317,76 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 64, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 65, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 60, + 61, + 62, + 63 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 64, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 65, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { "id": 66, - "name": "focusBorderColor", + "name": "background", "variant": "declaration", "kind": 1024, "flags": { @@ -2290,7 +2396,7 @@ "summary": [ { "kind": "text", - "text": "Focus border color of root" + "text": "Background of header" } ], "blockTags": [ @@ -2299,7 +2405,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.focus.border.color" + "text": "panel.header.background" } ] } @@ -2307,10 +2413,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 59, + "fileName": "panel/index.d.ts", + "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L52" } ], "type": { @@ -2320,7 +2426,7 @@ }, { "id": 67, - "name": "invalidBorderColor", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2330,7 +2436,7 @@ "summary": [ { "kind": "text", - "text": "Invalid border color of root" + "text": "Color of header" } ], "blockTags": [ @@ -2339,7 +2445,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.invalid.border.color" + "text": "panel.header.color" } ] } @@ -2347,10 +2453,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 65, + "fileName": "panel/index.d.ts", + "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L58" } ], "type": { @@ -2360,7 +2466,7 @@ }, { "id": 68, - "name": "color", + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2370,7 +2476,7 @@ "summary": [ { "kind": "text", - "text": "Color of root" + "text": "Padding of header" } ], "blockTags": [ @@ -2379,7 +2485,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.color" + "text": "panel.header.padding" } ] } @@ -2387,10 +2493,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 71, + "fileName": "panel/index.d.ts", + "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L64" } ], "type": { @@ -2400,7 +2506,7 @@ }, { "id": 69, - "name": "disabledColor", + "name": "borderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2410,7 +2516,7 @@ "summary": [ { "kind": "text", - "text": "Disabled color of root" + "text": "Border color of header" } ], "blockTags": [ @@ -2419,7 +2525,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.disabled.color" + "text": "panel.header.border.color" } ] } @@ -2427,10 +2533,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 77, + "fileName": "panel/index.d.ts", + "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L70" } ], "type": { @@ -2440,7 +2546,7 @@ }, { "id": 70, - "name": "placeholderColor", + "name": "borderWidth", "variant": "declaration", "kind": 1024, "flags": { @@ -2450,7 +2556,7 @@ "summary": [ { "kind": "text", - "text": "Placeholder color of root" + "text": "Border width of header" } ], "blockTags": [ @@ -2459,7 +2565,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.placeholder.color" + "text": "panel.header.border.width" } ] } @@ -2467,10 +2573,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 83, + "fileName": "panel/index.d.ts", + "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L76" } ], "type": { @@ -2480,87 +2586,7 @@ }, { "id": 71, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 72, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 73, - "name": "paddingY", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2570,7 +2596,7 @@ "summary": [ { "kind": "text", - "text": "Padding y of root" + "text": "Border radius of header" } ], "blockTags": [ @@ -2579,7 +2605,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.padding.y" + "text": "panel.header.border.radius" } ] } @@ -2587,20 +2613,78 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 101, + "fileName": "panel/index.d.ts", + "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L82" } ], "type": { "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 66, + 67, + 68, + 69, + 70, + 71 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 72, + "name": "toggleableHeader", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toggleable header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 73, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { "id": 74, - "name": "borderRadius", + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2610,7 +2694,7 @@ "summary": [ { "kind": "text", - "text": "Border radius of root" + "text": "Padding of toggleable header" } ], "blockTags": [ @@ -2619,7 +2703,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.border.radius" + "text": "panel.toggleable.header.padding" } ] } @@ -2627,277 +2711,259 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 75, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 76, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 77, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 78, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 79, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 80, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 81, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 77, - 78, - 79, - 80, - 81 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 82, - "name": "transitionDuration", + "fileName": "panel/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 74 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ] + } + } + }, + { + "id": 75, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 76, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 77, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 77 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 78, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 79, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 80, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 80 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ] + } + } + }, + { + "id": 81, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 82, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 83, + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2907,7 +2973,7 @@ "summary": [ { "kind": "text", - "text": "Transition duration of root" + "text": "Padding of footer" } ], "blockTags": [ @@ -2916,7 +2982,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.transition.duration" + "text": "panel.footer.padding" } ] } @@ -2924,10 +2990,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 148, + "fileName": "panel/index.d.ts", + "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L126" } ], "type": { @@ -2940,147110 +3006,448 @@ { "title": "Properties", "children": [ - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 82 + 83 ] } ], "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "fileName": "panel/index.d.ts", + "line": 120, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" } ] } } - }, + } + ], + "groups": [ { - "id": 83, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ + "title": "Properties", + "children": [ + 84, + 58, + 64, + 72, + 75, + 78, + 81 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, + "typeArguments": [ { - "fileName": "autocomplete/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" } ], - "type": { - "type": "reflection", - "declaration": { - "id": 84, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 85, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 86, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 87, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 88, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 89, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 85, - 86, - 87, - 88, - 89 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 153, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 90, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 188, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L188" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 91, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 92, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 93, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 92, - 93 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 188, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L188" - } - ] - } - } - }, - { - "id": 94, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 95, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 96, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 97, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 98, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 99, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 100, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 101, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 241, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L241" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 102, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 247, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L247" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 103, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 253, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L253" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 104, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 259, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L259" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 205, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 105, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 264, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L264" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 106, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 107, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 270, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L270" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 108, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 276, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L276" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 109, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 282, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L282" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 110, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 288, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L288" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 107, - 108, - 109, - 110 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 264, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L264" - } - ] - } - } - }, - { - "id": 111, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 293, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L293" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 112, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 113, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 299, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L299" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 114, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 305, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L305" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 115, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 311, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L311" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 116, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 317, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L317" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 117, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 323, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L323" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 118, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of dropdown" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 119, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 120, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 333, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 121, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 339, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L339" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 122, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 345, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L345" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 123, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L351" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 124, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 357, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 120, - 121, - 122, - 123, - 124 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 327, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 125, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 364, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 126, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 370, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 127, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 376, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 128, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 382, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L382" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 129, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 388, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L388" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 130, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 394, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L394" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 113, - 114, - 115, - 116, - 117, - 118, - 125, - 126, - 127, - 128, - 129, - 130 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 293, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L293" - } - ] - } - } - }, - { - "id": 131, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 399, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L399" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 132, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 133, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 405, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L405" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 133 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 399, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L399" - } - ] - } - } - }, - { - "id": 134, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 410, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L410" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 135, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 136, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 416, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L416" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 136 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 410, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L410" - } - ] - } - } - }, - { - "id": 137, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 138, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 139, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 140, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 139, - 140 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 58, - 83, - 90, - 94, - 105, - 111, - 131, - 134, - 137 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 57 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L1" - } - ] - }, - { - "id": 141, - "name": "themes/avatar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Avatar Design Tokens\n\n[Live Demo](https://www.primeng.org/avatar/)" - } - ] - }, - "children": [ - { - "id": 142, - "name": "AvatarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 143, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 144, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 145, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 146, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 147, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 148, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 149, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 145, - 146, - 147, - 148, - 149 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 150, - "name": "group", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the group section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 152, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.group.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 153, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Offset of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.group.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 152, - 153 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 52, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 154, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the lg section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 156, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 157, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 158, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 156, - 157, - 158 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 69, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 159, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the xl section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 160, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 161, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 162, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 163, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 161, - 162, - 163 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 92, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 164, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 165, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 166, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 167, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 166, - 167 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 143, - 150, - 154, - 159, - 164 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 142 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L1" - } - ] - }, - { - "id": 168, - "name": "themes/badge", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Badge Design Tokens\n\n[Live Demo](https://www.primeng.org/badge/)" - } - ] - }, - "children": [ - { - "id": 169, - "name": "BadgeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 170, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 172, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 173, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 174, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 175, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 176, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 177, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 172, - 173, - 174, - 175, - 176, - 177 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 178, - "name": "dot", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dot section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 179, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 180, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of dot" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.dot.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 180 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 58, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 181, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sm section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 182, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 183, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 184, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 185, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 183, - 184, - 185 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 69, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 186, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the lg section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 187, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 188, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 189, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 190, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 188, - 189, - 190 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 92, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 191, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the xl section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 115, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 192, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 193, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 194, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 195, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 193, - 194, - 195 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 115, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L115" - } - ] - } - } - }, - { - "id": 196, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the primary section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 138, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L138" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 197, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 198, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 199, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 198, - 199 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 138, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L138" - } - ] - } - } - }, - { - "id": 200, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 201, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 202, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 203, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 202, - 203 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 155, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 204, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 172, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 205, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 206, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 178, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 207, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 206, - 207 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 172, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L172" - } - ] - } - } - }, - { - "id": 208, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 189, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L189" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 209, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 210, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 211, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 201, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 210, - 211 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 189, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L189" - } - ] - } - } - }, - { - "id": 212, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 206, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L206" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 213, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 214, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 212, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 215, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 218, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L218" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 214, - 215 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 206, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L206" - } - ] - } - } - }, - { - "id": 216, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the danger section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 223, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L223" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 217, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 218, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 219, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 218, - 219 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 223, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L223" - } - ] - } - } - }, - { - "id": 220, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 240, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L240" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 221, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 222, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 246, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L246" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 223, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 252, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L252" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 222, - 223 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 240, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L240" - } - ] - } - } - }, - { - "id": 224, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 225, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 226, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 227, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 226, - 227 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 170, - 178, - 181, - 186, - 191, - 196, - 200, - 204, - 208, - 212, - 216, - 220, - 224 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 169 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L1" - } - ] - }, - { - "id": 228, - "name": "themes/blockui", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "BlockUI Design Tokens\n\n[Live Demo](https://www.primeng.org/blockui/)" - } - ] - }, - "children": [ - { - "id": 229, - "name": "BlockUIDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 230, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 231, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 232, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "blockui.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 232 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 233, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 234, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 235, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 236, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 235, - 236 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 230, - 233 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 229 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L1" - } - ] - }, - { - "id": 237, - "name": "themes/breadcrumb", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Breadcrumb Design Tokens\n\n[Live Demo](https://www.primeng.org/breadcrumb/)" - } - ] - }, - "children": [ - { - "id": 238, - "name": "BreadcrumbDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 239, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 240, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 241, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 242, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 243, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 244, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 241, - 242, - 243, - 244 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 245, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 246, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 247, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 248, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 249, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 250, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 251, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 252, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 253, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 254, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 253, - 254 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 74, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 255, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 256, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 257, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 258, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 259, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 260, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 115, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 261, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 257, - 258, - 259, - 260, - 261 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 91, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 247, - 248, - 249, - 250, - 251, - 255 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 262, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 127, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 264, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.separator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 264 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 127, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" - } - ] - } - } - }, - { - "id": 265, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 266, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 267, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 268, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 267, - 268 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 239, - 245, - 262, - 265 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 238 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L1" - } - ] - }, - { - "id": 269, - "name": "themes/button", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Button Design Tokens\n\n[Live Demo](https://www.primeng.org/button/)" - } - ] - }, - "children": [ - { - "id": 270, - "name": "ButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 271, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 272, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 273, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 274, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 275, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 276, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 277, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 278, - "name": "iconOnlyWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon only width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.icon.only.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 279, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 280, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 281, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 282, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 283, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 281, - 282, - 283 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 57, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 284, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 285, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 286, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 287, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 288, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 286, - 287, - 288 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 80, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 289, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Label of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 290, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 291, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Label font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 291 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 103, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 292, - "name": "raisedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Raised shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.raised.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 293, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 295, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 296, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 297, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 295, - 296, - 297 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 120, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 298, - "name": "badgeSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Badge size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.badge.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 299, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 300, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 301, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 302, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 303, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 304, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 305, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 179, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 306, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 185, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 307, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 191, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 308, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 197, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 309, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 203, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 310, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 209, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 311, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 213, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L213" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 312, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 313, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 219, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L219" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 314, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 225, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 313, - 314 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 213, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L213" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 155, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 315, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L231" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 316, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 317, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 237, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 318, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 243, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 319, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 249, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 320, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 255, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 321, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 261, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 322, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 267, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 323, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 273, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L273" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 324, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 279, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L279" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 325, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 285, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 326, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 289, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L289" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 327, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 328, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 295, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L295" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 329, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 301, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L301" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 328, - 329 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 289, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L289" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 231, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L231" - } - ] - } - } - }, - { - "id": 330, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 307, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L307" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 331, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 332, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 313, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L313" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 333, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 319, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L319" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 334, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 325, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 335, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 331, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 336, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 337, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 337, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 343, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 338, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 349, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 339, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 355, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L355" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 340, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 361, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 341, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 365, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L365" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 342, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 343, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 371, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L371" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 344, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 377, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 343, - 344 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 365, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L365" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 307, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L307" - } - ] - } - } - }, - { - "id": 345, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 383, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L383" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 346, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 347, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 389, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L389" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 348, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 395, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L395" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 349, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 401, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 350, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 407, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 351, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 413, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L413" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 352, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 419, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L419" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 353, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 425, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L425" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 354, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 431, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L431" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 355, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 437, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L437" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 356, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 441, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L441" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 357, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 358, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 447, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L447" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 359, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 453, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L453" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 358, - 359 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 441, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L441" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 383, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L383" - } - ] - } - } - }, - { - "id": 360, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 459, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L459" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 361, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 362, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L465" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 363, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 471, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L471" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 364, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 477, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 365, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 483, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L483" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 366, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 489, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L489" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 367, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 495, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L495" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 368, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 501, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L501" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 369, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 507, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L507" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 370, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 513, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 371, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 517, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L517" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 372, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 373, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 523, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L523" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 374, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 529, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L529" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 373, - 374 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 517, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L517" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 459, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L459" - } - ] - } - } - }, - { - "id": 375, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 535, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L535" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 376, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 377, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 541, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L541" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 378, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 547, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L547" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 379, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 553, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L553" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 380, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 559, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L559" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 381, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 565, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L565" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 382, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 571, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L571" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 383, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 577, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L577" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 384, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 583, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L583" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 385, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 589, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L589" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 386, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 593, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L593" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 387, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 388, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 599, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L599" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 389, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 605, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L605" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 388, - 389 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 593, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L593" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 535, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L535" - } - ] - } - } - }, - { - "id": 390, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 611, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L611" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 391, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 392, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 617, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L617" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 393, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 623, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L623" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 394, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 629, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L629" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 395, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 635, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L635" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 396, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 641, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L641" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 397, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 647, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L647" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 398, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 653, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L653" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 399, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 659, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L659" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 400, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 665, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L665" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 401, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 669, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L669" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 402, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 403, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 675, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L675" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 404, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 681, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L681" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 403, - 404 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 669, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L669" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 611, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L611" - } - ] - } - } - }, - { - "id": 405, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 687, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L687" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 406, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 407, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 693, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L693" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 408, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 699, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L699" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 409, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 705, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L705" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 410, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 711, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L711" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 411, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 717, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L717" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 412, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 723, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L723" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 413, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 729, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L729" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 414, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 735, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L735" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 415, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 741, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L741" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 416, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 745, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L745" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 417, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 418, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 751, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L751" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 419, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 757, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L757" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 418, - 419 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 745, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L745" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 687, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L687" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 284, - 289, - 292, - 293, - 298, - 299, - 300, - 315, - 330, - 345, - 360, - 375, - 390, - 405 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 420, - "name": "outlined", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the outlined section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 764, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L764" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 421, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 422, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 768, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L768" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 423, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 424, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 774, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L774" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 425, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 780, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L780" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 426, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 786, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L786" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 427, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 792, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L792" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 424, - 425, - 426, - 427 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 768, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L768" - } - ] - } - } - }, - { - "id": 428, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 797, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L797" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 429, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 430, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 803, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L803" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 431, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 809, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L809" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 432, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 815, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L815" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 433, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 821, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L821" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 430, - 431, - 432, - 433 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 797, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L797" - } - ] - } - } - }, - { - "id": 434, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 826, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L826" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 435, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 436, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 832, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L832" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 437, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 838, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L838" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 438, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 844, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L844" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 439, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 850, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L850" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 436, - 437, - 438, - 439 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 826, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L826" - } - ] - } - } - }, - { - "id": 440, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 855, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L855" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 442, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 861, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L861" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 443, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 867, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L867" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 444, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 873, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L873" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 879, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L879" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 442, - 443, - 444, - 445 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 855, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L855" - } - ] - } - } - }, - { - "id": 446, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 884, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L884" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 447, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 448, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 890, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L890" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 449, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 896, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L896" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 450, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 902, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L902" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 451, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 908, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L908" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 448, - 449, - 450, - 451 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 884, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L884" - } - ] - } - } - }, - { - "id": 452, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 913, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L913" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 453, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 454, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 919, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L919" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 455, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 925, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L925" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 456, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 931, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L931" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 457, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 937, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L937" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 454, - 455, - 456, - 457 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 913, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L913" - } - ] - } - } - }, - { - "id": 458, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 942, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L942" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 459, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 460, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 948, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L948" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 461, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 954, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L954" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 462, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 960, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L960" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 463, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 966, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L966" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 460, - 461, - 462, - 463 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 942, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L942" - } - ] - } - } - }, - { - "id": 464, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 971, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L971" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 465, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 466, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 977, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L977" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 467, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 983, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L983" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 468, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 989, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L989" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 469, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 995, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L995" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 466, - 467, - 468, - 469 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 971, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L971" - } - ] - } - } - }, - { - "id": 470, - "name": "plain", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1000, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1000" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 471, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 472, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1006, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1006" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 473, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1012, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1012" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 474, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1018, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1018" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 475, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1024, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1024" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 472, - 473, - 474, - 475 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1000, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1000" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 422, - 428, - 434, - 440, - 446, - 452, - 458, - 464, - 470 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 764, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L764" - } - ] - } - } - }, - { - "id": 476, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1030, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1030" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 477, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 478, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1034, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1034" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 479, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 480, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1040, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1040" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 481, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1046, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1046" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1052, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1052" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 480, - 481, - 482 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1034, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1034" - } - ] - } - } - }, - { - "id": 483, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1057, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1057" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 484, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 485, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1063, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1063" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 486, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1069, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1069" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 487, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1075, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1075" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 485, - 486, - 487 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1057, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1057" - } - ] - } - } - }, - { - "id": 488, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1080, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1080" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 489, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 490, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1086, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1086" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 491, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1092, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1092" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 492, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1098, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1098" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 490, - 491, - 492 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1080, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1080" - } - ] - } - } - }, - { - "id": 493, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 494, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 495, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 496, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1115, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 497, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 495, - 496, - 497 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1103, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1103" - } - ] - } - } - }, - { - "id": 498, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1126" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 499, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 500, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 501, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 502, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1144, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 500, - 501, - 502 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1126, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1126" - } - ] - } - } - }, - { - "id": 503, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 504, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 505, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 506, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 507, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 505, - 506, - 507 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1149, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1149" - } - ] - } - } - }, - { - "id": 508, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1172, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 509, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 510, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1178, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 511, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1184, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 512, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1190, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 510, - 511, - 512 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1172, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1172" - } - ] - } - } - }, - { - "id": 513, - "name": "plain", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1195" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 514, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 515, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1201, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 516, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1207, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 517, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1213, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1213" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 515, - 516, - 517 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1195, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1195" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 478, - 483, - 488, - 493, - 498, - 503, - 508, - 513 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1030, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1030" - } - ] - } - } - }, - { - "id": 518, - "name": "link", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the link section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1219, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1219" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 519, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 520, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1225, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 521, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 522, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1237, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 520, - 521, - 522 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1219, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1219" - } - ] - } - } - }, - { - "id": 523, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 525, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 526, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 525, - 526 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 271, - 420, - 476, - 518, - 523 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 270 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1" - } - ] - }, - { - "id": 527, - "name": "themes/card", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Card Design Tokens\n\n[Live Demo](https://www.primeng.org/card/)" - } - ] - }, - "children": [ - { - "id": 528, - "name": "CardDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 529, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 530, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 531, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 532, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 533, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 534, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 531, - 532, - 533, - 534 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 535, - "name": "body", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 536, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 537, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.body.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 538, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of body" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.body.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 537, - 538 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 539, - "name": "caption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the caption section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 541, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.caption.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 541 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 63, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 542, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 543, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 544, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 545, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 544, - 545 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 546, - "name": "subtitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the subtitle section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 547, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 548, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of subtitle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.subtitle.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 548 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 91, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 549, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 550, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 551, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 552, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 551, - 552 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 529, - 535, - 539, - 542, - 546, - 549 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 528 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L1" - } - ] - }, - { - "id": 553, - "name": "themes/carousel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Carousel Design Tokens\n\n[Live Demo](https://www.primeng.org/carousel/)" - } - ] - }, - "children": [ - { - "id": 554, - "name": "CarouselDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 555, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 556, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 557, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 557 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 558, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 559, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 560, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 560 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 561, - "name": "indicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L39" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 562, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 563, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 45, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 564, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 563, - 564 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 39, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L39" - } - ] - } - } - }, - { - "id": 565, - "name": "indicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 56, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L56" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 566, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 567, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 62, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 568, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 569, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 570, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of indicator" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L78" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 571, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 572, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 84, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 573, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 90, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 574, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 96, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 575, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 572, - 573, - 574, - 575, - 576 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 78, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L78" - } - ] - } - } - }, - { - "id": 577, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 578, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 579, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 567, - 568, - 569, - 570, - 577, - 578, - 579 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 56, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L56" - } - ] - } - } - }, - { - "id": 580, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 581, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 582, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 583, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 582, - 583 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 555, - 558, - 561, - 565, - 580 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 554 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L1" - } - ] - }, - { - "id": 584, - "name": "themes/cascadeselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "CascadeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/cascadeselect/)" - } - ] - }, - "children": [ - { - "id": 585, - "name": "CascadeSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 586, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 587, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 588, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 589, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 590, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 591, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 592, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 593, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 594, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 595, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 596, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 597, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 598, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 599, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 600, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 601, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 602, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 603, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 604, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 605, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 606, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 607, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 608, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 609, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 605, - 606, - 607, - 608, - 609 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 610, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 610 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 611, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 612, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 613, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 614, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 613, - 614 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 615, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 616, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 617, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 618, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 619, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 620, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 621, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 617, - 618, - 619, - 620, - 621 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 622, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 623, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 624, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 625, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 624, - 625 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 626, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 222, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 627, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 628, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 629, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 234, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L234" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 630, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 240, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L240" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 631, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 246, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L246" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 632, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 252, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L252" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 633, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 258, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L258" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 634, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 264, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L264" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 635, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 270, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L270" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 636, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 276, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L276" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 637, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of option" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 638, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 639, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 286, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L286" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 640, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 292, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L292" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 641, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 298, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 639, - 640, - 641 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 280, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 222, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" - } - ] - } - } - }, - { - "id": 642, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 643, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 644, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 645, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 644, - 645 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 586, - 611, - 615, - 622, - 626, - 642 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 585 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L1" - } - ] - }, - { - "id": 646, - "name": "themes/checkbox", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checkbox Design Tokens\n\n[Live Demo](https://www.primeng.org/checkbox/)" - } - ] - }, - "children": [ - { - "id": 647, - "name": "CheckboxDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 648, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 649, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 650, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 651, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 652, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 653, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 654, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 655, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 656, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 657, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 658, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 659, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 660, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 661, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 662, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 663, - "name": "checkedFocusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 664, - "name": "checkedDisabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 665, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 113, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 666, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 119, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L119" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 667, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L123" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 668, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 669, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 670, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 671, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 672, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 673, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 153, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L153" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 669, - 670, - 671, - 672, - 673 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 123, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L123" - } - ] - } - } - }, - { - "id": 674, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 674 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 675, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 676, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 677, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 678, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 679, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 680, - "name": "checkedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.checked.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 189, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 681, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 677, - 678, - 679, - 680, - 681 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 165, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L165" - } - ] - } - } - }, - { - "id": 682, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 683, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 684, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 685, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 684, - 685 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 648, - 675, - 682 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 647 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L1" - } - ] - }, - { - "id": 686, - "name": "themes/chip", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Chip Design Tokens\n\n[Live Demo](https://www.primeng.org/chip/)" - } - ] - }, - "children": [ - { - "id": 687, - "name": "ChipDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 688, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 689, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 690, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 691, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 692, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 693, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 694, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 695, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 696, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 690, - 691, - 692, - 693, - 694, - 695, - 696 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 697, - "name": "image", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the image section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 698, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 699, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of image" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.image.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 700, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of image" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.image.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 699, - 700 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 64, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 701, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 702, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 703, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 704, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 703, - 704 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 705, - "name": "removeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the remove icon section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 706, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 707, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 708, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of remove icon" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L108" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 709, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 710, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 711, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 712, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 713, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 714, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 710, - 711, - 712, - 713, - 714 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 108, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L108" - } - ] - } - } - }, - { - "id": 715, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 707, - 708, - 715 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 98, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 716, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 717, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 718, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 719, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 718, - 719 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 688, - 697, - 701, - 705, - 716 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 687 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L1" - } - ] - }, - { - "id": 720, - "name": "themes/colorpicker", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ColorPicker Design Tokens\n\n[Live Demo](https://www.primeng.org/colorpicker/)" - } - ] - }, - "children": [ - { - "id": 721, - "name": "ColorPickerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 722, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 723, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 724, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 724 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 725, - "name": "preview", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the preview section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 726, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 727, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 728, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 729, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 730, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of preview" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 50, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L50" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 731, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 732, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 56, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L56" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 733, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 62, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 734, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 68, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 735, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 736, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 732, - 733, - 734, - 735, - 736 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 50, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L50" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 727, - 728, - 729, - 730 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 737, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 738, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 739, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 740, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 741, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 742, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 739, - 740, - 741, - 742 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 743, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 115, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 744, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 745, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.handle.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 745 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 115, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L115" - } - ] - } - } - }, - { - "id": 746, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 747, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 748, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 749, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 748, - 749 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 722, - 725, - 737, - 743, - 746 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 721 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L1" - } - ] - }, - { - "id": 750, - "name": "themes/confirmdialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ConfirmDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmdialog/)" - } - ] - }, - "children": [ - { - "id": 751, - "name": "ConfirmDialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 752, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 753, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 754, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 755, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 754, - 755 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 756, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 757, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 758, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 758 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 34, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 759, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 760, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 761, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 762, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 761, - 762 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 752, - 756, - 759 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 751 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L1" - } - ] - }, - { - "id": 763, - "name": "themes/confirmpopup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ConfirmPopup Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmpopup/)" - } - ] - }, - "children": [ - { - "id": 764, - "name": "ConfirmPopupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 765, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 766, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 767, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 768, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 769, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 770, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 771, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 772, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 773, - "name": "arrowOffset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Arrow offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.arrow.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 767, - 768, - 769, - 770, - 771, - 772, - 773 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 774, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 775, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 776, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 777, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 776, - 777 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 64, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 778, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 780, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 781, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 780, - 781 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 782, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 784, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 785, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 784, - 785 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 98, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 786, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 787, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 788, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 789, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 788, - 789 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 765, - 774, - 778, - 782, - 786 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 764 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L1" - } - ] - }, - { - "id": 790, - "name": "themes/contextmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ContextMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/contextmenu/)" - } - ] - }, - "children": [ - { - "id": 791, - "name": "ContextMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 792, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 794, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 795, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 796, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 797, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 798, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 799, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 794, - 795, - 796, - 797, - 798, - 799 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 800, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 801, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 802, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 803, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 802, - 803 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 804, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 805, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 806, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 807, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 808, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 809, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 810, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 811, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 812, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 813, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 814, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 815, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 816, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 817, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 818, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 816, - 817, - 818 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 819, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 820, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 821, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 822, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 823, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 824, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 821, - 822, - 823, - 824 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 151, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 825, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 180, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 826, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 827, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 827 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 180, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L180" - } - ] - } - } - }, - { - "id": 828, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 829, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 830, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 831, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 830, - 831 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 792, - 800, - 804, - 819, - 825, - 828 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 791 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L1" - } - ] - }, - { - "id": 832, - "name": "themes/table", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DataTable Design Tokens\n\n[Live Demo](https://www.primeng.org/datatable/)" - } - ] - }, - "children": [ - { - "id": 833, - "name": "DataTableDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 834, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 835, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 836, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 837, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 836, - 837 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 838, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 839, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 840, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 841, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 842, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 843, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 844, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 840, - 841, - 842, - 843, - 844 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 845, - "name": "headerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 846, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 847, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 848, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 849, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 850, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 851, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 852, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 853, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 854, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 855, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 856, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of header cell" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 857, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 858, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 859, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 860, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 861, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 862, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 858, - 859, - 860, - 861, - 862 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 127, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 69, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 863, - "name": "columnTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column title section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 864, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 865, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 865 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 163, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L163" - } - ] - } - } - }, - { - "id": 866, - "name": "row", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 174, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L174" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 867, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 868, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 869, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 870, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 871, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 872, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 873, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 874, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 214, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L214" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 875, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 876, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 220, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L220" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 877, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 226, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L226" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 878, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 232, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 879, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 238, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 880, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 244, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L244" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 876, - 877, - 878, - 879, - 880 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 214, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L214" - } - ] - } - } - }, - { - "id": 881, - "name": "stripedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Striped background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.striped.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 881 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 174, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L174" - } - ] - } - } - }, - { - "id": 882, - "name": "bodyCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 256, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L256" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 883, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 884, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 885, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 886, - "name": "selectedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.selected.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 884, - 885, - 886 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 256, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L256" - } - ] - } - } - }, - { - "id": 887, - "name": "footerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 888, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 889, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 890, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 891, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 892, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 889, - 890, - 891, - 892 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 893, - "name": "columnFooter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column footer section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 308, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 894, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 895, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.footer.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 314, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 895 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 308, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L308" - } - ] - } - } - }, - { - "id": 896, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 319, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L319" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 897, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 898, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 899, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 900, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 901, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 902, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 898, - 899, - 900, - 901, - 902 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 319, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L319" - } - ] - } - } - }, - { - "id": 903, - "name": "dropPointColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the drop point color section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 354, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L354" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 904, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 905, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 906, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 366, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L366" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 907, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 372, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L372" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 908, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 378, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L378" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 909, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 384, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L384" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 910, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 390, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L390" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 911, - "name": "6", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "6 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.6" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 396, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L396" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 912, - "name": "7", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "7 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.7" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 402, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L402" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 913, - "name": "8", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "8 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.8" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 408, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L408" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 914, - "name": "9", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "9 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.9" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 414, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L414" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 915, - "name": "10", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "10 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.10" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 420, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L420" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 916, - "name": "11", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "11 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.11" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 426, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L426" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 917, - "name": "12", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "12 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.12" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 432, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L432" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 918, - "name": "13", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "13 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.13" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 438, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L438" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 919, - "name": "14", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "14 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.14" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 444, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L444" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 354, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L354" - } - ] - } - } - }, - { - "id": 920, - "name": "columnResizerWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column resizer width section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 449, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L449" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 921, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 922, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 455, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L455" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 923, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 461, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L461" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 924, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 467, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L467" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 925, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 473, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L473" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 926, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 479, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L479" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 927, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 485, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L485" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 922, - 923, - 924, - 925, - 926, - 927 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 449, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L449" - } - ] - } - } - }, - { - "id": 928, - "name": "resizeIndicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the resize indicator section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 490, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L490" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 929, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 930, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.resize.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 496, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L496" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 931, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.resize.indicator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 502, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L502" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 930, - 931 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 490, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L490" - } - ] - } - } - }, - { - "id": 932, - "name": "sortIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sort icon section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 507, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L507" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 933, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 934, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.sort.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 513, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 935, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.sort.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 519, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L519" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 934, - 935 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 507, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L507" - } - ] - } - } - }, - { - "id": 936, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 524, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L524" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 937, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 938, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 530, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L530" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 938 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 524, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L524" - } - ] - } - } - }, - { - "id": 939, - "name": "rowToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 535, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L535" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 940, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 941, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 541, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L541" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 942, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 547, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L547" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 943, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 553, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L553" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 944, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 559, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L559" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 945, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 565, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L565" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 946, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 571, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L571" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 947, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 577, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L577" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 948, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row toggle button" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 581, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L581" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 949, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 950, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 587, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L587" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 951, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 593, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L593" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 952, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 599, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L599" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 953, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 605, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L605" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 954, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 611, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L611" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 950, - 951, - 952, - 953, - 954 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 581, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L581" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 535, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L535" - } - ] - } - } - }, - { - "id": 955, - "name": "filter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the filter section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 617, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L617" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 956, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 957, - "name": "inlineGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inline gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.inline.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 623, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L623" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 958, - "name": "overlaySelect", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 627, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L627" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 959, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 960, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 633, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L633" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 961, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 639, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L639" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 962, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 645, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L645" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 963, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 651, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L651" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 964, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select shadow of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 657, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L657" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 960, - 961, - 962, - 963, - 964 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 627, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L627" - } - ] - } - } - }, - { - "id": 965, - "name": "overlayPopover", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 662, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L662" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 966, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 967, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 668, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L668" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 968, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 674, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L674" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 969, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 680, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L680" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 970, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 686, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L686" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 971, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover shadow of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 692, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L692" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 972, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 698, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L698" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 973, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 704, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L704" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 967, - 968, - 969, - 970, - 971, - 972, - 973 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 662, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L662" - } - ] - } - } - }, - { - "id": 974, - "name": "rule", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rule of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 709, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L709" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 975, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 976, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rule border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.rule.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 715, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L715" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 976 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 709, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L709" - } - ] - } - } - }, - { - "id": 977, - "name": "constraintList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 720, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L720" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 978, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 979, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 726, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L726" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 980, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 732, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L732" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 979, - 980 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 720, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L720" - } - ] - } - } - }, - { - "id": 981, - "name": "constraint", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 737, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L737" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 982, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 983, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint focus background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 743, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L743" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 984, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 749, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L749" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 985, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected focus background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 755, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L755" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 986, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 761, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L761" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 987, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint focus color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 767, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L767" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 988, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 773, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L773" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 989, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected focus color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 779, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L779" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 990, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint separator of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 783, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L783" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 991, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 992, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint separator border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 789, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L789" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 992 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 783, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L783" - } - ] - } - } - }, - { - "id": 993, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 796, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L796" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 994, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 802, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L802" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 993, - 994 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 737, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L737" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 957, - 958, - 965, - 974, - 977, - 981 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 617, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L617" - } - ] - } - } - }, - { - "id": 995, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 808, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L808" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 996, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 997, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 814, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L814" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 998, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 820, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L820" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 997, - 998 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 808, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L808" - } - ] - } - } - }, - { - "id": 999, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 825, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L825" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1000, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1001, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 831, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L831" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1002, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 837, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L837" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1001, - 1002 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 825, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L825" - } - ] - } - } - }, - { - "id": 1003, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1004, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1005, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1006, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1005, - 1006 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 834, - 838, - 845, - 863, - 866, - 882, - 887, - 893, - 896, - 903, - 920, - 928, - 932, - 936, - 939, - 955, - 995, - 999, - 1003 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 833 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L1" - } - ] - }, - { - "id": 1007, - "name": "themes/dataview", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DataView Design Tokens\n\n[Live Demo](https://www.primeng.org/dataview/)" - } - ] - }, - "children": [ - { - "id": 1008, - "name": "DataViewDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1009, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1010, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1011, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1012, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1013, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1014, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1011, - 1012, - 1013, - 1014 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1015, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1016, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1017, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1018, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1019, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1020, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1021, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1022, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1017, - 1018, - 1019, - 1020, - 1021, - 1022 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1023, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1024, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1025, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1026, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1027, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1028, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1029, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1030, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1025, - 1026, - 1027, - 1028, - 1029, - 1030 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 87, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 1031, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 128, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L128" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1032, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1033, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 134, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1034, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 140, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1035, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 146, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1036, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1037, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1038, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1033, - 1034, - 1035, - 1036, - 1037, - 1038 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 128, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L128" - } - ] - } - } - }, - { - "id": 1039, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 169, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L169" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1040, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1041, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1042, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1041, - 1042 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 169, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L169" - } - ] - } - } - }, - { - "id": 1043, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 186, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L186" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1044, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1045, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1046, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1045, - 1046 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 186, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L186" - } - ] - } - } - }, - { - "id": 1047, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1048, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1049, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1050, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1049, - 1050 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1009, - 1015, - 1023, - 1031, - 1039, - 1043, - 1047 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1008 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L1" - } - ] - }, - { - "id": 1051, - "name": "themes/datepicker", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DatePicker Design Tokens\n\n[Live Demo](https://www.primeng.org/datepicker/)" - } - ] - }, - "children": [ - { - "id": 1052, - "name": "DatePickerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1053, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1054, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1055, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1055 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1056, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1057, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1058, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1059, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1060, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1061, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1062, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1063, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1058, - 1059, - 1060, - 1061, - 1062, - 1063 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 28, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1064, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1065, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1066, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1067, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1068, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1069, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1070, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1071, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1066, - 1067, - 1068, - 1069, - 1070, - 1071 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 69, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1072, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 110, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L110" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1073, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1074, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.title.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1075, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1074, - 1075 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 110, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L110" - } - ] - } - } - }, - { - "id": 1076, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 127, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1077, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1078, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1079, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1080, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1081, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1082, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1083, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of dropdown" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L161" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1084, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1085, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1086, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1087, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 179, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1088, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 185, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1089, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 191, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1085, - 1086, - 1087, - 1088, - 1089 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 161, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L161" - } - ] - } - } - }, - { - "id": 1090, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1091, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1092, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1093, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1094, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1095, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L127" - } - ] - } - } - }, - { - "id": 1096, - "name": "inputIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the input icon section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1097, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1098, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of input icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.input.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1098 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 1099, - "name": "selectMonth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the select month section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 244, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L244" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1100, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1101, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 250, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L250" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1102, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1103, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1104, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1105, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1101, - 1102, - 1103, - 1104, - 1105 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 244, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L244" - } - ] - } - } - }, - { - "id": 1106, - "name": "selectYear", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the select year section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1107, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1108, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1109, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1110, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1111, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1112, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 309, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L309" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1108, - 1109, - 1110, - 1111, - 1112 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 1113, - "name": "group", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the group section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 314, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L314" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1114, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1115, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.group.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 320, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L320" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1116, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.group.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 326, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L326" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1115, - 1116 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 314, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L314" - } - ] - } - } - }, - { - "id": 1117, - "name": "dayView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the day view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 331, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L331" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1118, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1119, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of day view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.day.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1119 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 331, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L331" - } - ] - } - } - }, - { - "id": 1120, - "name": "weekDay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the week day section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 342, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L342" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1121, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1122, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 348, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L348" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1123, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 354, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L354" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1124, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1122, - 1123, - 1124 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 342, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L342" - } - ] - } - } - }, - { - "id": 1125, - "name": "date", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the date section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 365, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L365" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1126, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1127, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 371, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L371" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1128, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 377, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1129, - "name": "rangeSelectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Range selected background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.range.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 383, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L383" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1130, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 389, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L389" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1131, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 395, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L395" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1132, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 401, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1133, - "name": "rangeSelectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Range selected color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.range.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 407, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1134, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 413, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L413" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1135, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 419, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L419" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1136, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 425, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L425" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1137, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 431, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L431" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1138, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of date" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 435, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L435" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1139, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1140, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 441, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L441" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1141, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 447, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L447" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1142, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 453, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L453" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1143, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 459, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L459" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1144, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L465" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1140, - 1141, - 1142, - 1143, - 1144 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 435, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L435" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 365, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L365" - } - ] - } - } - }, - { - "id": 1145, - "name": "monthView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the month view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 471, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L471" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1146, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1147, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of month view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.month.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 477, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1147 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 471, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L471" - } - ] - } - } - }, - { - "id": 1148, - "name": "month", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the month section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 482, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L482" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1149, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1150, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.month.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 488, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L488" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1150 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 482, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L482" - } - ] - } - } - }, - { - "id": 1151, - "name": "yearView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the year view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 493, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L493" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1152, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1153, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of year view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.year.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 499, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L499" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1153 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 493, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L493" - } - ] - } - } - }, - { - "id": 1154, - "name": "year", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the year section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 504, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L504" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1156, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.year.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 510, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L510" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1156 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 504, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L504" - } - ] - } - } - }, - { - "id": 1157, - "name": "buttonbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the buttonbar section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 515, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L515" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1158, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1159, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of buttonbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.buttonbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 521, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L521" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1160, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of buttonbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.buttonbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 527, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L527" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1159, - 1160 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 515, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L515" - } - ] - } - } - }, - { - "id": 1161, - "name": "timePicker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the time picker section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 532, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L532" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1162, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1163, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 538, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L538" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1164, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 544, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L544" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1165, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 550, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L550" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1166, - "name": "buttonGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Button gap of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.button.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 556, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L556" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1163, - 1164, - 1165, - 1166 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 532, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L532" - } - ] - } - } - }, - { - "id": 1167, - "name": "today", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the today section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 561, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L561" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1168, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1169, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of today" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.today.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 567, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L567" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1170, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of today" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.today.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 573, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L573" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1169, - 1170 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 561, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L561" - } - ] - } - } - }, - { - "id": 1171, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1172, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1173, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1174, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1173, - 1174 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1053, - 1056, - 1064, - 1072, - 1076, - 1096, - 1099, - 1106, - 1113, - 1117, - 1120, - 1125, - 1145, - 1148, - 1151, - 1154, - 1157, - 1161, - 1167, - 1171 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1052 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L1" - } - ] - }, - { - "id": 1175, - "name": "themes/dialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Dialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dialog/)" - } - ] - }, - "children": [ - { - "id": 1176, - "name": "DialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1177, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1178, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1179, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1180, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1181, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1182, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1183, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1179, - 1180, - 1181, - 1182, - 1183 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1184, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1185, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1186, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1187, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1186, - 1187 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1188, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1189, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1190, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1191, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1190, - 1191 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1192, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1194, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1194 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 86, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1195, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1196, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1197, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1198, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1197, - 1198 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 97, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1199, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1200, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1201, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1202, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1201, - 1202 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1177, - 1184, - 1188, - 1192, - 1195, - 1199 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1176 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L1" - } - ] - }, - { - "id": 1203, - "name": "themes/divider", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Divider Design Tokens\n\n[Live Demo](https://www.primeng.org/divider/)" - } - ] - }, - "children": [ - { - "id": 1204, - "name": "DividerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1205, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1206, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1207, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1207 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1208, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1209, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1210, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1211, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1210, - 1211 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1212, - "name": "horizontal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the horizontal section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L45" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1213, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1214, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1215, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1216, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of horizontal" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 61, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L61" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1217, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1218, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 67, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1218 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 61, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L61" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1214, - 1215, - 1216 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 45, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L45" - } - ] - } - } - }, - { - "id": 1219, - "name": "vertical", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the vertical section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L73" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1220, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1221, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1222, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 85, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L85" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1223, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of vertical" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L89" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1224, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1225, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 95, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1225 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 89, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L89" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1221, - 1222, - 1223 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 73, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L73" - } - ] - } - } - }, - { - "id": 1226, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1227, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1228, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1229, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1228, - 1229 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1205, - 1208, - 1212, - 1219, - 1226 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1204 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L1" - } - ] - }, - { - "id": 1230, - "name": "themes/dock", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Dock Design Tokens\n\n[Live Demo](https://www.primeng.org/dock/)" - } - ] - }, - "children": [ - { - "id": 1231, - "name": "DockDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1232, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1233, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1234, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1235, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1236, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1237, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1234, - 1235, - 1236, - 1237 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1238, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1239, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1240, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1241, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1242, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1243, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L68" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1244, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1245, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1246, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1247, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1248, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1249, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1245, - 1246, - 1247, - 1248, - 1249 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 68, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L68" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1240, - 1241, - 1242, - 1243 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1250, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1251, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1252, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1253, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1252, - 1253 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1232, - 1238, - 1250 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1231 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L1" - } - ] - }, - { - "id": 1254, - "name": "themes/drawer", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Drawer Design Tokens\n\n[Live Demo](https://www.primeng.org/drawer/)" - } - ] - }, - "children": [ - { - "id": 1255, - "name": "DrawerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1256, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1257, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1258, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1259, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1260, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1261, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1262, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1258, - 1259, - 1260, - 1261, - 1262 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1263, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1264, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1265, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1265 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1266, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1267, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1268, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1269, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1268, - 1269 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1270, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 80, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1271, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1272, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1272 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 80, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 1273, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1274, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1275, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1276, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1275, - 1276 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1256, - 1263, - 1266, - 1270, - 1273 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1255 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L1" - } - ] - }, - { - "id": 1277, - "name": "themes/dynamicdialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DynamicDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dynamicdialog/)" - } - ] - }, - "children": [ - { - "id": 1278, - "name": "DynamicDialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1279, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1280, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1281, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1282, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1283, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1284, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1285, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1281, - 1282, - 1283, - 1284, - 1285 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1286, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1287, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1288, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1289, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1288, - 1289 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1290, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1291, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1292, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1293, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1292, - 1293 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1294, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1295, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1296, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1296 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 86, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1297, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1298, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1299, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1300, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1299, - 1300 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 97, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1301, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1302, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1303, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1304, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1303, - 1304 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1279, - 1286, - 1290, - 1294, - 1297, - 1301 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1278 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" - } - ] - }, - { - "id": 1305, - "name": "themes/editor", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Editor Design Tokens\n\n[Live Demo](https://www.primeng.org/editor/)" - } - ] - }, - "children": [ - { - "id": 1306, - "name": "EditorDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1307, - "name": "toolbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1308, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1309, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1310, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1311, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1309, - 1310, - 1311 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 17, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1312, - "name": "toolbarItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar item section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1313, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1314, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1315, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1316, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1314, - 1315, - 1316 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 40, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 1317, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1318, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1319, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1320, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1321, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1322, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1323, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1324, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1319, - 1320, - 1321, - 1322, - 1323, - 1324 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 63, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1325, - "name": "overlayOption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay option section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 104, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L104" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1326, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1327, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1328, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1329, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1330, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 128, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1331, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 134, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1327, - 1328, - 1329, - 1330, - 1331 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 104, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L104" - } - ] - } - } - }, - { - "id": 1332, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 139, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1333, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1334, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1335, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1336, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1337, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1334, - 1335, - 1336, - 1337 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 139, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L139" - } - ] - } - } - }, - { - "id": 1338, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1339, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1340, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1341, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1340, - 1341 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1307, - 1312, - 1317, - 1325, - 1332, - 1338 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1306 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L1" - } - ] - }, - { - "id": 1342, - "name": "themes/fieldset", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Fieldset Design Tokens\n\n[Live Demo](https://www.primeng.org/fieldset/)" - } - ] - }, - "children": [ - { - "id": 1343, - "name": "FieldsetDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1344, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1345, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1346, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1347, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1348, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1349, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1350, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1351, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1346, - 1347, - 1348, - 1349, - 1350, - 1351 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1352, - "name": "legend", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the legend section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1353, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1354, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1355, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1356, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1357, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1358, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1359, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1360, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1361, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1362, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1363, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1364, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of legend" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L122" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1365, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1366, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1367, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1368, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 140, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1369, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 146, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1370, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 152, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1366, - 1367, - 1368, - 1369, - 1370 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 122, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L122" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 58, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 1371, - "name": "toggleIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggle icon section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 158, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L158" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1372, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1373, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of toggle icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.toggle.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1374, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of toggle icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.toggle.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 170, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L170" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1373, - 1374 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 158, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L158" - } - ] - } - } - }, - { - "id": 1375, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1376, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1377, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1377 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 175, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 1378, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1379, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1380, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1381, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1380, - 1381 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1344, - 1352, - 1371, - 1375, - 1378 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1343 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L1" - } - ] - }, - { - "id": 1382, - "name": "themes/fileupload", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "FileUpload Design Tokens\n\n[Live Demo](https://www.primeng.org/fileupload/)" - } - ] - }, - "children": [ - { - "id": 1383, - "name": "FileUploadDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1384, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1385, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1386, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1387, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1388, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1389, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1390, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1386, - 1387, - 1388, - 1389, - 1390 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1391, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1393, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1394, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1395, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1396, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1397, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1398, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1393, - 1394, - 1395, - 1396, - 1397, - 1398 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1399, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 93, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L93" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1400, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1401, - "name": "highlightBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Highlight border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.content.highlight.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1402, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1401, - 1402 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 93, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L93" - } - ] - } - } - }, - { - "id": 1403, - "name": "file", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the file section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 110, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L110" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1404, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1405, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1406, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1407, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 128, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1408, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of file" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L132" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1409, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1410, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info gap of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.info.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1410 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 132, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L132" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1405, - 1406, - 1407, - 1408 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 110, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L110" - } - ] - } - } - }, - { - "id": 1411, - "name": "progressbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the progressbar section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 144, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L144" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1412, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1413, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of progressbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.progressbar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1413 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 144, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L144" - } - ] - } - } - }, - { - "id": 1414, - "name": "basic", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the basic section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1415, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1416, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of basic" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.basic.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1416 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 1417, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1418, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1419, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1420, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1419, - 1420 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1384, - 1391, - 1399, - 1403, - 1411, - 1414, - 1417 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1383 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L1" - } - ] - }, - { - "id": 1421, - "name": "themes/floatlabel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "FloatLabel Design Tokens\n\n[Live Demo](https://www.primeng.org/floatlabel/)" - } - ] - }, - "children": [ - { - "id": 1422, - "name": "FloatLabelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1423, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1424, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1425, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1426, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1427, - "name": "invalidColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.invalid.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1428, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1425, - 1426, - 1427, - 1428 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1429, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1431, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1432, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1431, - 1432 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1423, - 1429 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1422 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L1" - } - ] - }, - { - "id": 1433, - "name": "themes/galleria", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Galleria Design Tokens\n\n[Live Demo](https://www.primeng.org/galleria/)" - } - ] - }, - "children": [ - { - "id": 1434, - "name": "GalleriaDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1435, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1436, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1437, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1438, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1439, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1440, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1437, - 1438, - 1439, - 1440 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1441, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1442, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1443, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1444, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1446, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1447, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1448, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1449, - "name": "prev", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Prev of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1450, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1451, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Prev border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.prev.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1451 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 86, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1452, - "name": "next", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Next of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1453, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1454, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Next border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.next.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1454 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 97, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1455, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L108" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1456, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1457, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1458, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1459, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1460, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1461, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1457, - 1458, - 1459, - 1460, - 1461 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 108, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L108" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1452, - 1455 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 46, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1462, - "name": "navIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 144, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L144" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1463, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1464, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of nav icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1464 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 144, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L144" - } - ] - } - } - }, - { - "id": 1465, - "name": "thumbnailsContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnails content section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1466, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1467, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of thumbnails content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnails.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1468, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of thumbnails content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnails.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1467, - 1468 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 155, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 1469, - "name": "thumbnailNavButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnail nav button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 172, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1470, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1471, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 178, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1472, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1473, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1474, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of thumbnail nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L194" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1475, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1476, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 200, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1477, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 206, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1478, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 212, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1479, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 218, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L218" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1480, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 224, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L224" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1476, - 1477, - 1478, - 1479, - 1480 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 194, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L194" - } - ] - } - } - }, - { - "id": 1481, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 237, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1483, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 243, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1471, - 1472, - 1473, - 1474, - 1481, - 1482, - 1483 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 172, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L172" - } - ] - } - } - }, - { - "id": 1484, - "name": "thumbnailNavButtonIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnail nav button icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 248, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L248" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1485, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1486, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of thumbnail nav button icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 254, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L254" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1486 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 248, - "character": 29, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L248" - } - ] - } - } - }, - { - "id": 1487, - "name": "caption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the caption section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 259, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L259" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1488, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1489, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 265, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L265" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1490, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 271, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L271" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1491, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 277, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L277" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1489, - 1490, - 1491 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 259, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L259" - } - ] - } - } - }, - { - "id": 1492, - "name": "indicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 282, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L282" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1493, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1494, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 288, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L288" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1495, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 294, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L294" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1494, - 1495 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 282, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L282" - } - ] - } - } - }, - { - "id": 1496, - "name": "indicatorButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 299, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L299" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1497, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1498, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 305, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L305" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1499, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 311, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L311" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1500, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 317, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L317" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1501, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 323, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L323" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1502, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of indicator button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1503, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1504, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 333, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1505, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 339, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L339" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1506, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 345, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L345" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1507, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L351" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1508, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 357, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1504, - 1505, - 1506, - 1507, - 1508 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 327, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 1509, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 364, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1510, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 370, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1498, - 1499, - 1500, - 1501, - 1502, - 1509, - 1510 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 299, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L299" - } - ] - } - } - }, - { - "id": 1511, - "name": "insetIndicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the inset indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 375, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L375" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1512, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1513, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of inset indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.list.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 381, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L381" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1513 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 375, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L375" - } - ] - } - } - }, - { - "id": 1514, - "name": "insetIndicatorButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the inset indicator button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 386, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L386" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1515, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1516, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 392, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L392" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1517, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 398, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L398" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1518, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 404, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L404" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1516, - 1517, - 1518 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 386, - "character": 27, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L386" - } - ] - } - } - }, - { - "id": 1519, - "name": "mask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mask section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 409, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L409" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1520, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1521, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 415, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L415" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1522, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 421, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L421" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1521, - 1522 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 409, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L409" - } - ] - } - } - }, - { - "id": 1523, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 426, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L426" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1525, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 432, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L432" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1526, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 438, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L438" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1527, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 444, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L444" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1528, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 450, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L450" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1529, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 456, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L456" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1530, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 462, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L462" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1531, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 468, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L468" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1532, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 472, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L472" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1533, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1534, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 478, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L478" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1535, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 484, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L484" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1536, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 490, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L490" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1537, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 496, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L496" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1538, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 502, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L502" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1534, - 1535, - 1536, - 1537, - 1538 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 472, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L472" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 426, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L426" - } - ] - } - } - }, - { - "id": 1539, - "name": "closeButtonIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 508, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L508" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1541, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close button icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 514, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L514" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1541 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 508, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L508" - } - ] - } - } - }, - { - "id": 1542, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1543, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1544, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1545, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1544, - 1545 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1435, - 1441, - 1462, - 1465, - 1469, - 1484, - 1487, - 1492, - 1496, - 1511, - 1514, - 1519, - 1523, - 1539, - 1542 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1434 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L1" - } - ] - }, - { - "id": 1546, - "name": "themes/iconfield", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "IconField Design Tokens\n\n[Live Demo](https://www.primeng.org/iconfield/)" - } - ] - }, - "children": [ - { - "id": 1547, - "name": "IconFieldDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1548, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1549, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1550, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "iconfield.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1550 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1551, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1552, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1553, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1554, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1553, - 1554 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1548, - 1551 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1547 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L1" - } - ] - }, - { - "id": 1555, - "name": "themes/image", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Image Design Tokens\n\n[Live Demo](https://www.primeng.org/image/)" - } - ] - }, - "children": [ - { - "id": 1556, - "name": "ImageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1557, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1558, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1559, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1559 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1560, - "name": "preview", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the preview section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1561, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1562, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of preview" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L32" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1563, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1564, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 38, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L38" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1564 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 32, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L32" - } - ] - } - } - }, - { - "id": 1565, - "name": "mask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask of preview" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 43, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L43" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1566, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1567, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask background of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 49, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L49" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1568, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask color of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 55, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L55" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1567, - 1568 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 43, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L43" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1562, - 1565 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1569, - "name": "toolbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 61, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L61" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1570, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1571, - "name": "position", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position of toolbar" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L65" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1572, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1573, - "name": "left", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position left of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.left" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 71, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1574, - "name": "right", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position right of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.right" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 77, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1575, - "name": "top", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position top of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.top" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 83, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1576, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position bottom of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 89, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1573, - 1574, - 1575, - 1576 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 65, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L65" - } - ] - } - } - }, - { - "id": 1577, - "name": "blur", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Blur of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.blur" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1578, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 102, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1579, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1580, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 114, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1581, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1582, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1583, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1571, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 61, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L61" - } - ] - } - } - }, - { - "id": 1584, - "name": "action", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the action section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 137, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L137" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1585, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1586, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 143, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1587, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1588, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1589, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1590, - "name": "iconSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1591, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1592, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of action" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L177" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1593, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1594, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 183, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1595, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 189, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1596, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 195, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1597, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 201, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1598, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 207, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1594, - 1595, - 1596, - 1597, - 1598 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 177, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L177" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 137, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L137" - } - ] - } - } - }, - { - "id": 1599, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1600, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1601, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1602, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1601, - 1602 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1557, - 1560, - 1569, - 1584, - 1599 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1556 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L1" - } - ] - }, - { - "id": 1603, - "name": "themes", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[Live Demo](https://www.primeng.org/)" - } - ] - }, - "children": [ - { - "id": 1604, - "name": "ColorSchemeDesignToken", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1605, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1606, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1607, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1609, - "name": "T", - "package": "primeng", - "qualifiedName": "ColorSchemeDesignToken.T", - "refersToTypeParameter": true - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1608, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1609, - "name": "T", - "package": "primeng", - "qualifiedName": "ColorSchemeDesignToken.T", - "refersToTypeParameter": true - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1607, - 1608 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1605 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 8, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L8" - } - ], - "typeParameters": [ - { - "id": 1609, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 2, - "name": "AccordionDesignTokens" - }, - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens" - }, - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens" - }, - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens" - }, - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens" - }, - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens" - }, - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens" - }, - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens" - }, - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens" - }, - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens" - }, - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens" - }, - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens" - }, - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens" - }, - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens" - }, - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens" - }, - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens" - }, - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens" - }, - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens" - }, - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens" - }, - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens" - }, - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens" - }, - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens" - }, - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens" - }, - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens" - }, - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens" - }, - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens" - }, - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens" - }, - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens" - }, - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens" - }, - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens" - }, - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens" - }, - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens" - }, - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens" - }, - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens" - }, - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens" - }, - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens" - }, - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens" - }, - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens" - }, - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens" - }, - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens" - }, - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens" - }, - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens" - }, - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens" - }, - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens" - }, - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens" - }, - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens" - }, - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens" - }, - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens" - }, - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens" - }, - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens" - }, - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens" - }, - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens" - }, - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens" - }, - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens" - }, - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens" - }, - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens" - }, - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens" - }, - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens" - }, - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens" - }, - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens" - }, - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens" - }, - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens" - }, - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens" - }, - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens" - }, - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens" - }, - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens" - }, - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens" - }, - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens" - }, - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens" - }, - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens" - }, - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens" - }, - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens" - }, - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens" - }, - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens" - }, - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens" - }, - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens" - }, - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens" - }, - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens" - }, - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens" - }, - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens" - }, - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens" - }, - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens" - }, - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens" - }, - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens" - }, - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens" - }, - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens" - } - ] - }, - { - "id": 1610, - "name": "PaletteDesignToken", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1611, - "name": "50", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 16, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L16" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1612, - "name": "100", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L17" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1613, - "name": "200", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 18, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L18" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1614, - "name": "300", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 19, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L19" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1615, - "name": "400", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 20, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L20" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1616, - "name": "500", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 21, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L21" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1617, - "name": "600", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 22, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L22" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1618, - "name": "700", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 23, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1619, - "name": "800", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 24, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L24" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1620, - "name": "900", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 25, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L25" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1621, - "name": "950", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 26, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L26" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 15, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L15" - } - ] - }, - { - "id": 1622, - "name": "PrimitiveDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1623, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 30, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L30" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1624, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1625, - "name": "none", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 31, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L31" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1626, - "name": "xs", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L32" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1627, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 33, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1628, - "name": "md", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1629, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1630, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 36, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L36" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1625, - 1626, - 1627, - 1628, - 1629, - 1630 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 30, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L30" - } - ] - } - } - }, - { - "id": 1631, - "name": "emerald", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 38, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L38" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1632, - "name": "green", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L39" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1633, - "name": "lime", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L40" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1634, - "name": "red", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 41, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L41" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1635, - "name": "orange", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 42, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L42" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1636, - "name": "amber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 43, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L43" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1637, - "name": "yellow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 44, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L44" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1638, - "name": "teal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L45" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1639, - "name": "cyan", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L46" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1640, - "name": "sky", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 47, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L47" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1641, - "name": "blue", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 48, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L48" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1642, - "name": "indigo", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 49, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L49" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1643, - "name": "violet", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 50, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L50" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1644, - "name": "purple", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L51" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1645, - "name": "fuchsia", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L52" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1646, - "name": "pink", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 53, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L53" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1647, - "name": "rose", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 54, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L54" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1648, - "name": "slate", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 55, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L55" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1649, - "name": "gray", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 56, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L56" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1650, - "name": "zinc", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L57" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1651, - "name": "neutral", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L58" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1652, - "name": "stone", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 59, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L59" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1623, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 29, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L29" - } - ], - "indexSignature": { - "id": 1653, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 60, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L60" - } - ], - "parameters": [ - { - "id": 1654, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 1655, - "name": "SemanticDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1656, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1657, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 65, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L65" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1658, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1659, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 66, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L66" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1660, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 67, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1661, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1662, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1663, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1659, - 1660, - 1661, - 1662, - 1663 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 65, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L65" - } - ] - } - } - }, - { - "id": 1664, - "name": "iconSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 72, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L72" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1665, - "name": "anchorGutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L73" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1666, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L74" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1667, - "name": "formField", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1668, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1669, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1670, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1671, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L78" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1672, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L79" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1673, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1674, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1675, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1676, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 82, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1677, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 83, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1678, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 84, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1674, - 1675, - 1676, - 1677, - 1678 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 79, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L79" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1669, - 1670, - 1671, - 1672 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 75, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L75" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1656, - 1657, - 1664, - 1665, - 1666, - 1667 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 63, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L63" - } - ], - "indexSignature": { - "id": 1679, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 88, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L88" - } - ], - "parameters": [ - { - "id": 1680, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1604, - 1610, - 1622, - 1655 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L1" - } - ] - }, - { - "id": 1681, - "name": "themes/inlinemessage", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InlineMessage Design Tokens\n\n[Live Demo](https://www.primeng.org/inlinemessage/)" - } - ] - }, - "children": [ - { - "id": 1682, - "name": "InlineMessageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1730, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1731, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1732, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1733, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1732, - 1733 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1683, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1684, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1685, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1686, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1687, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1685, - 1686, - 1687 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1688, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1689, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1690, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.text.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1690 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 40, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 1691, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1692, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1693, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1693 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 51, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 1694, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1695, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1696, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1697, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1698, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1699, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1696, - 1697, - 1698, - 1699 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 62, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" - } - ] - } - } - }, - { - "id": 1700, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1701, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1702, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1703, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1704, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1705, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1702, - 1703, - 1704, - 1705 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 91, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 1706, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1707, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1708, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1709, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1710, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1711, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1708, - 1709, - 1710, - 1711 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 120, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 1712, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 149, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1713, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1714, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1715, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1716, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1717, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1714, - 1715, - 1716, - 1717 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 149, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" - } - ] - } - } - }, - { - "id": 1718, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 178, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1719, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1720, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1721, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1722, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 196, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L196" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1723, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 202, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L202" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1720, - 1721, - 1722, - 1723 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 178, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" - } - ] - } - } - }, - { - "id": 1724, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 207, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1725, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1726, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 213, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L213" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1727, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 219, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L219" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1728, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 225, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1729, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1726, - 1727, - 1728, - 1729 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 207, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1730, - 1683, - 1688, - 1691, - 1694, - 1700, - 1706, - 1712, - 1718, - 1724 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1682 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L1" - } - ] - }, - { - "id": 1734, - "name": "themes/inplace", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inplace Design Tokens\n\n[Live Demo](https://www.primeng.org/inplace/)" - } - ] - }, - "children": [ - { - "id": 1735, - "name": "InplaceDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1752, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1753, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1754, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1755, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1754, - 1755 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1736, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1738, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1739, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1740, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 33, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L33" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1741, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1742, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 39, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L39" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1743, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 45, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1744, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1745, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1746, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1742, - 1743, - 1744, - 1745, - 1746 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 33, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L33" - } - ] - } - } - }, - { - "id": 1747, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1738, - 1739, - 1740, - 1747 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1748, - "name": "display", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the display section" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1749, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1750, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of display" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.display.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1751, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of display" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.display.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1750, - 1751 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 75, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L75" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1752, - 1736, - 1748 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1735 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L1" - } - ] - }, - { - "id": 1756, - "name": "themes/inputchips", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputChips Design Tokens\n\n[Live Demo](https://www.primeng.org/inputchips/)" - } - ] - }, - "children": [ - { - "id": 1757, - "name": "InputChipsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1788, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1789, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1790, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1791, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1790, - 1791 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1758, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1759, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1760, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1761, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1762, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1763, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1764, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1765, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1766, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1767, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1768, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1769, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1770, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1771, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1772, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1773, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1774, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1775, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1776, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1777, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1778, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1779, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1780, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1781, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1777, - 1778, - 1779, - 1780, - 1781 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 1782, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1782 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1783, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1784, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1785, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1786, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1787, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1785, - 1786, - 1787 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 153, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L153" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1788, - 1758, - 1783 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1757 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L1" - } - ] - }, - { - "id": 1792, - "name": "themes/inputgroup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/inputgroup/)" - } - ] - }, - "children": [ - { - "id": 1793, - "name": "InputGroupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1800, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1801, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1802, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1803, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1802, - 1803 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1794, - "name": "addon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the addon section" - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1795, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1796, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1797, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1798, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1799, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1796, - 1797, - 1798, - 1799 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1800, - 1794 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1793 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L1" - } - ] - }, - { - "id": 1804, - "name": "themes/inputnumber", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputNumber Design Tokens\n\n[Live Demo](https://www.primeng.org/inputnumber/)" - } - ] - }, - "children": [ - { - "id": 1805, - "name": "InputNumberDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1823, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1824, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1825, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1826, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1825, - 1826 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1806, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1807, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1808, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1808 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1809, - "name": "button", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the button section" - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1810, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1811, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1812, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1813, - "name": "verticalPadding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical padding of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.vertical.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1814, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1815, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1816, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1817, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1818, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1819, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1820, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1821, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1822, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 28, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1823, - 1806, - 1809 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1805 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L1" - } - ] - }, - { - "id": 1827, - "name": "themes/inputtext", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputText Design Tokens\n\n[Live Demo](https://www.primeng.org/inputtext/)" - } - ] - }, - "children": [ - { - "id": 1828, - "name": "InputTextDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1864, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1865, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1866, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1867, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1866, - 1867 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1829, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1830, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1831, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1832, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1833, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1834, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1835, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1836, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1837, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1838, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1839, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1840, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1841, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1842, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1843, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1844, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1845, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1846, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1847, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1848, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1849, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1850, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1851, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1852, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1848, - 1849, - 1850, - 1851, - 1852 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 1853, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1854, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L152" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1855, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1856, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 158, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1857, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 164, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1858, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 170, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L170" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1856, - 1857, - 1858 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 152, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L152" - } - ] - } - } - }, - { - "id": 1859, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1860, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1861, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 181, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1862, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 187, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1863, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 193, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1861, - 1862, - 1863 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 175, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L175" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1853, - 1854, - 1859 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1864, - 1829 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1828 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L1" - } - ] - }, - { - "id": 1868, - "name": "themes/knob", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Knob Design Tokens\n\n[Live Demo](https://www.primeng.org/knob/)" - } - ] - }, - "children": [ - { - "id": 1869, - "name": "KnobDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1889, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1890, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1891, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1892, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1891, - 1892 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1870, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1871, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1872, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1873, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 27, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L27" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1874, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1875, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 33, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1876, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 39, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L39" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1877, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 45, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1878, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1879, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1875, - 1876, - 1877, - 1878, - 1879 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 27, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L27" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1872, - 1873 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1880, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the value section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1881, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1882, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of value" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.value.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1882 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1883, - "name": "range", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the range section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1885, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of range" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.range.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1885 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 1886, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1887, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1888, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.text.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1888 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 85, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L85" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1889, - 1870, - 1880, - 1883, - 1886 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1869 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L1" - } - ] - }, - { - "id": 1893, - "name": "themes/listbox", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listbox Design Tokens\n\n[Live Demo](https://www.primeng.org/listbox/)" - } - ] - }, - "children": [ - { - "id": 1894, - "name": "ListboxDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1948, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1949, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1950, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1951, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1950, - 1951 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1895, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1896, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1897, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1898, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1899, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1900, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1901, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1902, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1903, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1904, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1905, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1906, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1907, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1908, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1909, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 87, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1910, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 93, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1911, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 99, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1912, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 105, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1913, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 111, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1909, - 1910, - 1911, - 1912, - 1913 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 81, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 1914, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1914 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1915, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 123, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L123" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1916, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1917, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1918, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1919, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1920, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1921, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1921 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 139, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1917, - 1918, - 1919 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 123, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L123" - } - ] - } - } - }, - { - "id": 1922, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1923, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1924, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1925, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1926, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1927, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1928, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1929, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1930, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1931, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1932, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1933, - "name": "stripedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Striped background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.striped.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 151, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 1934, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 216, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L216" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1935, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1936, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1937, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1938, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 234, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L234" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1939, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 240, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L240" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1936, - 1937, - 1938, - 1939 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 216, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L216" - } - ] - } - } - }, - { - "id": 1940, - "name": "checkmark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the checkmark section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 245, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L245" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1941, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1942, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1943, - "name": "gutterStart", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter start of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.gutter.start" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1944, - "name": "gutterEnd", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter end of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.gutter.end" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1942, - 1943, - 1944 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 245, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L245" - } - ] - } - } - }, - { - "id": 1945, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 268, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L268" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1946, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1947, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1947 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 268, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L268" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1948, - 1895, - 1915, - 1922, - 1934, - 1940, - 1945 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1894 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L1" - } - ] - }, - { - "id": 1952, - "name": "themes/megamenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MegaMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/megamenu/)" - } - ] - }, - "children": [ - { - "id": 1953, - "name": "MegaMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2030, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2031, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2032, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2033, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2032, - 2033 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1954, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1955, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1956, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1957, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1958, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1959, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1960, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1961, - "name": "verticalOrientation", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation of root" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1962, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1963, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.vertical.orientation.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1964, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.vertical.orientation.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1963, - 1964 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 51, - "character": 30, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 1965, - "name": "horizontalOrientation", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal orientation of root" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L68" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1966, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1967, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal orientation padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.horizontal.orientation.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1967 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 68, - "character": 32, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L68" - } - ] - } - } - }, - { - "id": 1968, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1965, - 1968 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1969, - "name": "baseItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the base item section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1970, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1971, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.base.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1972, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.base.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1971, - 1972 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 86, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1973, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1974, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1975, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1976, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1977, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1978, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1979, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1980, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1981, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1982, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1983, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1984, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1985, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1986, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1987, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1985, - 1986, - 1987 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 155, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L155" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 103, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 1988, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 179, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L179" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1989, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1990, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 185, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1991, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 191, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1992, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1993, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 203, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1994, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 209, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1995, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1996, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 179, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L179" - } - ] - } - } - }, - { - "id": 1997, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 226, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L226" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1998, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1999, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 232, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2000, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 238, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1999, - 2000 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 226, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L226" - } - ] - } - } - }, - { - "id": 2001, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 243, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L243" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2002, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2003, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 249, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2004, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 255, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2005, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 261, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2006, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 267, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2003, - 2004, - 2005, - 2006 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 243, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L243" - } - ] - } - } - }, - { - "id": 2007, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 272, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L272" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2008, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2009, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 278, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L278" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2010, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 284, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L284" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2011, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 290, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2012, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 296, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L296" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2009, - 2010, - 2011, - 2012 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 272, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L272" - } - ] - } - } - }, - { - "id": 2013, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 301, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L301" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2014, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2015, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 307, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L307" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2015 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 301, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L301" - } - ] - } - } - }, - { - "id": 2016, - "name": "mobileButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mobile button section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 312, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L312" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2017, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2018, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 318, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L318" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2019, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 324, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L324" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2020, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 330, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L330" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2021, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 336, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L336" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2022, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 342, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L342" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2023, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of mobile button" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 346, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L346" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2024, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2025, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 352, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L352" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2026, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 358, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L358" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2027, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 364, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2028, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 370, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2029, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 376, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2025, - 2026, - 2027, - 2028, - 2029 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 346, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L346" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 312, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L312" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2030, - 1954, - 1969, - 1973, - 1988, - 1997, - 2001, - 2007, - 2013, - 2016 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1953 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L1" - } - ] - }, - { - "id": 2034, - "name": "themes/menu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Menu Design Tokens\n\n[Live Demo](https://www.primeng.org/menu/)" - } - ] - }, - "children": [ - { - "id": 2035, - "name": "MenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2069, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2070, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2071, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2072, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2071, - 2072 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2036, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2037, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2038, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2039, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2040, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2041, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2042, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2043, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2038, - 2039, - 2040, - 2041, - 2042, - 2043 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2044, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2045, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2046, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2047, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2046, - 2047 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 2048, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2049, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2050, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2051, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2052, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2053, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2054, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2055, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2056, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2057, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2058, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2059, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 127, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2058, - 2059 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 115, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L115" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 2060, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 133, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L133" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2061, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2062, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2063, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2064, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2065, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2062, - 2063, - 2064, - 2065 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 133, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L133" - } - ] - } - } - }, - { - "id": 2066, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 162, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L162" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2067, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2068, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2068 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 162, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L162" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2069, - 2036, - 2044, - 2048, - 2060, - 2066 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2035 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L1" - } - ] - }, - { - "id": 2073, - "name": "themes/menubar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Menubar Design Tokens\n\n[Live Demo](https://www.primeng.org/menubar/)" - } - ] - }, - "children": [ - { - "id": 2074, - "name": "MenubarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2135, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2136, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2137, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2138, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2137, - 2138 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2075, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2076, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2077, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2078, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2079, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2080, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2081, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2082, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2083, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2084, - "name": "baseItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the base item section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2085, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2086, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.base.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2087, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.base.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2086, - 2087 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 64, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 2088, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2089, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2090, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2091, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2092, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2093, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2094, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2095, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2096, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2097, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2098, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L133" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2099, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2100, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2101, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2102, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2100, - 2101, - 2102 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 133, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L133" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 2103, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 157, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L157" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2104, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2105, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2106, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2107, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2108, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2109, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2110, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2111, - "name": "mobileIndent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mobile indent of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.mobile.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 157, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L157" - } - ] - } - } - }, - { - "id": 2112, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 204, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L204" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2113, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2114, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2115, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2116, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2117, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2114, - 2115, - 2116, - 2117 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 204, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L204" - } - ] - } - } - }, - { - "id": 2118, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2119, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2120, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2120 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2121, - "name": "mobileButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mobile button section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 244, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L244" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2122, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2123, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 250, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L250" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2124, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2125, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2126, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2127, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2128, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of mobile button" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 278, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L278" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2129, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2130, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 284, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L284" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2131, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 290, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2132, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 296, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L296" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2133, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 302, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L302" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2134, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 308, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L308" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2130, - 2131, - 2132, - 2133, - 2134 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 278, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L278" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2123, - 2124, - 2125, - 2126, - 2127, - 2128 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 244, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L244" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2135, - 2075, - 2084, - 2088, - 2103, - 2112, - 2118, - 2121 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2074 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L1" - } - ] - }, - { - "id": 2139, - "name": "themes/message", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Message Design Tokens\n\n[Live Demo](https://www.primeng.org/message/)" - } - ] - }, - "children": [ - { - "id": 2140, - "name": "MessageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2248, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2249, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2250, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2251, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2250, - 2251 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2141, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2142, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2143, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2144, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2145, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2143, - 2144, - 2145 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2146, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2147, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2148, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2149, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2148, - 2149 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 40, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2150, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2152, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.text.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2153, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.text.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2152, - 2153 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 57, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 2154, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2156, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2156 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 74, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2157, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2158, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2159, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2160, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2161, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2162, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L107" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2163, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2164, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 113, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2165, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 119, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L119" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2166, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 125, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L125" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2164, - 2165, - 2166 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 107, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L107" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2159, - 2160, - 2161, - 2162 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 85, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L85" - } - ] - } - } - }, - { - "id": 2167, - "name": "closeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close icon section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 131, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L131" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2168, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2169, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 137, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2169 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 131, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L131" - } - ] - } - } - }, - { - "id": 2170, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 142, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L142" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2172, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2173, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2174, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2175, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 166, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L166" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2176, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of info" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 170, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2177, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2178, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 176, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2179, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of info" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 180, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2180, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2181, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 186, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2182, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 192, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2181, - 2182 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 180, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L180" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2178, - 2179 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 170, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L170" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2172, - 2173, - 2174, - 2175, - 2176 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 142, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L142" - } - ] - } - } - }, - { - "id": 2183, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 199, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L199" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2184, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2185, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2186, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2187, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2188, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2189, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of success" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 227, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L227" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2190, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2191, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 233, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2192, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of success" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 237, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L237" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2194, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 243, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2195, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 249, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2194, - 2195 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 237, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L237" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2191, - 2192 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 227, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L227" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2185, - 2186, - 2187, - 2188, - 2189 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 199, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L199" - } - ] - } - } - }, - { - "id": 2196, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 256, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L256" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2197, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2198, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2199, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2200, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2201, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L280" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2202, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of warn" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 284, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L284" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2203, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2204, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 290, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2205, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of warn" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 294, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L294" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2206, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2207, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 300, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L300" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2208, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 306, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L306" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2207, - 2208 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 294, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L294" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2204, - 2205 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 284, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L284" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2198, - 2199, - 2200, - 2201, - 2202 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 256, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L256" - } - ] - } - } - }, - { - "id": 2209, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 313, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L313" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2210, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2211, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 319, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L319" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2212, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2213, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2214, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2215, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of error" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 341, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L341" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2216, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2217, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 347, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L347" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2218, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of error" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L351" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2219, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2220, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 357, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2221, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 363, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L363" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2220, - 2221 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 351, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L351" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2217, - 2218 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 341, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L341" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2211, - 2212, - 2213, - 2214, - 2215 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 313, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L313" - } - ] - } - } - }, - { - "id": 2222, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 370, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L370" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2223, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2224, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 376, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2225, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 382, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L382" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2226, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 388, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L388" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2227, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 394, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L394" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2228, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of secondary" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 398, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L398" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2229, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2230, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 404, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L404" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2231, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of secondary" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 408, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L408" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2232, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2233, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 414, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L414" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2234, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 420, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L420" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2233, - 2234 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 408, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L408" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2230, - 2231 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 398, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L398" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2224, - 2225, - 2226, - 2227, - 2228 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 370, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L370" - } - ] - } - } - }, - { - "id": 2235, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 427, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L427" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2236, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2237, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 433, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L433" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2238, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 439, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L439" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2239, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 445, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L445" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2240, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 451, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L451" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2241, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of contrast" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 455, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L455" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2242, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2243, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 461, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L461" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2244, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of contrast" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L465" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2245, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2246, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 471, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L471" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2247, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 477, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2246, - 2247 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 465, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L465" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2243, - 2244 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 455, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L455" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2237, - 2238, - 2239, - 2240, - 2241 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 427, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L427" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2248, - 2141, - 2146, - 2150, - 2154, - 2157, - 2167, - 2170, - 2183, - 2196, - 2209, - 2222, - 2235 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2140 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L1" - } - ] - }, - { - "id": 2252, - "name": "themes/metergroup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MeterGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/metergroup/)" - } - ] - }, - "children": [ - { - "id": 2253, - "name": "MeterGroupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2275, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2276, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2277, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2278, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2277, - 2278 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2254, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2255, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2256, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2257, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2256, - 2257 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2258, - "name": "meters", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the meters section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2259, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2260, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of meters" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.meters.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2261, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of meters" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.meters.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2260, - 2261 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2262, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2264, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2264 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2265, - "name": "labelMarker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label marker section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2266, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2267, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of label marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.marker.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2267 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 62, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L62" - } - ] - } - } - }, - { - "id": 2268, - "name": "labelIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label icon section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L73" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2269, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2270, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of label icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2270 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 73, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L73" - } - ] - } - } - }, - { - "id": 2271, - "name": "labelList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label list section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 84, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L84" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2272, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2273, - "name": "verticalGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical gap of label list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.list.vertical.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2274, - "name": "horizontalGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal gap of label list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.list.horizontal.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2273, - 2274 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 84, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L84" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2275, - 2254, - 2258, - 2262, - 2265, - 2268, - 2271 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2253 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L1" - } - ] - }, - { - "id": 2279, - "name": "themes/multiselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MultiSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/multiselect/)" - } - ] - }, - "children": [ - { - "id": 2280, - "name": "MultiSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2348, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2349, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2350, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2351, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2350, - 2351 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2281, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2282, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2283, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2284, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2285, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2286, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2287, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2288, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2289, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2290, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2291, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2292, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2293, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2294, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2295, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2296, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2297, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2298, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2299, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2300, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2301, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2302, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2303, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2304, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2300, - 2301, - 2302, - 2303, - 2304 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 2305, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2305 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2306, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2307, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2308, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2309, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2308, - 2309 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 2310, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2311, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2312, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2313, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2314, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2315, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2316, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2312, - 2313, - 2314, - 2315, - 2316 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 2317, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2318, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2319, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2320, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2321, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L221" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2322, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2323, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2323 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 221, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L221" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2319, - 2320, - 2321 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 2324, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2325, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2326, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2327, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2328, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2329, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2330, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2331, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 269, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L269" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2332, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 275, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L275" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2333, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 281, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L281" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2334, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 287, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L287" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2335, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 293, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L293" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 233, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2336, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 298, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L298" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2337, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2338, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2339, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 310, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L310" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2340, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 316, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L316" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2341, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 322, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L322" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2338, - 2339, - 2340, - 2341 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 298, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L298" - } - ] - } - } - }, - { - "id": 2342, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 327, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2343, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2344, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 333, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2344 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 327, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 2345, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 338, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L338" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2346, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2347, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 344, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L344" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2347 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 338, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L338" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2348, - 2281, - 2306, - 2310, - 2317, - 2324, - 2336, - 2342, - 2345 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2280 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L1" - } - ] - }, - { - "id": 2352, - "name": "themes/orderlist", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OrderList Design Tokens\n\n[Live Demo](https://www.primeng.org/orderlist/)" - } - ] - }, - "children": [ - { - "id": 2353, - "name": "OrderListDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2360, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2361, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2362, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2363, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2362, - 2363 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2354, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2355, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2356, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "orderlist.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2356 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2357, - "name": "controls", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the controls section" - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2358, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2359, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of controls" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "orderlist.controls.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2359 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 28, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2360, - 2354, - 2357 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2353 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L1" - } - ] - }, - { - "id": 2364, - "name": "themes/organizationchart", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OrganizationChart Design Tokens\n\n[Live Demo](https://www.primeng.org/organizationchart/)" - } - ] - }, - "children": [ - { - "id": 2365, - "name": "OrganizationChartDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2403, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2404, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2405, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2406, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2405, - 2406 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2366, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2367, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2368, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2369, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2368, - 2369 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2370, - "name": "node", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2372, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2373, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2374, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2375, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2376, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2377, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2378, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2379, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2380, - "name": "toggleablePadding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toggleable padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggleable.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2381, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 34, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2382, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 99, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L99" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2383, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2384, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2385, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2386, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2387, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2388, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2389, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2390, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2391, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L145" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2393, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2394, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2395, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2396, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2397, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 175, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2393, - 2394, - 2395, - 2396, - 2397 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 145, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L145" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 99, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L99" - } - ] - } - } - }, - { - "id": 2398, - "name": "connector", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the connector section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 181, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L181" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2399, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2400, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2401, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2402, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2400, - 2401, - 2402 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 181, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L181" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2403, - 2366, - 2370, - 2382, - 2398 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2365 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L1" - } - ] - }, - { - "id": 2407, - "name": "themes/overlaybadge", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OverlayBadge Design Tokens\n\n[Live Demo](https://www.primeng.org/overlaybadge/)" - } - ] - }, - "children": [ - { - "id": 2408, - "name": "OverlayBadgeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2415, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2416, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2417, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2418, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2417, - 2418 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2409, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2410, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2411, - "name": "outline", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline of root" - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 21, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2412, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2413, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "overlaybadge.outline.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 27, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L27" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2414, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "overlaybadge.outline.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 33, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2413, - 2414 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 21, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2411 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2415, - 2409 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2408 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L1" - } - ] - }, - { - "id": 2419, - "name": "themes/paginator", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Paginator Design Tokens\n\n[Live Demo](https://www.primeng.org/paginator/)" - } - ] - }, - "children": [ - { - "id": 2420, - "name": "PaginatorDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2453, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2454, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2455, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2456, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2455, - 2456 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2421, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2422, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2423, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2424, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2425, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2426, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2427, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2428, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2423, - 2424, - 2425, - 2426, - 2427, - 2428 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2429, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2431, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2432, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2433, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2434, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2435, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2436, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2437, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2438, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2439, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2440, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L116" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2442, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 122, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2443, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2444, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2445, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 140, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2446, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 146, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2442, - 2443, - 2444, - 2445, - 2446 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 116, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L116" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 58, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 2447, - "name": "currentPageReport", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the current page report section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 152, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L152" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2448, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2449, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of current page report" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.current.page.report.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2449 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 152, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L152" - } - ] - } - } - }, - { - "id": 2450, - "name": "jumpToPageInput", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the jump to page input section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2451, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2452, - "name": "maxWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Max width of jump to page input" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.jump.to.page.input.max.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2452 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 163, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L163" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2453, - 2421, - 2429, - 2447, - 2450 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2420 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L1" - } - ] - }, - { - "id": 2457, - "name": "themes/panel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" - } - ] - }, - "children": [ - { - "id": 2458, - "name": "PanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2485, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2486, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2487, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2488, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2487, - 2488 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2459, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2460, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2461, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2462, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2463, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2464, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2461, - 2462, - 2463, - 2464 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2465, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2466, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2467, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2468, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2469, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2470, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2471, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2472, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2467, - 2468, - 2469, - 2470, - 2471, - 2472 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 2473, - "name": "toggleableHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggleable header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2474, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2475, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of toggleable header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.toggleable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2475 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 2476, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2477, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2478, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2478 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 2479, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2480, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2481, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2481 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 2482, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2483, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2484, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2484 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L120" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2485, - 2459, - 2465, - 2473, - 2476, - 2479, - 2482 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2458 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L1" - } - ] - }, - { - "id": 2489, - "name": "themes/panelmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "PanelMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/panelmenu/)" - } - ] - }, - "children": [ - { - "id": 2490, - "name": "PanelMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2530, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2531, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2532, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2533, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2532, - 2533 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2491, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2492, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2493, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2494, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2493, - 2494 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2495, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2496, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2497, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2498, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2499, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2500, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2501, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2502, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2503, - "name": "first", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First of panel" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2504, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2505, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.first.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2506, - "name": "topBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First top border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.first.top.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2505, - 2506 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 74, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2507, - "name": "last", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last of panel" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2508, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2509, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.last.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2510, - "name": "bottomBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last bottom border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.last.bottom.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2509, - 2510 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 91, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L91" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2507 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 34, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2511, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2512, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2513, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2514, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2515, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2516, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2517, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2518, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2519, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2520, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2521, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2522, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2521, - 2522 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 149, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L149" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 109, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 2523, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 167, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L167" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2525, - "name": "indent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Indent of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2525 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 167, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L167" - } - ] - } - } - }, - { - "id": 2526, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 178, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L178" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2527, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2528, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2529, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2528, - 2529 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 178, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L178" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2530, - 2491, - 2495, - 2511, - 2523, - 2526 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2490 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L1" - } - ] - }, - { - "id": 2534, - "name": "themes/password", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Password Design Tokens\n\n[Live Demo](https://www.primeng.org/password/)" - } - ] - }, - "children": [ - { - "id": 2535, - "name": "PasswordDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2560, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2561, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2562, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2563, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2562, - 2563 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2536, - "name": "meter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the meter section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2537, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2538, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2539, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2540, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2538, - 2539, - 2540 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2541, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2542, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2543, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2543 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 40, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2544, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2545, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2546, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2547, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2548, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2549, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2550, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2551, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2546, - 2547, - 2548, - 2549, - 2550, - 2551 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 51, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2552, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2553, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2554, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2554 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 92, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 2555, - "name": "strength", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the strength section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2556, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2557, - "name": "weakBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Weak background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.weak.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2558, - "name": "mediumBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Medium background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.medium.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2559, - "name": "strongBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Strong background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.strong.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2557, - 2558, - 2559 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 103, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L103" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2560, - 2536, - 2541, - 2544, - 2552, - 2555 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2535 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L1" - } - ] - }, - { - "id": 2564, - "name": "themes/picklist", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "PickList Design Tokens\n\n[Live Demo](https://www.primeng.org/picklist/)" - } - ] - }, - "children": [ - { - "id": 2565, - "name": "PickListDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2572, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2573, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2574, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2575, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2574, - 2575 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2566, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2567, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2568, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "picklist.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2568 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2569, - "name": "controls", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the controls section" - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2570, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2571, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of controls" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "picklist.controls.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2571 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 28, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2572, - 2566, - 2569 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2565 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L1" - } - ] - }, - { - "id": 2576, - "name": "themes/popover", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Popover Design Tokens\n\n[Live Demo](https://www.primeng.org/popover/)" - } - ] - }, - "children": [ - { - "id": 2577, - "name": "PopoverDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2590, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2591, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2592, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2593, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2592, - 2593 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2578, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2579, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2580, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2581, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2582, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2583, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2584, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2585, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2586, - "name": "arrowOffset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Arrow offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.arrow.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2587, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2588, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2589, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2589 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 64, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L64" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2590, - 2578, - 2587 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2577 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L1" - } - ] - }, - { - "id": 2594, - "name": "themes/progressbar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ProgressBar Design Tokens\n\n[Live Demo](https://www.primeng.org/progressbar/)" - } - ] - }, - "children": [ - { - "id": 2595, - "name": "ProgressBarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2609, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2610, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2611, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2612, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2611, - 2612 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2596, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2597, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2598, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2599, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2600, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2598, - 2599, - 2600 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2601, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the value section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2602, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2603, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of value" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.value.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2603 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 40, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2604, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2605, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2606, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2607, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2608, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2606, - 2607, - 2608 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L51" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2609, - 2596, - 2601, - 2604 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2595 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L1" - } - ] - }, - { - "id": 2613, - "name": "themes/progressspinner", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ProgressSpinner Design Tokens\n\n[Live Demo](https://www.primeng.org/progressspinner/)" - } - ] - }, - "children": [ - { - "id": 2614, - "name": "ProgressSpinnerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2621, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2622, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2623, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2624, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2623, - 2624 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2615, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2616, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2617, - "name": "color.1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.1 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2618, - "name": "color.2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.2 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2619, - "name": "color.3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.3 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2620, - "name": "color.4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.4 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2617, - 2618, - 2619, - 2620 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2621, - 2615 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2614 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L1" - } - ] - }, - { - "id": 2625, - "name": "themes/radiobutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "RadioButton Design Tokens\n\n[Live Demo](https://www.primeng.org/radiobutton/)" - } - ] - }, - "children": [ - { - "id": 2626, - "name": "RadioButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2659, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2660, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2661, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2662, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2661, - 2662 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2627, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2628, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2629, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2630, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2631, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2632, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2633, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2634, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2635, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2636, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2637, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2638, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2639, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2640, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2641, - "name": "checkedFocusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2642, - "name": "checkedDisabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2643, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2644, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 113, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2645, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L117" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2646, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2647, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2648, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2649, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2650, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2651, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2647, - 2648, - 2649, - 2650, - 2651 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 117, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L117" - } - ] - } - } - }, - { - "id": 2652, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2652 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2653, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 159, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L159" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2654, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2655, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2656, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2657, - "name": "checkedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.checked.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2658, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2655, - 2656, - 2657, - 2658 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 159, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L159" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2659, - 2627, - 2653 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2626 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L1" - } - ] - }, - { - "id": 2663, - "name": "themes/rating", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rating Design Tokens\n\n[Live Demo](https://www.primeng.org/rating/)" - } - ] - }, - "children": [ - { - "id": 2664, - "name": "RatingDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2675, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2676, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2677, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2678, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2677, - 2678 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2665, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2666, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2667, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2668, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2667, - 2668 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2669, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2670, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2671, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2672, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2673, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2674, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2671, - 2672, - 2673, - 2674 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 34, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L34" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2675, - 2665, - 2669 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2664 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L1" - } - ] - }, - { - "id": 2679, - "name": "themes/ripple", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Ripple Design Tokens\n\n[Live Demo](https://www.primeng.org/ripple/)" - } - ] - }, - "children": [ - { - "id": 2680, - "name": "RippleDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2684, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2685, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2686, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2687, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2686, - 2687 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2681, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2682, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2683, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "ripple.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2683 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2684, - 2681 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2680 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L1" - } - ] - }, - { - "id": 2688, - "name": "themes/scrollpanel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ScrollPanel Design Tokens\n\n[Live Demo](https://www.primeng.org/scrollpanel/)" - } - ] - }, - "children": [ - { - "id": 2689, - "name": "ScrollPanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2705, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2706, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2707, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2708, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2707, - 2708 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2690, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2691, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2692, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2692 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2693, - "name": "bar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the bar section" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2694, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2695, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2696, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2697, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of bar" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 44, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2698, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2699, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 50, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L50" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2700, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 56, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L56" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2701, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 62, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2702, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 68, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2703, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2699, - 2700, - 2701, - 2702, - 2703 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 44, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" - } - ] - } - } - }, - { - "id": 2704, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2695, - 2696, - 2697, - 2704 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 28, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2705, - 2690, - 2693 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2689 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L1" - } - ] - }, - { - "id": 2709, - "name": "themes/select", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Select Design Tokens\n\n[Live Demo](https://www.primeng.org/select/)" - } - ] - }, - "children": [ - { - "id": 2710, - "name": "SelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2782, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2784, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2785, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2784, - 2785 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2711, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2712, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2713, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2714, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2715, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2716, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2717, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2718, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2719, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2720, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2721, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2722, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2723, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2724, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2725, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2726, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2727, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2728, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2729, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2730, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2731, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2732, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2733, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2734, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2730, - 2731, - 2732, - 2733, - 2734 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 2735, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2735 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2736, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2738, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2739, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2738, - 2739 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 2740, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2741, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2742, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2743, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2744, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2745, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2746, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2742, - 2743, - 2744, - 2745, - 2746 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 2747, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2748, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2749, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2750, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2751, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L221" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2752, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2753, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2753 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 221, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L221" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2749, - 2750, - 2751 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 2754, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2755, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2756, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2757, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2758, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2759, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2760, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2761, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 269, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L269" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2762, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 275, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L275" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2763, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 281, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L281" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2764, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 287, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L287" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 233, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2765, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 292, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L292" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2766, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2767, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2768, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2769, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 310, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L310" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2770, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 316, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L316" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2767, - 2768, - 2769, - 2770 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 292, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L292" - } - ] - } - } - }, - { - "id": 2771, - "name": "clearIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the clear icon section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 321, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L321" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2772, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2773, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of clear icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.clear.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L327" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2773 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 321, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L321" - } - ] - } - } - }, - { - "id": 2774, - "name": "checkmark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the checkmark section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 332, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L332" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2775, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2776, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 338, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L338" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2777, - "name": "gutterStart", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter start of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.gutter.start" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 344, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L344" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2778, - "name": "gutterEnd", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter end of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.gutter.end" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 350, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L350" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2776, - 2777, - 2778 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 332, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L332" - } - ] - } - } - }, - { - "id": 2779, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 355, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L355" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2780, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2781, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 361, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2781 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 355, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L355" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2782, - 2711, - 2736, - 2740, - 2747, - 2754, - 2765, - 2771, - 2774, - 2779 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2710 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L1" - } - ] - }, - { - "id": 2786, - "name": "themes/selectbutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SelectButton Design Tokens\n\n[Live Demo](https://www.primeng.org/selectbutton/)" - } - ] - }, - "children": [ - { - "id": 2787, - "name": "SelectButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2792, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2794, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2795, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2794, - 2795 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2788, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2789, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2790, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "selectbutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2791, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "selectbutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2790, - 2791 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2792, - 2788 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2787 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L1" - } - ] - }, - { - "id": 2796, - "name": "themes/skeleton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Skeleton Design Tokens\n\n[Live Demo](https://www.primeng.org/skeleton/)" - } - ] - }, - "children": [ - { - "id": 2797, - "name": "SkeletonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2803, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2804, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2805, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2806, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2805, - 2806 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2798, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2799, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2800, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2801, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2802, - "name": "animationBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Animation background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.animation.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2800, - 2801, - 2802 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2803, - 2798 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2797 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L1" - } - ] - }, - { - "id": 2807, - "name": "themes/slider", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Slider Design Tokens\n\n[Live Demo](https://www.primeng.org/slider/)" - } - ] - }, - "children": [ - { - "id": 2808, - "name": "SliderDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2842, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2843, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2844, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2845, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2844, - 2845 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2809, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2810, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2811, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2811 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2812, - "name": "track", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the track section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2813, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2814, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2815, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2816, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2814, - 2815, - 2816 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 28, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2817, - "name": "range", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the range section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2818, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2819, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of range" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.range.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2819 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2820, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2821, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2822, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2823, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2824, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2825, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2826, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2827, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of handle" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L96" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2828, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2829, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2830, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2831, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2832, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content height of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2833, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2829, - 2830, - 2831, - 2832, - 2833 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 96, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L96" - } - ] - } - } - }, - { - "id": 2834, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of handle" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 131, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L131" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2835, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2836, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 137, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2837, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 143, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2838, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 149, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2839, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2840, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2836, - 2837, - 2838, - 2839, - 2840 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 131, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L131" - } - ] - } - } - }, - { - "id": 2841, - "name": "contentBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2834, - 2841 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 62, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L62" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2842, - 2809, - 2812, - 2817, - 2820 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2808 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L1" - } - ] - }, - { - "id": 2846, - "name": "themes/speeddial", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SpeedDial Design Tokens\n\n[Live Demo](https://www.primeng.org/speeddial/)" - } - ] - }, - "children": [ - { - "id": 2847, - "name": "SpeedDialDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2852, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2853, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2854, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2855, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2854, - 2855 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2848, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2849, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2850, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "speeddial.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2851, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "speeddial.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2850, - 2851 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2852, - 2848 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2847 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L1" - } - ] - }, - { - "id": 2856, - "name": "themes/splitbutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SplitButton Design Tokens\n\n[Live Demo](https://www.primeng.org/splitbutton/)" - } - ] - }, - "children": [ - { - "id": 2857, - "name": "SplitButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2863, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2864, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2865, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2866, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2865, - 2866 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2858, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2859, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2860, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2861, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2862, - "name": "raisedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Raised shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.raised.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2860, - 2861, - 2862 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2863, - 2858 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2857 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L1" - } - ] - }, - { - "id": 2867, - "name": "themes/splitter", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Splitter Design Tokens\n\n[Live Demo](https://www.primeng.org/splitter/)" - } - ] - }, - "children": [ - { - "id": 2868, - "name": "SplitterDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2890, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2891, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2892, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2893, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2892, - 2893 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2869, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2870, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2871, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2872, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2873, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2874, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2871, - 2872, - 2873, - 2874 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2875, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the gutter section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2876, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2877, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of gutter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.gutter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2877 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 2878, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2879, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2880, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2881, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2882, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2883, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of handle" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L79" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2885, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 85, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L85" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2886, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 91, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2887, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2888, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2889, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2885, - 2886, - 2887, - 2888, - 2889 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 79, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L79" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2880, - 2881, - 2882, - 2883 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 57, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L57" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2890, - 2869, - 2875, - 2878 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2868 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L1" - } - ] - }, - { - "id": 2894, - "name": "themes/stepper", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Stepper Design Tokens\n\n[Live Demo](https://www.primeng.org/stepper/)" - } - ] - }, - "children": [ - { - "id": 2895, - "name": "StepperDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2947, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2948, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2949, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2950, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2949, - 2950 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2896, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2897, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2898, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2898 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2899, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2900, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2901, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2902, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2903, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2904, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2901, - 2902, - 2903, - 2904 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 28, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2905, - "name": "step", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2906, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2907, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of step" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2908, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of step" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2907, - 2908 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 57, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 2909, - "name": "stepHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step header section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2910, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2911, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2912, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2913, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of step header" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L90" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2914, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2915, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 96, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2916, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2917, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2918, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2919, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2915, - 2916, - 2917, - 2918, - 2919 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 90, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L90" - } - ] - } - } - }, - { - "id": 2920, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2911, - 2912, - 2913, - 2920 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 74, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2921, - "name": "stepTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step title section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 132, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L132" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2922, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2923, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2924, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2925, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2923, - 2924, - 2925 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 132, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L132" - } - ] - } - } - }, - { - "id": 2926, - "name": "stepNumber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step number section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2927, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2928, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2929, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2930, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2931, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 179, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2932, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 185, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2933, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 191, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2934, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2935, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 203, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2936, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 209, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2937, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2938, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 155, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 2939, - "name": "steppanels", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the steppanels section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 226, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L226" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2940, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2941, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of steppanels" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanels.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 232, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2941 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 226, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L226" - } - ] - } - } - }, - { - "id": 2942, - "name": "steppanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the steppanel section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 237, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L237" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2943, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2944, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 243, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2945, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 249, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2946, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 255, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2944, - 2945, - 2946 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 237, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L237" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2947, - 2896, - 2899, - 2905, - 2909, - 2921, - 2926, - 2939, - 2942 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2895 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L1" - } - ] - }, - { - "id": 2951, - "name": "themes/steps", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Steps Design Tokens\n\n[Live Demo](https://www.primeng.org/steps/)" - } - ] - }, - "children": [ - { - "id": 2952, - "name": "StepsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2988, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2989, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2990, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2991, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2990, - 2991 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2953, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2954, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2955, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2955 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2956, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2957, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2958, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.separator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2958 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 28, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2959, - "name": "itemLink", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item link section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L39" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2960, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2961, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 45, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2962, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item link" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 49, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L49" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2963, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2964, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 55, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L55" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2965, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 61, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L61" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2966, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 67, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2967, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 73, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L73" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2968, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 79, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2964, - 2965, - 2966, - 2967, - 2968 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 49, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L49" - } - ] - } - } - }, - { - "id": 2969, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2961, - 2962, - 2969 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 39, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L39" - } - ] - } - } - }, - { - "id": 2970, - "name": "itemLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item label section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2971, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2972, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2973, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2974, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2972, - 2973, - 2974 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 91, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 2975, - "name": "itemNumber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item number section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 114, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L114" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2976, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2977, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2978, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2979, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2980, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2981, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2982, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2983, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 156, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L156" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2984, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 162, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L162" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2985, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2986, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 174, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L174" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2987, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 114, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L114" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2988, - 2953, - 2956, - 2959, - 2970, - 2975 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2952 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L1" - } - ] - }, - { - "id": 2992, - "name": "themes/tabmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tabmenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tabmenu/)" - } - ] - }, - "children": [ - { - "id": 2993, - "name": "TabmenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3035, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3036, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3037, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3038, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3037, - 3038 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2994, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2995, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2996, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2996 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2997, - "name": "tablist", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tablist section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2998, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2999, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3000, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3001, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2999, - 3000, - 3001 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3002, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3003, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3004, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3005, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3006, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3007, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3008, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3009, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3010, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3011, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3012, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3013, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3014, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3015, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3016, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3017, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3018, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3019, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3020, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3021, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3022, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3023, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3024, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3020, - 3021, - 3022, - 3023, - 3024 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 139, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 51, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3025, - "name": "itemIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item icon section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3026, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3027, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3028, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3029, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3027, - 3028, - 3029 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 175, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 3030, - "name": "activeBar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the active bar section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 198, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L198" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3031, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3032, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3033, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Bottom of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3034, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3032, - 3033, - 3034 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 198, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L198" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3035, - 2994, - 2997, - 3002, - 3025, - 3030 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2993 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L1" - } - ] - }, - { - "id": 3039, - "name": "themes/tabs", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tabs Design Tokens\n\n[Live Demo](https://www.primeng.org/tabs/)" - } - ] - }, - "children": [ - { - "id": 3040, - "name": "TabsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3103, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3104, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3105, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3106, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3105, - 3106 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3041, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3042, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3043, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3043 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3044, - "name": "tablist", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tablist section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3045, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3046, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3047, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3048, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3046, - 3047, - 3048 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3049, - "name": "tab", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3050, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3051, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3052, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3053, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3054, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3055, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3056, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3057, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3058, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3059, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3060, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3061, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3062, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3063, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3064, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3065, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of tab" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3066, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3067, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3068, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3069, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3070, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3071, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3067, - 3068, - 3069, - 3070, - 3071 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 139, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 51, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3072, - "name": "tabpanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tabpanel section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3073, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3074, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3075, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3076, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3077, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of tabpanel" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L197" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3078, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3079, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 203, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3080, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 209, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3081, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 215, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3082, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 221, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3083, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3079, - 3080, - 3081, - 3082, - 3083 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 197, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L197" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3074, - 3075, - 3076, - 3077 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 175, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 3084, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3085, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3086, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3087, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3088, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3089, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3090, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 261, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L261" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3091, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3092, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 267, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3093, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 273, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L273" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3094, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 279, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L279" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3095, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 285, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3096, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 291, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3092, - 3093, - 3094, - 3095, - 3096 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 261, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L261" - } - ] - } - } - }, - { - "id": 3097, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3086, - 3087, - 3088, - 3089, - 3090, - 3097 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 3098, - "name": "activeBar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the active bar section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 303, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L303" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3099, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3100, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 309, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L309" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3101, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Bottom of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 315, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L315" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3102, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 321, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L321" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3100, - 3101, - 3102 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 303, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L303" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3103, - 3041, - 3044, - 3049, - 3072, - 3084, - 3098 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3040 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L1" - } - ] - }, - { - "id": 3107, - "name": "themes/tabview", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TabView Design Tokens\n\n[Live Demo](https://www.primeng.org/tabview/)" - } - ] - }, - "children": [ - { - "id": 3108, - "name": "TabViewDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3133, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3134, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3135, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3136, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3135, - 3136 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3109, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3110, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3111, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3111 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3112, - "name": "tabList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab list section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3113, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3114, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.list.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3115, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.list.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3114, - 3115 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3116, - "name": "tab", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L45" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3117, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3118, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3119, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3120, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3121, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3122, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3118, - 3119, - 3120, - 3121, - 3122 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 45, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L45" - } - ] - } - } - }, - { - "id": 3123, - "name": "tabPanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab panel section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 80, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3124, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3125, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3126, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3125, - 3126 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 80, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 3127, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3128, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3129, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3130, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3131, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3132, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3129, - 3130, - 3131, - 3132 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 97, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L97" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3133, - 3109, - 3112, - 3116, - 3123, - 3127 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3108 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L1" - } - ] - }, - { - "id": 3137, - "name": "themes/tag", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tag Design Tokens\n\n[Live Demo](https://www.primeng.org/tag/)" - } - ] - }, - "children": [ - { - "id": 3138, - "name": "TagDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3178, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3179, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3180, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3181, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3180, - 3181 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3139, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3140, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3141, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3142, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3143, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3144, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3145, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3146, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3141, - 3142, - 3143, - 3144, - 3145, - 3146 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3147, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3148, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3149, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3149 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3150, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the primary section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3152, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3153, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3152, - 3153 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 69, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3154, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3156, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3157, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3156, - 3157 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 86, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 3158, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3159, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3160, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3161, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3160, - 3161 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 103, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 3162, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3163, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3164, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3165, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3164, - 3165 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 120, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 3166, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 137, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L137" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3167, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3168, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 143, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3169, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3168, - 3169 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 137, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L137" - } - ] - } - } - }, - { - "id": 3170, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the danger section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 154, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L154" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3172, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3173, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 166, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L166" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3172, - 3173 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 154, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L154" - } - ] - } - } - }, - { - "id": 3174, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 171, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L171" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3175, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3176, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3177, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3176, - 3177 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 171, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L171" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3178, - 3139, - 3147, - 3150, - 3154, - 3158, - 3162, - 3166, - 3170, - 3174 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3138 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L1" - } - ] - }, - { - "id": 3182, - "name": "themes/terminal", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Terminal Design Tokens\n\n[Live Demo](https://www.primeng.org/terminal/)" - } - ] - }, - "children": [ - { - "id": 3183, - "name": "TerminalDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3198, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3199, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3200, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3201, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3200, - 3201 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3184, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3185, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3186, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3187, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3188, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3189, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3190, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3191, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3186, - 3187, - 3188, - 3189, - 3190, - 3191 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3192, - "name": "prompt", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the prompt section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3194, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of prompt" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.prompt.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3194 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 58, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3195, - "name": "commandResponse", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the command response section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3196, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3197, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of command response" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.command.response.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3197 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 69, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L69" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3198, - 3184, - 3192, - 3195 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3183 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L1" - } - ] - }, - { - "id": 3202, - "name": "themes/textarea", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Textarea Design Tokens\n\n[Live Demo](https://www.primeng.org/textarea/)" - } - ] - }, - "children": [ - { - "id": 3203, - "name": "TextareaDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3229, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3230, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3231, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3232, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3231, - 3232 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3204, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3205, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3206, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3207, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3208, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3209, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3210, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3211, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3212, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3213, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3214, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3215, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3216, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3217, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3218, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3219, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3220, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3221, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3222, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3223, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3224, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3225, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3226, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3227, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3223, - 3224, - 3225, - 3226, - 3227 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 3228, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3228 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3229, - 3204 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3203 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L1" - } - ] - }, - { - "id": 3233, - "name": "themes/tieredmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TieredMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tieredmenu/)" - } - ] - }, - "children": [ - { - "id": 3234, - "name": "TieredMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3277, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3278, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3279, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3280, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3279, - 3280 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3235, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3236, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3237, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3238, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3239, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3240, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3241, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3242, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3237, - 3238, - 3239, - 3240, - 3241, - 3242 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3243, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3244, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3245, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3246, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3245, - 3246 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3247, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3248, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3249, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3250, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3251, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3252, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3253, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3254, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3255, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3256, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3257, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3258, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3259, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3260, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3261, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3259, - 3260, - 3261 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 3262, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3264, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3265, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3266, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3267, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3264, - 3265, - 3266, - 3267 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 151, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 3268, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 180, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3269, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3270, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3271, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3272, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3273, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3270, - 3271, - 3272, - 3273 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 180, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" - } - ] - } - } - }, - { - "id": 3274, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 209, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3275, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3276, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3276 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 209, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3277, - 3235, - 3243, - 3247, - 3262, - 3268, - 3274 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3234 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L1" - } - ] - }, - { - "id": 3281, - "name": "themes/timeline", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Timeline Design Tokens\n\n[Live Demo](https://www.primeng.org/timeline/)" - } - ] - }, - "children": [ - { - "id": 3282, - "name": "TimelineDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3313, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3314, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3315, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3316, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3315, - 3316 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3283, - "name": "event", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3284, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3285, - "name": "minHeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min height of event" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.min.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3285 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3286, - "name": "horizontal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the horizontal section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3287, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3288, - "name": "eventContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content of horizontal" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L32" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3289, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3290, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.horizontal.event.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 38, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L38" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3290 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 32, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L32" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3288 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 28, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3291, - "name": "vertical", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the vertical section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 44, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L44" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3292, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3293, - "name": "eventContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content of vertical" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 48, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L48" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3295, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.vertical.event.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 54, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L54" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3295 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 48, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L48" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3293 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 44, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L44" - } - ] - } - } - }, - { - "id": 3296, - "name": "eventMarker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event marker section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 60, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L60" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3297, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3298, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 66, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L66" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3299, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 72, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L72" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3300, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L78" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3301, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 84, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3302, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3303, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of event marker" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L94" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3304, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3305, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content border radius of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 100, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3306, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content size of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 106, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3307, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content background of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 112, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3308, - "name": "insetShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content inset shadow of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.inset.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 118, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3305, - 3306, - 3307, - 3308 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 94, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L94" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3298, - 3299, - 3300, - 3301, - 3302, - 3303 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 60, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L60" - } - ] - } - } - }, - { - "id": 3309, - "name": "eventConnector", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event connector section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 124, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L124" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3310, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3311, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of event connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.connector.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3312, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of event connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.connector.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3311, - 3312 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 124, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L124" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3313, - 3283, - 3286, - 3291, - 3296, - 3309 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3282 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L1" - } - ] - }, - { - "id": 3317, - "name": "themes/toast", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toast Design Tokens\n\n[Live Demo](https://www.primeng.org/toast/)" - } - ] - }, - "children": [ - { - "id": 3318, - "name": "ToastDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3447, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3448, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3449, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3450, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3449, - 3450 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3319, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3320, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3321, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3322, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3323, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3324, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3321, - 3322, - 3323, - 3324 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3325, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3326, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3327, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3327 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 3328, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3329, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3330, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3331, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3330, - 3331 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 57, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 3332, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3333, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3334, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.text.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3334 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 74, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 3335, - "name": "summary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the summary section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3336, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3337, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of summary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.summary.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3338, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of summary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.summary.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3337, - 3338 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 85, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L85" - } - ] - } - } - }, - { - "id": 3339, - "name": "detail", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the detail section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 102, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L102" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3340, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3341, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of detail" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.detail.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3342, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of detail" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.detail.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 114, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3341, - 3342 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 102, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L102" - } - ] - } - } - }, - { - "id": 3343, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 119, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L119" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3344, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3345, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 125, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L125" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3346, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 131, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L131" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3347, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 137, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3348, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L141" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3349, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3350, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3351, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 153, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L153" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3352, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 159, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3350, - 3351, - 3352 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 141, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L141" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3345, - 3346, - 3347, - 3348 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 119, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L119" - } - ] - } - } - }, - { - "id": 3353, - "name": "closeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close icon section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3354, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3355, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3355 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 165, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L165" - } - ] - } - } - }, - { - "id": 3356, - "name": "blur", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the blur section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 176, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L176" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3357, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3358, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3359, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3360, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3361, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3362, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 206, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3358, - 3359, - 3360, - 3361, - 3362 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 176, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L176" - } - ] - } - } - }, - { - "id": 3363, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 211, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L211" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3364, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3365, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3366, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3367, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3368, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3369, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 241, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L241" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3370, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of info" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L245" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3372, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 251, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3373, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of info" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 255, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L255" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3374, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3375, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 261, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3376, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 267, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3375, - 3376 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 255, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L255" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3372, - 3373 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 245, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L245" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3365, - 3366, - 3367, - 3368, - 3369, - 3370 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 211, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L211" - } - ] - } - } - }, - { - "id": 3377, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 274, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L274" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3378, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3379, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L280" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3380, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 286, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L286" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3381, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 292, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L292" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3382, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3383, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3384, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of success" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 308, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3385, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3386, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 314, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3387, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of success" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 318, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L318" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3388, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3389, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 324, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L324" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3390, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 330, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L330" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3389, - 3390 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 318, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L318" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3386, - 3387 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 308, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L308" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3379, - 3380, - 3381, - 3382, - 3383, - 3384 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 274, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L274" - } - ] - } - } - }, - { - "id": 3391, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 337, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L337" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3393, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3394, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3395, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 355, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L355" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3396, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 361, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3397, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 367, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L367" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3398, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of warn" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 371, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L371" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3399, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3400, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 377, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3401, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of warn" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 381, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L381" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3402, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3403, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 387, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L387" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3404, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 393, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L393" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3403, - 3404 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 381, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L381" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3400, - 3401 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 371, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L371" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3393, - 3394, - 3395, - 3396, - 3397, - 3398 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 337, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L337" - } - ] - } - } - }, - { - "id": 3405, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 400, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L400" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3406, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3407, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 406, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L406" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3408, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 412, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L412" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3409, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 418, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L418" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3410, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 424, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L424" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3411, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 430, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L430" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3412, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of error" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 434, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L434" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3413, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3414, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 440, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L440" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3415, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of error" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 444, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L444" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3416, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3417, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 450, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L450" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3418, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 456, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L456" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3417, - 3418 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 444, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L444" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3414, - 3415 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 434, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L434" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3407, - 3408, - 3409, - 3410, - 3411, - 3412 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 400, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L400" - } - ] - } - } - }, - { - "id": 3419, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 463, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L463" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3420, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3421, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 469, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L469" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3422, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 475, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L475" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3423, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 481, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L481" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3424, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 487, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L487" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3425, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 493, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L493" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3426, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of secondary" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 497, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L497" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3427, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3428, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 503, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L503" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3429, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of secondary" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 507, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L507" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3431, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 513, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3432, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 519, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L519" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3431, - 3432 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 507, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L507" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3428, - 3429 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 497, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L497" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3421, - 3422, - 3423, - 3424, - 3425, - 3426 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 463, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L463" - } - ] - } - } - }, - { - "id": 3433, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 526, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L526" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3434, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3435, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 532, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L532" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3436, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 538, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L538" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3437, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 544, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L544" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3438, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 550, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L550" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3439, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 556, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L556" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3440, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of contrast" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 560, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L560" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3442, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 566, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L566" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3443, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of contrast" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 570, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L570" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3444, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 576, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L576" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3446, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 582, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L582" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3445, - 3446 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 570, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L570" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3442, - 3443 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 560, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L560" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3435, - 3436, - 3437, - 3438, - 3439, - 3440 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 526, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L526" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3447, - 3319, - 3325, - 3328, - 3332, - 3335, - 3339, - 3343, - 3353, - 3356, - 3363, - 3377, - 3391, - 3405, - 3419, - 3433 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3318 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L1" - } - ] - }, - { - "id": 3451, - "name": "themes/togglebutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ToggleButton Design Tokens\n\n[Live Demo](https://www.primeng.org/togglebutton/)" - } - ] - }, - "children": [ - { - "id": 3452, - "name": "ToggleButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3491, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3492, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3493, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3494, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3493, - 3494 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3453, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3454, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3455, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3456, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3457, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3458, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3459, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3460, - "name": "disabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3461, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3462, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3463, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3464, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3465, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3466, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3467, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 87, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3468, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 93, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3469, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 99, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3465, - 3466, - 3467, - 3468, - 3469 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 69, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3470, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3471, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3472, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3473, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 124, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L124" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3474, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3475, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3476, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 142, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L142" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3477, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3478, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3479, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 159, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L159" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3480, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3481, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3483, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3484, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3481, - 3482, - 3483, - 3484 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 159, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L159" - } - ] - } - } - }, - { - "id": 3485, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 188, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L188" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3486, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3487, - "name": "left", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Left of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.left" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3488, - "name": "top", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Top of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.top" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3489, - "name": "checkedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked shadow of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.checked.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 206, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3490, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 212, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3487, - 3488, - 3489, - 3490 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 188, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L188" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3491, - 3453, - 3479, - 3485 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3452 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L1" - } - ] - }, - { - "id": 3495, - "name": "themes/toggleswitch", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ToggleSwitch Design Tokens\n\n[Live Demo](https://www.primeng.org/toggleswitch/)" - } - ] - }, - "children": [ - { - "id": 3496, - "name": "ToggleSwitchDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3533, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3534, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3535, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3536, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3535, - 3536 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3497, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3498, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3499, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3500, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3501, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3502, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3503, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3504, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3505, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3506, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3507, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3508, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3509, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3510, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3506, - 3507, - 3508, - 3509, - 3510 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 51, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3511, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3512, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3513, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3514, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3515, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3516, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3517, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 124, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L124" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3518, - "name": "slideDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Slide duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.slide.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3519, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3520, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 142, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L142" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3521, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3522, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3523, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3524, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3525, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3526, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3527, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3528, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3529, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 189, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3530, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3531, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 201, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3532, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 207, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 165, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3533, - 3497, - 3524 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3496 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L1" - } - ] - }, - { - "id": 3537, - "name": "themes/toolbar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toolbar Design Tokens\n\n[Live Demo](https://www.primeng.org/toolbar/)" - } - ] - }, - "children": [ - { - "id": 3538, - "name": "ToolbarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3547, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3548, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3549, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3550, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3549, - 3550 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3539, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3541, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3542, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3543, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3544, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3545, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3546, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3541, - 3542, - 3543, - 3544, - 3545, - 3546 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3547, - 3539 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3538 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L1" - } - ] - }, - { - "id": 3551, - "name": "themes/tooltip", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tooltip Design Tokens\n\n[Live Demo](https://www.primeng.org/tooltip/)" - } - ] - }, - "children": [ - { - "id": 3552, - "name": "TooltipDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3562, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3563, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3564, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3565, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3564, - 3565 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3553, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3554, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3555, - "name": "maxWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Max width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.max.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3556, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3557, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3558, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3559, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3560, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3561, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3562, - 3553 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3552 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L1" - } - ] - }, - { - "id": 3566, - "name": "themes/tree", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tree Design Tokens\n\n[Live Demo](https://www.primeng.org/tree/)" - } - ] - }, - "children": [ - { - "id": 3567, - "name": "TreeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3617, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3618, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3619, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3620, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3619, - 3620 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3568, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3569, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3570, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3571, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3572, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3573, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3574, - "name": "indent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Indent of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3575, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3570, - 3571, - 3572, - 3573, - 3574, - 3575 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3576, - "name": "node", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3577, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3578, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3579, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3580, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3581, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3582, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3583, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3584, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3585, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L104" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3586, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3587, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 110, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3588, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 116, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3589, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 122, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3590, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3591, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3587, - 3588, - 3589, - 3590, - 3591 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 104, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L104" - } - ] - } - } - }, - { - "id": 3592, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3592 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3593, - "name": "nodeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node icon section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 146, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L146" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3594, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3595, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3596, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3597, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3595, - 3596, - 3597 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 146, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L146" - } - ] - } - } - }, - { - "id": 3598, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 169, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L169" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3599, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3600, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3601, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3602, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3603, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3604, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3605, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3606, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3607, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L215" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3608, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3609, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 221, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3610, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3611, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 233, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3612, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 239, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3613, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 245, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3609, - 3610, - 3611, - 3612, - 3613 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 215, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L215" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 169, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L169" - } - ] - } - } - }, - { - "id": 3614, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 251, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L251" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3615, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3616, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3616 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 251, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L251" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3617, - 3568, - 3576, - 3593, - 3598, - 3614 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3567 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L1" - } - ] - }, - { - "id": 3621, - "name": "themes/treeselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TreeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/treeselect/)" - } - ] - }, - "children": [ - { - "id": 3622, - "name": "TreeSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3668, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3669, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3670, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3671, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3670, - 3671 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3623, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3624, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3625, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3626, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3627, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3628, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3629, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3630, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3631, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3632, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3633, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3634, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3635, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3636, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3637, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3638, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3639, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3640, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3641, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3642, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3643, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3644, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3645, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3646, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3642, - 3643, - 3644, - 3645, - 3646 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 3647, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3647 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3648, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3649, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3650, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3651, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3650, - 3651 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 3652, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3653, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3654, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3655, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3656, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3657, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3658, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3654, - 3655, - 3656, - 3657, - 3658 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 3659, - "name": "tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tree section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3660, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3661, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tree" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.tree.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3661 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 3662, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 216, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L216" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3663, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3664, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3664 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 216, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L216" - } - ] - } - } - }, - { - "id": 3665, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 227, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L227" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3666, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3667, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 233, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3667 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 227, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L227" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3668, - 3623, - 3648, - 3652, - 3659, - 3662, - 3665 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3622 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L1" - } - ] - }, - { - "id": 3672, - "name": "themes/treetable", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TreeTable Design Tokens\n\n[Live Demo](https://www.primeng.org/treetable/)" - } - ] - }, - "children": [ - { - "id": 3673, - "name": "TreeTableDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3786, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3787, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3788, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3789, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3788, - 3789 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3674, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3675, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3676, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3677, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3676, - 3677 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3678, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3679, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3680, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3681, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3682, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3683, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3684, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3680, - 3681, - 3682, - 3683, - 3684 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 3685, - "name": "headerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3686, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3687, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3688, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3689, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3690, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3691, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3692, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3693, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3694, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3695, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3696, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of header cell" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3697, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3698, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3699, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3700, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3701, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3702, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3698, - 3699, - 3700, - 3701, - 3702 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 127, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 69, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3703, - "name": "columnTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column title section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3704, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3705, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3705 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 163, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L163" - } - ] - } - } - }, - { - "id": 3706, - "name": "row", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 174, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L174" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3707, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3708, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3709, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3710, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3711, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3712, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3713, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3714, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 214, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L214" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3715, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3716, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 220, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L220" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3717, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 226, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L226" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3718, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 232, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3719, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 238, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3720, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 244, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L244" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3716, - 3717, - 3718, - 3719, - 3720 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 214, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L214" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 174, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L174" - } - ] - } - } - }, - { - "id": 3721, - "name": "bodyCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 250, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L250" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3722, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3723, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3724, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3725, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3726, - "name": "selectedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.selected.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3723, - 3724, - 3725, - 3726 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 250, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L250" - } - ] - } - } - }, - { - "id": 3727, - "name": "footerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3728, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3729, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3730, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3731, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3732, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3729, - 3730, - 3731, - 3732 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 3733, - "name": "columnFooter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column footer section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 308, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3734, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3735, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.footer.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 314, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3735 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 308, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L308" - } - ] - } - } - }, - { - "id": 3736, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 319, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L319" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3738, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3739, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3740, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3741, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3742, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3738, - 3739, - 3740, - 3741, - 3742 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 319, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L319" - } - ] - } - } - }, - { - "id": 3743, - "name": "columnResizerWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column resizer width section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 354, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L354" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3744, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3745, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3746, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 366, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L366" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3747, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 372, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L372" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3748, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 378, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L378" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3749, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 384, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L384" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3750, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 390, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L390" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3745, - 3746, - 3747, - 3748, - 3749, - 3750 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 354, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L354" - } - ] - } - } - }, - { - "id": 3751, - "name": "resizeIndicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the resize indicator section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 395, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L395" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3752, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3753, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.resize.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 401, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3754, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.resize.indicator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 407, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3753, - 3754 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 395, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L395" - } - ] - } - } - }, - { - "id": 3755, - "name": "sortIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sort icon section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 412, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L412" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3756, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3757, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.sort.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 418, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L418" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3758, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.sort.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 424, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L424" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3757, - 3758 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 412, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L412" - } - ] - } - } - }, - { - "id": 3759, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 429, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L429" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3760, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3761, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 435, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L435" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3761 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 429, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L429" - } - ] - } - } - }, - { - "id": 3762, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 440, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L440" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3763, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3764, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 446, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L446" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3765, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 452, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L452" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3766, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 458, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L458" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3767, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 464, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L464" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3768, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 470, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L470" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3769, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 476, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L476" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3770, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 482, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L482" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3771, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 486, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L486" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3772, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3773, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 492, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L492" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3774, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 498, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L498" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3775, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 504, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L504" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3776, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 510, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L510" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3777, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 516, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L516" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3773, - 3774, - 3775, - 3776, - 3777 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 486, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L486" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 440, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L440" - } - ] - } - } - }, - { - "id": 3778, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 522, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L522" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3780, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 528, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L528" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3781, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 534, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L534" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3780, - 3781 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 522, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L522" - } - ] - } - } - }, - { - "id": 3782, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 539, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L539" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3784, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 545, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L545" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3785, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 551, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L551" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3784, - 3785 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 539, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L539" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3786, - 3674, - 3678, - 3685, - 3703, - 3706, - 3721, - 3727, - 3733, - 3736, - 3743, - 3751, - 3755, - 3759, - 3762, - 3778, - 3782 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3673 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L1" - } - ] - }, - { - "id": 3790, - "name": "themes/scroller", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "VirtualScroller Design Tokens\n\n[Live Demo](https://www.primeng.org/virtualscroller/)" - } - ] - }, - "children": [ - { - "id": 3791, - "name": "VirtualScrollerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3799, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3800, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3801, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3802, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3801, - 3802 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3792, - "name": "loaderMask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mask section" - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3794, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of loader mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3795, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of loader mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3794, - 3795 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 17, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3796, - "name": "loaderIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loader icon section" - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3797, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3798, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of the loader icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3798 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 34, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3799, - 3792, - 3796 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3791 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L1" - } - ] - } - ], - "groups": [ - { - "title": "Modules", - "children": [ - 1, - 56, - 141, - 168, - 228, - 237, - 269, - 527, - 553, - 584, - 646, - 686, - 720, - 750, - 763, - 790, - 832, - 1007, - 1051, - 1175, - 1203, - 1230, - 1254, - 1277, - 1305, - 1342, - 1382, - 1421, - 1433, - 1546, - 1555, - 1603, - 1681, - 1734, - 1756, - 1792, - 1804, - 1827, - 1868, - 1893, - 1952, - 2034, - 2073, - 2139, - 2252, - 2279, - 2352, - 2364, - 2407, - 2419, - 2457, - 2489, - 2534, - 2564, - 2576, - 2594, - 2613, - 2625, - 2663, - 2679, - 2688, - 2709, - 2786, - 2796, - 2807, - 2846, - 2856, - 2867, - 2894, - 2951, - 2992, - 3039, - 3107, - 3137, - 3182, - 3202, - 3233, - 3281, - 3317, - 3451, - 3495, - 3537, - 3551, - 3566, - 3621, - 3672, - 3790 - ] - } - ], - "packageName": "primeng", - "packageVersion": "18.0.0-beta.1", - "readme": [ - { - "kind": "text", - "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." - } - ], - "symbolIdMap": { - "1": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "" - }, - "2": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens" - }, - "3": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.root" - }, - "4": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "5": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.transitionDuration" - }, - "6": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.panel" - }, - "7": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "8": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "9": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "10": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.header" - }, - "11": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "12": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "13": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "14": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" - }, - "15": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.padding" - }, - "16": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.fontWeight" - }, - "17": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderRadius" - }, - "18": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "19": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "20": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.background" - }, - "21": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverBackground" - }, - "22": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBackground" - }, - "23": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverBackground" - }, - "24": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.focusRing" - }, - "25": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "26": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.width" - }, - "27": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.style" - }, - "28": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "29": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.offset" - }, - "30": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.shadow" - }, - "31": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.toggleIcon" - }, - "32": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "33": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "34": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "35": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" - }, - "36": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverColor" - }, - "37": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.first" - }, - "38": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "39": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.topBorderRadius" - }, - "40": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "41": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.last" - }, - "42": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "43": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.bottomBorderRadius" - }, - "44": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBottomBorderRadius" - }, - "45": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.content" - }, - "46": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "47": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "48": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "49": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.background" - }, - "50": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "51": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.padding" - }, - "52": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "53": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "54": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "55": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "56": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "" - }, - "57": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens" - }, - "58": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.root" - }, - "59": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "60": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "61": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "62": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "63": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "64": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "65": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "66": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "67": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "68": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "69": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "70": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "71": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "72": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "73": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "74": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "75": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "76": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "77": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "78": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.style" - }, - "79": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "80": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.offset" - }, - "81": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "82": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "83": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.overlay" - }, - "84": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "85": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "86": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "87": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "88": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "89": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "90": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.list" - }, - "91": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "92": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "93": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.gap" - }, - "94": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.option" - }, - "95": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "96": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "97": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "98": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "99": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "100": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "101": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "102": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "103": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "104": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "105": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.optionGroup" - }, - "106": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "107": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "108": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "109": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "110": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "111": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.dropdown" - }, - "112": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "113": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "114": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "115": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "116": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "117": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "118": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "119": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "120": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "121": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.style" - }, - "122": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "123": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.offset" - }, - "124": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "125": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "126": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "127": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "128": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "129": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "130": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "131": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.chip" - }, - "132": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "133": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "134": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.emptyMessage" - }, - "135": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "136": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "137": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "138": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "139": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "140": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "141": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "" - }, - "142": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens" - }, - "143": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.root" - }, - "144": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "145": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "146": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "147": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "148": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.background" - }, - "149": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "150": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.group" - }, - "151": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "152": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "153": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.offset" - }, - "154": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.lg" - }, - "155": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "156": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "157": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "158": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "159": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.xl" - }, - "160": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "161": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "162": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "163": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "164": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "165": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "166": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "167": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "168": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "" - }, - "169": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens" - }, - "170": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.root" - }, - "171": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "172": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "173": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.padding" - }, - "174": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "175": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "176": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "177": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "178": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.dot" - }, - "179": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "180": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.size" - }, - "181": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.sm" - }, - "182": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "183": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "184": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "185": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "186": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.lg" - }, - "187": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "188": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "189": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "190": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "191": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.xl" - }, - "192": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "193": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "194": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "195": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "196": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.primary" - }, - "197": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "198": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "199": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "200": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.secondary" - }, - "201": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "202": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "203": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "204": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.success" - }, - "205": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "206": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "207": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "208": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.info" - }, - "209": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "210": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "211": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "212": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.warn" - }, - "213": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "214": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "215": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "216": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.danger" - }, - "217": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "218": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "219": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "220": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.contrast" - }, - "221": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "222": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "223": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "224": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "225": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "226": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "227": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "228": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "" - }, - "229": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "BlockUIDesignTokens" - }, - "230": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "BlockUIDesignTokens.root" - }, - "231": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "__type" - }, - "232": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "233": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "234": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "235": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "236": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "237": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "" - }, - "238": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens" - }, - "239": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.root" - }, - "240": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "241": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.padding" - }, - "242": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.background" - }, - "243": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.gap" - }, - "244": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "245": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.item" - }, - "246": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "247": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "248": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "249": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "250": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.gap" - }, - "251": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.icon" - }, - "252": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "253": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "254": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "255": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "256": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "257": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.width" - }, - "258": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.style" - }, - "259": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "260": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.offset" - }, - "261": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "262": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.separator" - }, - "263": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "264": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "265": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "266": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "267": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "268": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "269": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "" - }, - "270": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens" - }, - "271": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.root" - }, - "272": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "273": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "274": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "275": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.gap" - }, - "276": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "277": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "278": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.iconOnlyWidth" - }, - "279": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.sm" - }, - "280": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "281": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "282": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "283": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "284": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.lg" - }, - "285": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "286": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "287": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "288": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "289": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.label" - }, - "290": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "291": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "292": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.raisedShadow" - }, - "293": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "294": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "295": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.width" - }, - "296": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.style" - }, - "297": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.offset" - }, - "298": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.badgeSize" - }, - "299": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "300": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "301": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "302": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "303": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "304": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "305": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "306": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "307": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "308": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "309": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "310": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "311": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "312": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "313": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "314": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "315": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "316": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "317": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "318": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "319": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "320": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "321": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "322": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "323": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "324": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "325": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "326": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "327": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "328": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "329": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "330": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "331": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "332": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "333": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "334": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "335": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "336": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "337": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "338": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "339": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "340": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "341": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "342": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "343": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "344": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "345": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "346": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "347": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "348": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "349": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "350": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "351": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "352": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "353": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "354": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "355": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "356": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "357": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "358": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "359": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "360": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "361": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "362": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "363": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "364": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "365": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "366": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "367": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "368": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "369": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "370": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "371": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "372": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "373": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "374": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "375": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "376": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "377": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "378": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "379": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "380": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "381": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "382": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "383": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "384": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "385": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "386": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "387": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "388": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "389": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "390": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "391": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "392": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "393": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "394": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "395": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "396": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "397": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "398": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "399": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "400": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "401": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "402": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "403": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "404": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "405": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.contrast" - }, - "406": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "407": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "408": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "409": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "410": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "411": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "412": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "413": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "414": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "415": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "416": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "417": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "418": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "419": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "420": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.outlined" - }, - "421": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "422": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "423": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "424": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "425": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "426": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "427": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "428": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "429": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "430": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "431": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "432": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "433": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "434": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "435": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "436": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "437": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "438": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "439": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "440": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "441": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "442": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "443": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "444": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "445": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "446": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "447": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "448": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "449": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "450": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "451": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "452": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "453": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "454": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "455": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "456": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "457": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "458": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "459": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "460": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "461": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "462": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "463": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "464": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.contrast" - }, - "465": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "466": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "467": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "468": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "469": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "470": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.plain" - }, - "471": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "472": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "473": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "474": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "475": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "476": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.text" - }, - "477": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "478": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "479": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "480": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "481": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "482": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "483": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "484": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "485": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "486": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "487": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "488": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "489": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "490": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "491": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "492": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "493": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "494": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "495": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "496": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "497": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "498": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "499": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "500": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "501": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "502": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "503": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "504": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "505": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "506": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "507": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "508": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "509": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "510": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "511": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "512": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "513": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.plain" - }, - "514": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "515": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "516": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "517": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "518": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.link" - }, - "519": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "520": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "521": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "522": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "523": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "524": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "525": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "526": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "527": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "" - }, - "528": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens" - }, - "529": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.root" - }, - "530": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "531": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.background" - }, - "532": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "533": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.color" - }, - "534": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "535": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.body" - }, - "536": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "537": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.padding" - }, - "538": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.gap" - }, - "539": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.caption" - }, - "540": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "541": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.gap" - }, - "542": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.title" - }, - "543": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "544": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "545": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "546": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.subtitle" - }, - "547": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "548": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.color" - }, - "549": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "550": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "551": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "552": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "553": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "" - }, - "554": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens" - }, - "555": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.root" - }, - "556": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "557": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "558": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.content" - }, - "559": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "560": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.gap" - }, - "561": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.indicatorList" - }, - "562": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "563": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "564": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.gap" - }, - "565": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.indicator" - }, - "566": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "567": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.width" - }, - "568": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.height" - }, - "569": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "570": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "571": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "572": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.width" - }, - "573": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.style" - }, - "574": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.color" - }, - "575": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.offset" - }, - "576": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "577": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.background" - }, - "578": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "579": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "580": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "581": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "582": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "583": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "584": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "" - }, - "585": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens" - }, - "586": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.root" - }, - "587": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "588": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "589": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "590": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "591": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "592": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "593": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "594": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "595": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "596": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "597": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "598": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "599": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "600": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "601": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "602": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "603": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "604": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "605": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "606": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "607": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "608": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "609": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "610": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "611": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.dropdown" - }, - "612": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "613": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "614": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "615": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.overlay" - }, - "616": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "617": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "618": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "619": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "620": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "621": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "622": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.list" - }, - "623": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "624": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "625": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "626": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.option" - }, - "627": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "628": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "629": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "630": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "631": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "632": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "633": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "634": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "635": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "636": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "637": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.icon" - }, - "638": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "639": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "640": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "641": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.size" - }, - "642": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "643": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "644": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "645": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "646": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "" - }, - "647": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens" - }, - "648": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens.root" - }, - "649": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "650": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "651": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "652": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.height" - }, - "653": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "654": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "655": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "656": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "657": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "658": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "659": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "660": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "661": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "662": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "663": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedFocusBorderColor" - }, - "664": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedDisabledBorderColor" - }, - "665": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "666": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "667": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "668": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "669": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "670": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.style" - }, - "671": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "672": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.offset" - }, - "673": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "674": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "675": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens.icon" - }, - "676": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "677": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.size" - }, - "678": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "679": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "680": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverColor" - }, - "681": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "682": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "683": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "684": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "685": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "686": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "" - }, - "687": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens" - }, - "688": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.root" - }, - "689": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "690": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "691": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "692": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "693": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.gap" - }, - "694": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "695": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.background" - }, - "696": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "697": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.image" - }, - "698": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "699": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.width" - }, - "700": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.height" - }, - "701": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.icon" - }, - "702": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "703": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.size" - }, - "704": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "705": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.removeIcon" - }, - "706": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "707": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.size" - }, - "708": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "709": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "710": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.width" - }, - "711": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.style" - }, - "712": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "713": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.offset" - }, - "714": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "715": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "716": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "717": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "718": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "719": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "720": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "" - }, - "721": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens" - }, - "722": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.root" - }, - "723": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "724": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "725": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.preview" - }, - "726": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "727": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "728": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.height" - }, - "729": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "730": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "731": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "732": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "733": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "734": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "735": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "736": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "737": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.panel" - }, - "738": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "739": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "740": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "741": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "742": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "743": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.handle" - }, - "744": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "745": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "746": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "747": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "748": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "749": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "750": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "" - }, - "751": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens" - }, - "752": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens.icon" - }, - "753": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type" - }, - "754": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.size" - }, - "755": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "756": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens.content" - }, - "757": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type" - }, - "758": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "759": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "760": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "761": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "762": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "763": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "" - }, - "764": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens" - }, - "765": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.root" - }, - "766": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "767": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.background" - }, - "768": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "769": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.color" - }, - "770": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "771": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "772": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "773": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.arrowOffset" - }, - "774": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.content" - }, - "775": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "776": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.padding" - }, - "777": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "778": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.icon" - }, - "779": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "780": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.size" - }, - "781": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.color" - }, - "782": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.footer" - }, - "783": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "784": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "785": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.padding" - }, - "786": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "787": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "790": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "" - }, - "791": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens" - }, - "792": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.root" - }, - "793": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "794": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "795": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "796": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "797": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "798": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "799": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "800": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.list" - }, - "801": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "802": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "803": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "804": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.item" - }, - "805": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "806": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "807": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "808": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "809": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "810": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "811": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "812": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "813": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "814": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "815": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "816": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "817": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "818": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "819": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.submenuIcon" - }, - "820": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "821": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "822": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "823": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "824": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "825": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.separator" - }, - "826": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "827": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "828": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "829": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "830": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "831": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "832": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "" - }, - "833": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens" - }, - "834": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.root" - }, - "835": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "836": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "837": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "838": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.header" - }, - "839": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "840": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "841": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "842": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "843": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "844": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "845": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.headerCell" - }, - "846": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "847": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "848": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "849": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "850": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "851": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "852": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "853": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "854": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "855": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "856": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "857": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "858": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "859": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "860": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "861": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "862": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "863": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnTitle" - }, - "864": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "865": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "866": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.row" - }, - "867": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "868": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "869": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "870": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "871": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "872": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "873": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "874": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "875": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "876": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "877": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "878": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "879": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "880": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "881": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.stripedBackground" - }, - "882": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.bodyCell" - }, - "883": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "884": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "885": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "886": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBorderColor" - }, - "887": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.footerCell" - }, - "888": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "889": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "890": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "891": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "892": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "893": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnFooter" - }, - "894": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "895": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "896": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.footer" - }, - "897": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "898": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "899": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "900": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "901": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "902": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "903": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.dropPointColor" - }, - "904": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "905": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.0" - }, - "906": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.1" - }, - "907": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.2" - }, - "908": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.3" - }, - "909": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.4" - }, - "910": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.5" - }, - "911": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.6" - }, - "912": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.7" - }, - "913": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.8" - }, - "914": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.9" - }, - "915": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.10" - }, - "916": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.11" - }, - "917": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.12" - }, - "918": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.13" - }, - "919": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.14" - }, - "920": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnResizerWidth" - }, - "921": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "922": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.0" - }, - "923": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.1" - }, - "924": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.2" - }, - "925": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.3" - }, - "926": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.4" - }, - "927": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.5" - }, - "928": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.resizeIndicator" - }, - "929": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "930": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "931": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "932": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.sortIcon" - }, - "933": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "934": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "935": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "936": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.loadingIcon" - }, - "937": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "938": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.size" - }, - "939": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.rowToggleButton" - }, - "940": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "941": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "942": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" - }, - "943": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "944": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "945": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" - }, - "946": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.size" - }, - "947": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "948": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "949": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "950": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "951": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "952": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "953": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "954": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "955": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.filter" - }, - "956": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "957": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.inlineGap" - }, - "958": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.overlaySelect" - }, - "959": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "960": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "961": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "962": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "963": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "964": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "965": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.overlayPopover" - }, - "966": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "967": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "968": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "969": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "970": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "971": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "972": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "973": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "974": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.rule" - }, - "975": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "976": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "977": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.constraintList" - }, - "978": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "979": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "980": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "981": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.constraint" - }, - "982": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "983": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "984": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "985": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "986": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "987": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "988": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "989": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "990": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.separator" - }, - "991": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "992": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "993": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "994": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "995": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.paginatorTop" - }, - "996": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "997": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "998": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "999": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.paginatorBottom" - }, - "1000": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "1001": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1002": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1003": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1004": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1005": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1006": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1007": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "" - }, - "1008": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens" - }, - "1009": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.root" - }, - "1010": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1011": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1012": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1013": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1014": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1015": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.header" - }, - "1016": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1017": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1018": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1019": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1020": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1021": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1022": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1023": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.content" - }, - "1024": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1025": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1026": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1027": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1028": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1029": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1030": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1031": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.footer" - }, - "1032": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1033": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1034": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1035": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1036": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1037": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1038": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1039": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.paginatorTop" - }, - "1040": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1041": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1042": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1043": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.paginatorBottom" - }, - "1044": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1045": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1046": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1047": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1048": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1049": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1050": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1051": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "" - }, - "1052": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens" - }, - "1053": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.root" - }, - "1054": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1055": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1056": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.panel" - }, - "1057": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1058": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1059": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1060": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1061": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1062": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1063": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1064": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.header" - }, - "1065": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1066": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1067": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1068": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1069": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1070": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1071": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1072": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.title" - }, - "1073": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1074": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1075": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1076": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.dropdown" - }, - "1077": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1078": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1079": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1080": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1081": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "1082": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1083": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1084": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1085": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1086": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "1087": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1088": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1089": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1090": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1091": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1092": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1093": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1094": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1095": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1096": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.inputIcon" - }, - "1097": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1098": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1099": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.selectMonth" - }, - "1100": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1101": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1102": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1103": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1104": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1105": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1106": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.selectYear" - }, - "1107": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1108": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1109": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1110": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1111": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1112": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1113": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.group" - }, - "1114": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1115": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1116": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1117": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.dayView" - }, - "1118": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1119": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1120": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.weekDay" - }, - "1121": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1122": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1123": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1124": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1125": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.date" - }, - "1126": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1127": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1128": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "1129": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.rangeSelectedBackground" - }, - "1130": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1131": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1132": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "1133": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.rangeSelectedColor" - }, - "1134": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1135": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.height" - }, - "1136": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1137": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1138": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1139": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1140": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1141": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "1142": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1143": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1144": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1145": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.monthView" - }, - "1146": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1147": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1148": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.month" - }, - "1149": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1150": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1151": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.yearView" - }, - "1152": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1153": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1154": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.year" - }, - "1155": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1156": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1157": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.buttonbar" - }, - "1158": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1159": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1160": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1161": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.timePicker" - }, - "1162": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1163": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1164": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1165": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1166": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.buttonGap" - }, - "1167": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.today" - }, - "1168": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1169": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1170": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1171": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1172": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1173": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1174": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1175": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "" - }, - "1176": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens" - }, - "1177": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.root" - }, - "1178": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1179": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.background" - }, - "1180": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1181": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "1182": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1183": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1184": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.header" - }, - "1185": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1186": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1187": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1188": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.title" - }, - "1189": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1190": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1191": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1192": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.content" - }, - "1193": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1194": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1195": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.footer" - }, - "1196": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1197": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1198": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1199": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1200": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1201": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1202": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1203": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "" - }, - "1204": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens" - }, - "1205": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.root" - }, - "1206": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1207": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1208": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.content" - }, - "1209": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1210": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.background" - }, - "1211": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.color" - }, - "1212": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.horizontal" - }, - "1213": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1214": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1215": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1216": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.content" - }, - "1217": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1218": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1219": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.vertical" - }, - "1220": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1221": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1222": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1223": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.content" - }, - "1224": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1225": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1226": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1227": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1228": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1229": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1230": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "" - }, - "1231": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens" - }, - "1232": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens.root" - }, - "1233": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1234": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.background" - }, - "1235": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1236": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1237": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1238": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens.item" - }, - "1239": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1240": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1241": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1242": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.size" - }, - "1243": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1244": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1245": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.width" - }, - "1246": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.style" - }, - "1247": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.color" - }, - "1248": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1249": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1250": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1251": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1252": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1253": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1254": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "" - }, - "1255": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens" - }, - "1256": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.root" - }, - "1257": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1258": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.background" - }, - "1259": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1260": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.color" - }, - "1261": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1262": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1263": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.header" - }, - "1264": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1265": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1266": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.title" - }, - "1267": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1268": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1269": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1270": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.content" - }, - "1271": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1272": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1273": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1274": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1275": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1276": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1277": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "" - }, - "1278": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens" - }, - "1279": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.root" - }, - "1280": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1281": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.background" - }, - "1282": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1283": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "1284": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1285": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1286": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.header" - }, - "1287": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1288": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1289": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1290": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.title" - }, - "1291": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1292": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1293": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1294": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.content" - }, - "1295": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1296": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1297": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.footer" - }, - "1298": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1299": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1300": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1301": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1302": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1303": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1304": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1305": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "" - }, - "1306": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens" - }, - "1307": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.toolbar" - }, - "1308": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1309": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1310": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1311": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1312": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.toolbarItem" - }, - "1313": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1314": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1315": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1316": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1317": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.overlay" - }, - "1318": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1319": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1320": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1321": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1322": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1323": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1324": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1325": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.overlayOption" - }, - "1326": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1327": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1328": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1329": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1330": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1331": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1332": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.content" - }, - "1333": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1334": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1335": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1336": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1337": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1338": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1339": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1340": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1341": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1342": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "" - }, - "1343": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens" - }, - "1344": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.root" - }, - "1345": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1346": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.background" - }, - "1347": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1348": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1349": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1350": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1351": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1352": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.legend" - }, - "1353": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1354": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.background" - }, - "1355": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1356": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1357": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1358": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1359": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1360": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1361": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1362": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1363": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1364": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1365": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1366": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.width" - }, - "1367": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.style" - }, - "1368": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1369": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1370": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1371": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.toggleIcon" - }, - "1372": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1373": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1374": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1375": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.content" - }, - "1376": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1377": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1378": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1379": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1380": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1381": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1382": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "" - }, - "1383": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens" - }, - "1384": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.root" - }, - "1385": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1386": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.background" - }, - "1387": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1388": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.color" - }, - "1389": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1390": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1391": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.header" - }, - "1392": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1393": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.background" - }, - "1394": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.color" - }, - "1395": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1396": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1397": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1398": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1399": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.content" - }, - "1400": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1401": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.highlightBorderColor" - }, - "1402": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1403": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.file" - }, - "1404": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1405": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1406": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1407": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1408": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.info" - }, - "1409": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1410": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1411": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.progressbar" - }, - "1412": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1413": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.height" - }, - "1414": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.basic" - }, - "1415": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1416": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1417": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1418": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1419": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1420": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1421": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "" - }, - "1422": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "FloatLabelDesignTokens" - }, - "1423": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "FloatLabelDesignTokens.root" - }, - "1424": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type" - }, - "1425": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.color" - }, - "1426": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1427": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.invalidColor" - }, - "1428": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1429": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1430": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1431": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1432": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1433": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "" - }, - "1434": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens" - }, - "1435": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.root" - }, - "1436": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1437": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1438": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1439": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1440": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1441": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.navButton" - }, - "1442": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1443": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1444": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1445": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1446": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1447": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1448": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1449": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.prev" - }, - "1450": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1451": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1452": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.next" - }, - "1453": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1454": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1455": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1456": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1457": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1458": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1459": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1460": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1461": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1462": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.navIcon" - }, - "1463": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1464": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1465": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailsContent" - }, - "1466": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1467": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1468": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1469": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailNavButton" - }, - "1470": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1471": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1472": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1473": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1474": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1475": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1476": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1477": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1478": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1479": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1480": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1481": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1482": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1483": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1484": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailNavButtonIcon" - }, - "1485": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1486": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1487": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.caption" - }, - "1488": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1489": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1490": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1491": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1492": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.indicatorList" - }, - "1493": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1494": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1495": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1496": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.indicatorButton" - }, - "1497": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1498": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1499": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.height" - }, - "1500": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1501": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1502": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1503": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1504": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1505": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1506": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1507": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1508": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1509": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1510": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1511": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.insetIndicatorList" - }, - "1512": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1513": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1514": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.insetIndicatorButton" - }, - "1515": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1516": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1517": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1518": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1519": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.mask" - }, - "1520": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1521": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1522": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1523": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.closeButton" - }, - "1524": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1525": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1526": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1527": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1528": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1529": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1530": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1531": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1532": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1533": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1534": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1535": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1536": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1537": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1538": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1539": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.closeButtonIcon" - }, - "1540": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1541": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1542": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1543": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1544": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1545": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1546": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "" - }, - "1547": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "IconFieldDesignTokens" - }, - "1548": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "IconFieldDesignTokens.icon" - }, - "1549": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "__type" - }, - "1550": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "__type.color" - }, - "1551": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1552": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1553": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1554": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1555": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "" - }, - "1556": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens" - }, - "1557": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.root" - }, - "1558": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1559": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1560": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.preview" - }, - "1561": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1562": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.icon" - }, - "1563": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1564": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.size" - }, - "1565": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.mask" - }, - "1566": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1567": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.background" - }, - "1568": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1569": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.toolbar" - }, - "1570": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1571": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.position" - }, - "1572": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1573": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.left" - }, - "1574": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.right" - }, - "1575": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.top" - }, - "1576": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "1577": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.blur" - }, - "1578": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.background" - }, - "1579": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1580": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1581": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1582": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1583": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1584": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.action" - }, - "1585": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1586": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1587": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1588": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1589": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.size" - }, - "1590": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.iconSize" - }, - "1591": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1592": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1593": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1594": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.width" - }, - "1595": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.style" - }, - "1596": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1597": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1598": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1599": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1600": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1601": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1602": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1603": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "" - }, - "1604": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken" - }, - "1605": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1606": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1607": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1608": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1609": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.T" - }, - "1610": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken" - }, - "1611": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.50" - }, - "1612": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.100" - }, - "1613": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.200" - }, - "1614": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.300" - }, - "1615": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.400" - }, - "1616": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.500" - }, - "1617": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.600" - }, - "1618": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.700" - }, - "1619": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.800" - }, - "1620": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.900" - }, - "1621": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.950" - }, - "1622": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens" - }, - "1623": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.borderRadius" - }, - "1624": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1625": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.none" - }, - "1626": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.xs" - }, - "1627": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.sm" - }, - "1628": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.md" - }, - "1629": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.lg" - }, - "1630": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.xl" - }, - "1631": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.emerald" - }, - "1632": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.green" - }, - "1633": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.lime" - }, - "1634": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.red" - }, - "1635": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.orange" - }, - "1636": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.amber" - }, - "1637": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.yellow" - }, - "1638": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.teal" - }, - "1639": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.cyan" - }, - "1640": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.sky" - }, - "1641": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.blue" - }, - "1642": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.indigo" - }, - "1643": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.violet" - }, - "1644": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.purple" - }, - "1645": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.fuchsia" - }, - "1646": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.pink" - }, - "1647": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.rose" - }, - "1648": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.slate" - }, - "1649": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.gray" - }, - "1650": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.zinc" - }, - "1651": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.neutral" - }, - "1652": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.stone" - }, - "1653": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.__index" - }, - "1655": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens" - }, - "1656": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.transitionDuration" - }, - "1657": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.focusRing" - }, - "1658": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1659": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.width" - }, - "1660": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.style" - }, - "1661": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.color" - }, - "1662": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1663": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1664": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.iconSize" - }, - "1665": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.anchorGutter" - }, - "1666": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.primary" - }, - "1667": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.formField" - }, - "1668": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1669": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1670": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1671": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1672": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1673": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1674": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.width" - }, - "1675": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.style" - }, - "1676": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.color" - }, - "1677": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1678": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1679": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.__index" - }, - "1681": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "" - }, - "1682": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens" - }, - "1683": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.root" - }, - "1684": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1685": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1686": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1687": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1688": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.text" - }, - "1689": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1690": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1691": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.icon" - }, - "1692": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1693": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.size" - }, - "1694": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.info" - }, - "1695": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1696": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1697": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1698": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1699": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1700": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.success" - }, - "1701": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1702": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1703": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1704": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1705": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1706": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.warn" - }, - "1707": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1708": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1709": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1710": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1711": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1712": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.error" - }, - "1713": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1714": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1715": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1716": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1717": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1718": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.secondary" - }, - "1719": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1720": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1721": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1722": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1723": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1724": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.contrast" - }, - "1725": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1726": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1727": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1728": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1729": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1730": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1731": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1732": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1733": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1734": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "" - }, - "1735": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens" - }, - "1736": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens.root" - }, - "1737": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1738": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1739": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1740": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1741": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1742": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.width" - }, - "1743": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.style" - }, - "1744": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.color" - }, - "1745": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1746": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1747": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1748": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens.display" - }, - "1749": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1750": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1751": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1752": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1753": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1754": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1755": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1756": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "" - }, - "1757": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens" - }, - "1758": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens.root" - }, - "1759": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1760": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.background" - }, - "1761": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1762": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "1763": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "1764": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1765": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1766": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1767": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1768": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1769": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1770": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "1771": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1772": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1773": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1774": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1775": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1776": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1777": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.width" - }, - "1778": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.style" - }, - "1779": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1780": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1781": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1782": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1783": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens.chip" - }, - "1784": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1785": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1786": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1787": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1790": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1791": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1792": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "" - }, - "1793": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "InputGroupDesignTokens" - }, - "1794": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "InputGroupDesignTokens.addon" - }, - "1795": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type" - }, - "1796": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.background" - }, - "1797": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1798": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.color" - }, - "1799": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1800": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1801": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1802": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1803": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1804": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "" - }, - "1805": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens" - }, - "1806": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens.root" - }, - "1807": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type" - }, - "1808": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1809": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens.button" - }, - "1810": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type" - }, - "1811": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.width" - }, - "1812": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1813": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.verticalPadding" - }, - "1814": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.background" - }, - "1815": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1816": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1817": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1818": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1819": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "1820": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.color" - }, - "1821": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1822": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1823": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1824": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1825": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1826": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1827": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "" - }, - "1828": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "InputTextDesignTokens" - }, - "1829": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "InputTextDesignTokens.root" - }, - "1830": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1831": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.background" - }, - "1832": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1833": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "1834": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "1835": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1836": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1837": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1838": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1839": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.color" - }, - "1840": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1841": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "1842": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1843": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1844": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1845": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1846": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1847": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1848": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.width" - }, - "1849": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.style" - }, - "1850": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.color" - }, - "1851": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1852": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1853": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1854": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.sm" - }, - "1855": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1856": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1857": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1858": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1859": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.lg" - }, - "1860": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1861": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1862": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1863": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1864": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1865": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1866": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1867": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1868": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "" - }, - "1869": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens" - }, - "1870": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.root" - }, - "1871": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1872": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1873": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1874": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1875": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.width" - }, - "1876": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.style" - }, - "1877": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.color" - }, - "1878": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1879": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1880": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.value" - }, - "1881": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1882": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.background" - }, - "1883": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.range" - }, - "1884": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1885": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.background" - }, - "1886": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.text" - }, - "1887": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1888": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.color" - }, - "1889": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1890": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1891": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1892": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1893": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "" - }, - "1894": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens" - }, - "1895": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.root" - }, - "1896": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1897": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "1898": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1899": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1900": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1901": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1902": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1903": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1904": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1905": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1906": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1907": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1908": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1909": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "1910": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.style" - }, - "1911": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1912": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1913": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1914": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1915": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.list" - }, - "1916": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1917": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1918": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1919": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.header" - }, - "1920": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1921": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1922": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.option" - }, - "1923": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1924": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1925": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "1926": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "1927": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1928": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1929": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "1930": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "1931": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1932": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1933": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.stripedBackground" - }, - "1934": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.optionGroup" - }, - "1935": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1936": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "1937": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1938": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1939": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1940": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.checkmark" - }, - "1941": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1942": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1943": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gutterStart" - }, - "1944": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gutterEnd" - }, - "1945": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.emptyMessage" - }, - "1946": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1947": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1948": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1949": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1950": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1951": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1952": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "" - }, - "1953": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens" - }, - "1954": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.root" - }, - "1955": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1956": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "1957": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1958": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1959": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1960": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1961": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.verticalOrientation" - }, - "1962": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1963": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1964": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1965": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.horizontalOrientation" - }, - "1966": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1967": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1968": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1969": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.baseItem" - }, - "1970": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1971": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1972": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1973": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.item" - }, - "1974": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1975": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1976": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1977": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1978": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1979": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1980": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1981": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1982": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1983": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "1984": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1985": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1986": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1987": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1988": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.overlay" - }, - "1989": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1990": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1991": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "1992": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1993": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1994": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1995": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1996": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1997": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenu" - }, - "1998": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1999": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2000": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2001": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenuLabel" - }, - "2002": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2003": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2004": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2005": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2006": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2007": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenuIcon" - }, - "2008": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2009": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "2010": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2011": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2012": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2013": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.separator" - }, - "2014": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2015": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2016": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.mobileButton" - }, - "2017": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2018": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2019": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "2020": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2021": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2022": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2023": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2024": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2025": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.width" - }, - "2026": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.style" - }, - "2027": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2028": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2029": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2030": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2031": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2032": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2033": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2034": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "" - }, - "2035": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens" - }, - "2036": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.root" - }, - "2037": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2038": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2039": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2040": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2041": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2042": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2043": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2044": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.list" - }, - "2045": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2046": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2047": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2048": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.item" - }, - "2049": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2050": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2051": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2052": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2053": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2054": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2055": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2056": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2057": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2058": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2059": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2060": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.submenuLabel" - }, - "2061": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2062": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2063": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2064": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2065": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2066": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.separator" - }, - "2067": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2068": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2069": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2070": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2071": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2072": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2073": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "" - }, - "2074": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens" - }, - "2075": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.root" - }, - "2076": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2077": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2078": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2079": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2080": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2081": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2082": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2083": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2084": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.baseItem" - }, - "2085": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2086": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2087": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2088": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.item" - }, - "2089": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2090": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2091": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2092": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2093": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2094": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2095": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2096": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2097": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2098": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2099": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2100": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2101": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2102": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2103": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.submenu" - }, - "2104": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2105": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2106": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2107": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2108": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2109": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2110": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2111": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.mobileIndent" - }, - "2112": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.submenuIcon" - }, - "2113": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2114": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.size" - }, - "2115": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2116": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2117": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2118": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.separator" - }, - "2119": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2120": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2121": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.mobileButton" - }, - "2122": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2123": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2124": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.size" - }, - "2125": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2126": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2127": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2128": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2129": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2130": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.width" - }, - "2131": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.style" - }, - "2132": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2133": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2134": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2135": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2136": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2137": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2138": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2139": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "" - }, - "2140": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens" - }, - "2141": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.root" - }, - "2142": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2143": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2144": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2145": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2146": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.content" - }, - "2147": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2148": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2149": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2150": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.text" - }, - "2151": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2152": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2153": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2154": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.icon" - }, - "2155": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2156": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.size" - }, - "2157": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.closeButton" - }, - "2158": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2159": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.width" - }, - "2160": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.height" - }, - "2161": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2162": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2163": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2164": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.width" - }, - "2165": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.style" - }, - "2166": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2167": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.closeIcon" - }, - "2168": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2169": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.size" - }, - "2170": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.info" - }, - "2171": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2172": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2173": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2174": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2175": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2176": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2177": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2178": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2179": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2180": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2181": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2182": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2183": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.success" - }, - "2184": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2185": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2186": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2187": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2188": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2189": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2190": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2191": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2192": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2193": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2194": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2195": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2196": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.warn" - }, - "2197": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2198": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2199": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2200": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2201": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2202": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2203": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2204": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2205": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2206": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2207": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2208": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2209": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.error" - }, - "2210": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2211": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2212": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2213": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2214": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2215": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2216": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2217": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2218": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2219": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2220": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2221": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2222": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.secondary" - }, - "2223": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2224": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2225": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2226": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2227": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2228": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2229": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2230": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2231": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2232": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2233": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2234": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2235": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.contrast" - }, - "2236": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2237": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2238": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2239": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2240": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2241": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2242": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2243": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2244": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2245": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2246": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2247": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2248": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2249": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2250": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2251": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2252": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "" - }, - "2253": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens" - }, - "2254": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.root" - }, - "2255": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2256": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2257": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2258": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.meters" - }, - "2259": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2260": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.background" - }, - "2261": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2262": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.label" - }, - "2263": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2264": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2265": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelMarker" - }, - "2266": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2267": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2268": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelIcon" - }, - "2269": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2270": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2271": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelList" - }, - "2272": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2273": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.verticalGap" - }, - "2274": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.horizontalGap" - }, - "2275": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2276": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2277": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2278": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2279": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "" - }, - "2280": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens" - }, - "2281": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.root" - }, - "2282": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2283": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2284": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2285": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2286": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "2287": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2288": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2289": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2290": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2291": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2292": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2293": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "2294": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2295": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "2296": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "2297": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2298": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2299": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2300": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "2301": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "2302": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2303": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2304": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2305": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2306": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.dropdown" - }, - "2307": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2308": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "2309": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2310": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.overlay" - }, - "2311": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2312": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2313": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2314": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2315": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2316": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2317": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.list" - }, - "2318": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2319": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2320": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2321": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.header" - }, - "2322": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2323": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2324": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.option" - }, - "2325": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2326": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2327": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2328": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "2329": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2330": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2331": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2332": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "2333": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2334": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2335": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2336": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.optionGroup" - }, - "2337": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2338": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2339": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2340": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2341": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2342": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.chip" - }, - "2343": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2344": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2345": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.emptyMessage" - }, - "2346": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2347": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2348": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2349": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2350": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2351": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2352": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "" - }, - "2353": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens" - }, - "2354": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens.root" - }, - "2355": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type" - }, - "2356": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2357": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens.controls" - }, - "2358": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type" - }, - "2359": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2360": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2361": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2362": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2363": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2364": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "" - }, - "2365": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens" - }, - "2366": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.root" - }, - "2367": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2368": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "2369": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2370": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.node" - }, - "2371": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2372": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.background" - }, - "2373": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2374": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2375": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2376": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2377": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2378": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2379": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2380": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.toggleablePadding" - }, - "2381": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2382": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.nodeToggleButton" - }, - "2383": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2384": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.background" - }, - "2385": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2386": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2387": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2388": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2389": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.size" - }, - "2390": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2391": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2392": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2393": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.width" - }, - "2394": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.style" - }, - "2395": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2396": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2397": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2398": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.connector" - }, - "2399": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2400": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2401": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2402": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.height" - }, - "2403": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2404": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2405": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2406": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2407": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "" - }, - "2408": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "OverlayBadgeDesignTokens" - }, - "2409": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "OverlayBadgeDesignTokens.root" - }, - "2410": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type" - }, - "2411": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.outline" - }, - "2412": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type" - }, - "2413": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.width" - }, - "2414": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.color" - }, - "2415": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2416": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2417": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2418": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2419": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "" - }, - "2420": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens" - }, - "2421": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.root" - }, - "2422": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2423": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2424": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2425": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2426": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.background" - }, - "2427": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2428": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2429": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.navButton" - }, - "2430": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2431": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.background" - }, - "2432": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2433": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2434": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2435": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2436": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2437": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.width" - }, - "2438": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.height" - }, - "2439": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2440": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2441": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2442": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.width" - }, - "2443": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.style" - }, - "2444": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2445": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2446": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2447": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.currentPageReport" - }, - "2448": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2449": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2450": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.jumpToPageInput" - }, - "2451": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2452": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.maxWidth" - }, - "2453": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2454": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2455": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2456": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2457": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "" - }, - "2458": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens" - }, - "2459": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.root" - }, - "2460": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2461": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2462": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2463": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2464": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2465": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.header" - }, - "2466": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2467": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2468": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2469": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2470": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2471": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2472": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2473": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.toggleableHeader" - }, - "2474": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2475": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2476": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.title" - }, - "2477": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2478": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2479": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.content" - }, - "2480": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2481": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2482": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.footer" - }, - "2483": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2484": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2485": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2486": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2487": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2488": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2489": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "" - }, - "2490": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens" - }, - "2491": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.root" - }, - "2492": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2493": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2494": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2495": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.panel" - }, - "2496": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2497": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2498": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2499": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2500": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2501": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2502": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2503": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.first" - }, - "2504": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2505": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2506": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.topBorderRadius" - }, - "2507": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.last" - }, - "2508": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2509": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2510": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.bottomBorderRadius" - }, - "2511": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.item" - }, - "2512": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2513": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2514": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2515": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2516": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2517": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2518": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2519": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2520": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2521": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2522": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2523": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.submenu" - }, - "2524": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2525": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.indent" - }, - "2526": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.submenuIcon" - }, - "2527": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2528": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2529": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2530": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2531": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2532": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2533": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2534": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "" - }, - "2535": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens" - }, - "2536": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.meter" - }, - "2537": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2538": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.background" - }, - "2539": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2540": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.height" - }, - "2541": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.icon" - }, - "2542": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2543": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.color" - }, - "2544": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.overlay" - }, - "2545": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2546": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.background" - }, - "2547": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2548": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2549": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.color" - }, - "2550": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2551": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2552": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.content" - }, - "2553": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2554": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2555": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.strength" - }, - "2556": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2557": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.weakBackground" - }, - "2558": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.mediumBackground" - }, - "2559": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.strongBackground" - }, - "2560": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2561": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2562": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2563": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2564": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "" - }, - "2565": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens" - }, - "2566": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens.root" - }, - "2567": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type" - }, - "2568": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2569": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens.controls" - }, - "2570": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type" - }, - "2571": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2572": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2573": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2574": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2575": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2576": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "" - }, - "2577": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens" - }, - "2578": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens.root" - }, - "2579": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type" - }, - "2580": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.background" - }, - "2581": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2582": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.color" - }, - "2583": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2584": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2585": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "2586": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.arrowOffset" - }, - "2587": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens.content" - }, - "2588": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type" - }, - "2589": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2590": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2591": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2592": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2593": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2594": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "" - }, - "2595": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens" - }, - "2596": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.root" - }, - "2597": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2598": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2599": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2600": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.height" - }, - "2601": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.value" - }, - "2602": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2603": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2604": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.label" - }, - "2605": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2606": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2607": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2608": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2609": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2610": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2611": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2612": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2613": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "" - }, - "2614": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "ProgressSpinnerDesignTokens" - }, - "2615": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "ProgressSpinnerDesignTokens.root" - }, - "2616": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type" - }, - "2617": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.1" - }, - "2618": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.2" - }, - "2619": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.3" - }, - "2620": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.4" - }, - "2621": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2622": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2623": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2624": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2625": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "" - }, - "2626": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens" - }, - "2627": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens.root" - }, - "2628": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2629": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "2630": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.height" - }, - "2631": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.background" - }, - "2632": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "2633": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "2634": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2635": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2636": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2637": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2638": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2639": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "2640": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "2641": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedFocusBorderColor" - }, - "2642": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedDisabledBorderColor" - }, - "2643": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2644": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2645": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2646": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2647": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "2648": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.style" - }, - "2649": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "2650": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2651": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2652": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2653": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens.icon" - }, - "2654": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2655": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.size" - }, - "2656": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "2657": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverColor" - }, - "2658": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2659": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2660": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2661": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2662": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2663": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "" - }, - "2664": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens" - }, - "2665": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens.root" - }, - "2666": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type" - }, - "2667": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2668": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2669": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens.icon" - }, - "2670": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type" - }, - "2671": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.size" - }, - "2672": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.color" - }, - "2673": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2674": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2675": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2676": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2677": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2678": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2679": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "" - }, - "2680": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "RippleDesignTokens" - }, - "2681": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "RippleDesignTokens.root" - }, - "2682": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "__type" - }, - "2683": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "__type.background" - }, - "2684": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2685": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2686": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2687": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2688": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "" - }, - "2689": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens" - }, - "2690": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens.root" - }, - "2691": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2692": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2693": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens.bar" - }, - "2694": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2695": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.size" - }, - "2696": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2697": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2698": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2699": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.width" - }, - "2700": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.style" - }, - "2701": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2702": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2703": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2704": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2705": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2706": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2707": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2708": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2709": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "" - }, - "2710": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens" - }, - "2711": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.root" - }, - "2712": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2713": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2714": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2715": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2716": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "2717": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2718": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2719": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2720": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2721": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2722": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2723": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "2724": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2725": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "2726": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "2727": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2728": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2729": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2730": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.width" - }, - "2731": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.style" - }, - "2732": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2733": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2734": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2735": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2736": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.dropdown" - }, - "2737": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2738": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.width" - }, - "2739": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2740": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.overlay" - }, - "2741": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2742": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2743": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2744": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2745": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2746": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2747": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.list" - }, - "2748": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2749": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2750": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2751": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.header" - }, - "2752": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2753": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2754": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.option" - }, - "2755": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2756": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2757": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2758": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "2759": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2760": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2761": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2762": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "2763": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2764": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2765": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.optionGroup" - }, - "2766": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2767": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2768": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2769": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2770": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2771": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.clearIcon" - }, - "2772": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2773": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2774": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.checkmark" - }, - "2775": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2776": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2777": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gutterStart" - }, - "2778": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gutterEnd" - }, - "2779": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.emptyMessage" - }, - "2780": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2781": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2782": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2783": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2784": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2785": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2786": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "" - }, - "2787": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "SelectButtonDesignTokens" - }, - "2788": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "SelectButtonDesignTokens.root" - }, - "2789": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type" - }, - "2790": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2791": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2792": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2793": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2794": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2795": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2796": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "" - }, - "2797": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "SkeletonDesignTokens" - }, - "2798": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "SkeletonDesignTokens.root" - }, - "2799": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type" - }, - "2800": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2801": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.background" - }, - "2802": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.animationBackground" - }, - "2803": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2804": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2805": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2806": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2807": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "" - }, - "2808": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens" - }, - "2809": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.root" - }, - "2810": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2811": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2812": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.track" - }, - "2813": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2814": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2815": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2816": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.size" - }, - "2817": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.range" - }, - "2818": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2819": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2820": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.handle" - }, - "2821": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2822": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2823": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.height" - }, - "2824": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2825": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2826": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2827": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.content" - }, - "2828": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2829": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2830": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2831": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2832": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.height" - }, - "2833": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2834": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2835": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2836": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2837": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.style" - }, - "2838": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.color" - }, - "2839": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2840": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2841": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.contentBackground" - }, - "2842": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2843": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2844": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2845": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2846": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "" - }, - "2847": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "SpeedDialDesignTokens" - }, - "2848": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "SpeedDialDesignTokens.root" - }, - "2849": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type" - }, - "2850": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2851": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2852": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2853": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2854": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2855": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2856": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "" - }, - "2857": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "SplitButtonDesignTokens" - }, - "2858": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "SplitButtonDesignTokens.root" - }, - "2859": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type" - }, - "2860": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2861": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "2862": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.raisedShadow" - }, - "2863": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2864": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2865": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2866": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2867": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "" - }, - "2868": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens" - }, - "2869": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.root" - }, - "2870": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2871": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2872": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2873": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.color" - }, - "2874": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2875": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.gutter" - }, - "2876": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2877": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2878": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.handle" - }, - "2879": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2880": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.size" - }, - "2881": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2882": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2883": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2884": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2885": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.width" - }, - "2886": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.style" - }, - "2887": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.color" - }, - "2888": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2889": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2890": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2891": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2892": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2893": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2894": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "" - }, - "2895": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens" - }, - "2896": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.root" - }, - "2897": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2898": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2899": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.separator" - }, - "2900": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2901": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2902": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2903": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.margin" - }, - "2904": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.size" - }, - "2905": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.step" - }, - "2906": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2907": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2908": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2909": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepHeader" - }, - "2910": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2911": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2912": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2913": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2914": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2915": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.width" - }, - "2916": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.style" - }, - "2917": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2918": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2919": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2920": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2921": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepTitle" - }, - "2922": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2923": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2924": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2925": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2926": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepNumber" - }, - "2927": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2928": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2929": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2930": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2931": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "2932": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2933": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2934": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.size" - }, - "2935": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2936": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2937": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2938": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2939": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.steppanels" - }, - "2940": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2941": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2942": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.steppanel" - }, - "2943": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2944": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2945": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2946": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2947": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2948": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2949": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2950": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2951": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "" - }, - "2952": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens" - }, - "2953": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.root" - }, - "2954": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2955": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2956": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.separator" - }, - "2957": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2958": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.background" - }, - "2959": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemLink" - }, - "2960": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2961": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2962": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2963": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2964": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.width" - }, - "2965": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.style" - }, - "2966": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2967": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2968": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2969": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2970": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemLabel" - }, - "2971": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2972": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2973": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2974": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2975": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemNumber" - }, - "2976": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2977": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.background" - }, - "2978": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2979": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2980": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "2981": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2982": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2983": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.size" - }, - "2984": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2985": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2986": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2987": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2988": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2989": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2990": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2991": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2992": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "" - }, - "2993": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens" - }, - "2994": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.root" - }, - "2995": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2996": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2997": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.tablist" - }, - "2998": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2999": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3000": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3001": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3002": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.item" - }, - "3003": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3004": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3005": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3006": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3007": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3008": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3009": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3010": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3011": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3012": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3013": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3014": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3015": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3016": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3017": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3018": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3019": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3020": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.width" - }, - "3021": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.style" - }, - "3022": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3023": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3024": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3025": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.itemIcon" - }, - "3026": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3027": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3028": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3029": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3030": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.activeBar" - }, - "3031": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3032": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.height" - }, - "3033": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "3034": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3035": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3036": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3037": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3038": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3039": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "" - }, - "3040": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens" - }, - "3041": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.root" - }, - "3042": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3043": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3044": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tablist" - }, - "3045": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3046": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3047": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3048": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3049": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tab" - }, - "3050": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3051": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3052": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3053": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3054": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3055": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3056": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3057": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3058": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3059": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3060": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3061": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3062": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3063": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3064": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3065": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3066": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3067": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3068": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3069": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3070": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3071": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3072": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tabpanel" - }, - "3073": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3074": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3075": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3076": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3077": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3078": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3079": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3080": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3081": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3082": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3083": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3084": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.navButton" - }, - "3085": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3086": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3087": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3088": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3089": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3090": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3091": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3092": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3093": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3094": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3095": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3096": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3097": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3098": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.activeBar" - }, - "3099": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3100": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.height" - }, - "3101": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "3102": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3103": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3104": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3105": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3106": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3107": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "" - }, - "3108": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens" - }, - "3109": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.root" - }, - "3110": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3111": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3112": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tabList" - }, - "3113": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3114": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3115": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3116": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tab" - }, - "3117": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3118": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3119": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3120": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3121": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3122": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3123": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tabPanel" - }, - "3124": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3125": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3126": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3127": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.navButton" - }, - "3128": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3129": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3130": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3131": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3132": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3133": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3134": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3135": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3136": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3137": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "" - }, - "3138": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens" - }, - "3139": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.root" - }, - "3140": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3141": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3142": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3143": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3144": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3145": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3146": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "3147": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.icon" - }, - "3148": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3149": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.size" - }, - "3150": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.primary" - }, - "3151": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3152": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3153": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3154": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.secondary" - }, - "3155": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3156": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3157": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3158": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.success" - }, - "3159": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3160": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3161": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3162": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.info" - }, - "3163": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3164": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3165": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3166": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.warn" - }, - "3167": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3168": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3169": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3170": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.danger" - }, - "3171": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3172": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3173": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3174": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.contrast" - }, - "3175": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3176": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3177": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3178": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3179": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3180": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3181": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3182": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "" - }, - "3183": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens" - }, - "3184": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.root" - }, - "3185": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3186": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.background" - }, - "3187": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3188": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.color" - }, - "3189": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.height" - }, - "3190": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3191": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3192": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.prompt" - }, - "3193": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3194": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3195": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.commandResponse" - }, - "3196": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3197": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3198": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3199": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3200": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3201": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3202": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "" - }, - "3203": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "TextareaDesignTokens" - }, - "3204": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "TextareaDesignTokens.root" - }, - "3205": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type" - }, - "3206": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.background" - }, - "3207": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3208": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "3209": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "3210": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3211": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3212": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "3213": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3214": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.color" - }, - "3215": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3216": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "3217": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3218": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "3219": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "3220": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3221": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3222": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type" - }, - "3223": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.width" - }, - "3224": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.style" - }, - "3225": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.color" - }, - "3226": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3227": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3228": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3229": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3230": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3231": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3232": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3233": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "" - }, - "3234": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens" - }, - "3235": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.root" - }, - "3236": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3237": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3238": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3239": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3240": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3241": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3242": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3243": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.list" - }, - "3244": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3245": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3246": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3247": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.item" - }, - "3248": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3249": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "3250": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3251": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3252": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3253": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3254": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3255": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3256": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3257": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "3258": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3259": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3260": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3261": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3262": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.submenuLabel" - }, - "3263": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3264": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3265": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3266": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3267": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3268": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.submenuIcon" - }, - "3269": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3270": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "3271": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3272": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3273": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3274": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.separator" - }, - "3275": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3276": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3277": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3278": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3279": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3280": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3281": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "" - }, - "3282": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens" - }, - "3283": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.event" - }, - "3284": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3285": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.minHeight" - }, - "3286": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.horizontal" - }, - "3287": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3288": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.eventContent" - }, - "3289": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3290": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3291": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.vertical" - }, - "3292": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3293": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.eventContent" - }, - "3294": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3295": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3296": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.eventMarker" - }, - "3297": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3298": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3299": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3300": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3301": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.background" - }, - "3302": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3303": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.content" - }, - "3304": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3305": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3306": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3307": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.background" - }, - "3308": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.insetShadow" - }, - "3309": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.eventConnector" - }, - "3310": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3311": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.color" - }, - "3312": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3313": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3314": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3315": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3316": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3317": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "" - }, - "3318": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens" - }, - "3319": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.root" - }, - "3320": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3321": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3322": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3323": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3324": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3325": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.icon" - }, - "3326": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3327": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.size" - }, - "3328": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.content" - }, - "3329": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3330": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3331": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3332": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.text" - }, - "3333": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3334": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3335": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.summary" - }, - "3336": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3337": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3338": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3339": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.detail" - }, - "3340": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3341": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3342": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3343": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.closeButton" - }, - "3344": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3345": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3346": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.height" - }, - "3347": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3348": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3349": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3350": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3351": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.style" - }, - "3352": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3353": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.closeIcon" - }, - "3354": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3355": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.size" - }, - "3356": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.blur" - }, - "3357": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3358": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.0" - }, - "3359": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.1" - }, - "3360": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.2" - }, - "3361": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.3" - }, - "3362": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.4" - }, - "3363": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.info" - }, - "3364": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3365": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3366": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3367": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3368": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3369": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3370": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3371": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3372": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3373": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3374": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3375": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3376": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3377": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.success" - }, - "3378": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3379": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3380": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3381": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3382": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3383": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3384": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3385": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3386": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3387": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3388": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3389": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3390": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3391": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.warn" - }, - "3392": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3393": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3394": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3395": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3396": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3397": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3398": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3399": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3400": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3401": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3402": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3403": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3404": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3405": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.error" - }, - "3406": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3407": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3408": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3409": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3410": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3411": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3412": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3413": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3414": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3415": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3416": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3417": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3418": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3419": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.secondary" - }, - "3420": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3421": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3422": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3423": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3424": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3425": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3426": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3427": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3428": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3429": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3430": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3431": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3432": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3433": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.contrast" - }, - "3434": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3435": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3436": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3437": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3438": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3439": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3440": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3441": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3442": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3443": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3444": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3445": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3446": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3447": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3448": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3449": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3450": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3451": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "" - }, - "3452": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens" - }, - "3453": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.root" - }, - "3454": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3455": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3456": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3457": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3458": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3459": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3460": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledBorderColor" - }, - "3461": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3462": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3463": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3464": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3465": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "3466": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.style" - }, - "3467": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3468": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3469": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3470": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3471": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.background" - }, - "3472": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3473": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3474": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3475": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3476": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3477": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "3478": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "3479": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.icon" - }, - "3480": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3481": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3482": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3483": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3484": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "3485": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.content" - }, - "3486": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3487": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.left" - }, - "3488": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.top" - }, - "3489": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedShadow" - }, - "3490": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3491": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3492": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3493": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3494": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3495": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "" - }, - "3496": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens" - }, - "3497": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens.root" - }, - "3498": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3499": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.width" - }, - "3500": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.height" - }, - "3501": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3502": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3503": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3504": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3505": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3506": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.width" - }, - "3507": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.style" - }, - "3508": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.color" - }, - "3509": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3510": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3511": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3512": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3513": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3514": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "3515": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "3516": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3517": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3518": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.slideDuration" - }, - "3519": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3520": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.background" - }, - "3521": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3522": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3523": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "3524": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens.handle" - }, - "3525": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3526": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3527": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.size" - }, - "3528": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3529": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.background" - }, - "3530": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3531": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3532": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "3533": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3534": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3535": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3536": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3537": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "" - }, - "3538": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "ToolbarDesignTokens" - }, - "3539": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "ToolbarDesignTokens.root" - }, - "3540": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type" - }, - "3541": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "3542": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3543": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3544": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.color" - }, - "3545": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3546": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3547": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3548": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3549": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3550": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3551": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "" - }, - "3552": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "TooltipDesignTokens" - }, - "3553": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "TooltipDesignTokens.root" - }, - "3554": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type" - }, - "3555": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.maxWidth" - }, - "3556": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "3557": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3558": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3559": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3560": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.background" - }, - "3561": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.color" - }, - "3562": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3563": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3564": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3565": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3566": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 57 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L1" + } + ] + } + ], + "groups": [ + { + "title": "Modules", + "children": [ + 1, + 56 + ] + } + ], + "packageName": "primeng", + "packageVersion": "18.0.0-beta.1", + "readme": [ + { + "kind": "text", + "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." + } + ], + "symbolIdMap": { + "1": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "" }, - "3567": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens" + "2": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens" }, - "3568": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.root" + "3": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.root" }, - "3569": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "4": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3570": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.background" - }, - "3571": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3572": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3573": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3574": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.indent" - }, - "3575": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "5": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.transitionDuration" }, - "3576": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.node" - }, - "3577": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" - }, - "3578": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3579": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3580": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3581": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3582": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3583": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3584": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3585": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.focusRing" + "6": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.panel" }, - "3586": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "7": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3587": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.width" - }, - "3588": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.style" - }, - "3589": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3590": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3591": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.shadow" + "8": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3592": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.gap" + "9": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" }, - "3593": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.nodeIcon" + "10": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.header" }, - "3594": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "11": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3595": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "12": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3596": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "13": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.hoverColor" }, - "3597": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedColor" + "14": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" }, - "3598": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.nodeToggleButton" + "15": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" }, - "3599": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" + "16": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.fontWeight" }, - "3600": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "17": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.borderRadius" }, - "3601": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.size" + "18": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3602": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverBackground" + "19": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" }, - "3603": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" + "20": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" }, - "3604": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" + "21": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverBackground" }, - "3605": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverColor" + "22": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBackground" }, - "3606": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" + "23": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverBackground" }, - "3607": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "24": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.focusRing" }, - "3608": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "25": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3609": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "26": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.width" }, - "3610": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "27": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.style" }, - "3611": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "28": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3612": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "29": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.offset" }, - "3613": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "30": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.shadow" }, - "3614": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.loadingIcon" - }, - "3615": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" - }, - "3616": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.size" - }, - "3617": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3618": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3619": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3620": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3621": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "" - }, - "3622": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens" - }, - "3623": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.root" + "31": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.toggleIcon" }, - "3624": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "32": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3625": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "3626": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3627": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "3628": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "3629": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3630": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3631": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "3632": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3633": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "33": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3634": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3635": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "3636": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3637": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.paddingX" + "34": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" }, - "3638": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.paddingY" + "35": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" }, - "3639": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" + "36": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverColor" }, - "3640": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.focusRing" + "37": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.first" }, - "3641": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "38": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3642": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "3643": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "3644": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "3645": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3646": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" + "39": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.topBorderRadius" }, - "3647": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" + "40": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3648": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.dropdown" + "41": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.last" }, - "3649": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "42": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3650": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.width" + "43": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.bottomBorderRadius" }, - "3651": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.color" + "44": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBottomBorderRadius" }, - "3652": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.overlay" + "45": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.content" }, - "3653": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "46": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3654": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.background" + "47": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3655": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "48": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.borderColor" }, - "3656": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" + "49": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" }, - "3657": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "50": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3658": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3659": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.tree" - }, - "3660": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3661": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3662": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.emptyMessage" - }, - "3663": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3664": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "51": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.padding" }, - "3665": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.chip" - }, - "3666": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3667": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3668": { + "52": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "3669": { + "53": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type" }, - "3670": { + "54": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.light" }, - "3671": { + "55": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" }, - "3672": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "56": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "" }, - "3673": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens" - }, - "3674": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.root" - }, - "3675": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3676": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3677": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3678": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.header" - }, - "3679": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3680": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3681": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3682": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3683": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3684": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3685": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.headerCell" - }, - "3686": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3687": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3688": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3689": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3690": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3691": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3692": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3693": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3694": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3695": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3696": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3697": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3698": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3699": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" - }, - "3700": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3701": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3702": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3703": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnTitle" - }, - "3704": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3705": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3706": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.row" - }, - "3707": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3708": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3709": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3710": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3711": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3712": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3713": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3714": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3715": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3716": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3717": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" - }, - "3718": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3719": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3720": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3721": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.bodyCell" - }, - "3722": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3723": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3724": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3725": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3726": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBorderColor" - }, - "3727": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.footerCell" - }, - "3728": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3729": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3730": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3731": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3732": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3733": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnFooter" - }, - "3734": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3735": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.fontWeight" + "57": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens" }, - "3736": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.footer" + "58": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.root" }, - "3737": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "59": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type" }, - "3738": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "60": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type.background" }, - "3739": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3740": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3741": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3742": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3743": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnResizerWidth" - }, - "3744": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3745": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.0" - }, - "3746": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.1" - }, - "3747": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.2" - }, - "3748": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.3" - }, - "3749": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.4" - }, - "3750": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.5" - }, - "3751": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.resizeIndicator" - }, - "3752": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3753": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3754": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3755": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.sortIcon" - }, - "3756": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3757": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3758": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3759": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.loadingIcon" - }, - "3760": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3761": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.size" - }, - "3762": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.nodeToggleButton" - }, - "3763": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3764": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3765": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" - }, - "3766": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3767": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3768": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" - }, - "3769": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.size" - }, - "3770": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3771": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3772": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "61": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "3773": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" + "62": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" }, - "3774": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" + "63": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" }, - "3775": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" + "64": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.header" }, - "3776": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" + "65": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3777": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" + "66": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" }, - "3778": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.paginatorTop" + "67": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" }, - "3779": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "68": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3780": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" + "69": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "3781": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" + "70": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderWidth" }, - "3782": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.paginatorBottom" + "71": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" }, - "3783": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "72": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.toggleableHeader" }, - "3784": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" + "73": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3785": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" + "74": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3786": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "75": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.title" }, - "3787": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", + "76": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type" }, - "3788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3790": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "" - }, - "3791": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens" - }, - "3792": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens.loaderMask" + "77": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.fontWeight" }, - "3793": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type" + "78": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.content" }, - "3794": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.background" + "79": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3795": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.color" + "80": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3796": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens.loaderIcon" + "81": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.footer" }, - "3797": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type" + "82": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3798": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.size" + "83": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3799": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "84": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "3800": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" + "85": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" }, - "3801": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" + "86": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" }, - "3802": { + "87": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index d80688e8a9a..77eb5348e3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.2", + "version": "18.0.0-beta.1", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", @@ -17,8 +17,7 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-themedoc.ts", - "build:docs": "npm run apidoc && npm run themedoc" + "themedoc": "node ./api-generator/build-theming.ts" }, "repository": { "type": "git", @@ -89,7 +88,7 @@ "@angular/ssr": "^18.0.1", "@docsearch/js": "^3.3.4", "esbuild": "^0.19.8", - "@primeuix/styled": "0.1.3", + "@primeuix/styled": "0.0.6", "@algolia/client-search": "^4.19.1" }, "dependencies": { @@ -98,4 +97,4 @@ "tailwindcss": "^3.4.10", "tailwindcss-primeui": "^0.3.4" } -} +} \ No newline at end of file diff --git a/src/app/components/table/style/tablestyle.ts b/src/app/components/table/style/tablestyle.ts index 1dc20325348..92fb0dc5435 100644 --- a/src/app/components/table/style/tablestyle.ts +++ b/src/app/components/table/style/tablestyle.ts @@ -698,6 +698,7 @@ const inlineStyles = { thead: { position: 'sticky' }, tfoot: { position: 'sticky' }, }; + @Injectable() export class TableStyle extends BaseStyle { name = 'datatable'; diff --git a/src/app/showcase/layout/topbar/app.topbar.component.html b/src/app/showcase/layout/topbar/app.topbar.component.html index fb133099645..45c02a4e79f 100644 --- a/src/app/showcase/layout/topbar/app.topbar.component.html +++ b/src/app/showcase/layout/topbar/app.topbar.component.html @@ -123,14 +123,14 @@
  • -
  • - \ No newline at end of file + diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 858409f2714..086648609b7 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription, debounceTime } from 'rxjs'; +import { Subscription } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -759,13 +759,13 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "Achieve sophistication and subtlety with Verona's minimalistic, content-focused design.", + text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' }, { title: 'Freya', link: 'https://primevue.org/templates/freya/', image: 'https://primefaces.org/cdn/primevue/images/layouts/freya-vue.png', - text: "Give your application a sleek, updated look with Freya's chic and modern premium template.", + text: 'Give your application a sleek, updated look with Freya\'s chic and modern premium template.', }, ]; @@ -815,7 +815,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { name: 'Jacob Jones', time: '12.23.2023', title: 'Optimized Workflow Revolution ', - text: "Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it's efficiency like never before. Let's get in touch for a brief demo!", + text: 'Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it\'s efficiency like never before. Let\'s get in touch for a brief demo!', }, { image: 'https://www.primefaces.org/cdn/primevue/images/landing/apps/avatar8.png', diff --git a/src/assets/showcase/styles/layout/_templates.scss b/src/assets/showcase/styles/layout/_templates.scss index 3b56e1e4a40..762d730b9f4 100644 --- a/src/assets/showcase/styles/layout/_templates.scss +++ b/src/assets/showcase/styles/layout/_templates.scss @@ -26,12 +26,12 @@ @keyframes p-features-order-animation { 0% { clip-path: polygon(0% 100%, 15% 100%, 32% 100%, 54% 100%, 70% 100%, 84% 100%, 100% 100%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 20% { clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 40% { @@ -45,4 +45,4 @@ 100% { clip-path: polygon(0 0, 18% 0, 39% 0, 53% 0, 62% 0, 87% 0, 100% 0, 100% 100%, 0 100%); } -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_dark.scss b/src/assets/showcase/styles/layout/variables/landing/_dark.scss index 22932c59cc9..ec442774e80 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_dark.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_dark.scss @@ -18,29 +18,29 @@ --home-blocks-border-left:5px solid #1f2937; --home-blocks-border-bottom:7px solid #1f2937; --home-blocks-border:1px solid #424b57; - --home-blocks-sidebar-bg:var(--p-surface-900); - --home-blocks-list-bg:var(--p-surface-800); - --home-blocks-main-bg:var(--p-surface-950); + --home-blocks-sidebar-bg: var(--p-surface-900); + --home-blocks-list-bg: var(--p-surface-800); + --home-blocks-main-bg: var(--p-surface-950); --home-blocks-main-border:1px solid #424b57; - --home-blocks-item-bg:var(--p-surface-900); - --home-blocks-image-bg:var(--p-surface-800); - --home-blocks-text-color:var(--p-surface-600); + --home-blocks-item-bg: var(--p-surface-900); + --home-blocks-image-bg: var(--p-surface-800); + --home-blocks-text-color: var(--p-surface-600); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, 0.25); --home-blocks-active-border-top:1px solid #424b57; --home-blocks-active-border-right:1px solid #424b57; --home-blocks-active-border-bottom:6px solid #424b57; --home-blocks-active-border-left:4px solid #424b57; --home-blocks-animation-shadow:0px 30px 50px 20px rgba(0, 0, 0, 0.25); - --home-blocks-tablebar-bg:var(--p-surface-700); - --home-blocks-bar-bg:var(--p-surface-700); - --home-blocks-bar-button-bg:var(--p-surface-700); - --home-blocks-circle-bg:var(--p-surface-800); + --home-blocks-tablebar-bg: var(--p-surface-700); + --home-blocks-bar-bg: var(--p-surface-700); + --home-blocks-bar-button-bg: var(--p-surface-700); + --home-blocks-circle-bg: var(--p-surface-800); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0, 0, 0, 0.25); --home-templates-block-border-left:5px solid #424b57; --home-templates-block-border-bottom:7px solid #424b57; --home-templates-line:rgba(255,255,255,.1); - --home-templates-block-hover-bg:var(--p-mask-background); + --home-templates-block-hover-bg: var(--p-mask-background); --home-templates-btn-bg:#1f2937; --home-templates-btn-text-color:#ffffff; --home-templates-btn-shadow:0px 10px 15px 0px rgba(0, 0, 0, 0.25); @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid #424b57; --home-features-card-shadow: none; --home-box-ring-color: color-mix(in srgb, var(--primary-color), transparent 70%); -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_light.scss b/src/assets/showcase/styles/layout/variables/landing/_light.scss index ba546d11cdc..c84929681a6 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_light.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_light.scss @@ -18,23 +18,23 @@ --home-blocks-border-left:5px solid rgba(0,0,0,.1); --home-blocks-border-bottom:7px solid rgba(0,0,0,.1); --home-blocks-border:1px solid rgba(0,0,0,.1); - --home-blocks-sidebar-bg:var(--p-surface-100); - --home-blocks-list-bg:var(--p-surface-50); - --home-blocks-main-bg:var(--p-surface-0); + --home-blocks-sidebar-bg: var(--p-surface-100); + --home-blocks-list-bg: var(--p-surface-50); + --home-blocks-main-bg: var(--p-surface-0); --home-blocks-main-border:1px solid rgba(0,0,0,.1); - --home-blocks-item-bg:var(--p-surface-100); - --home-blocks-image-bg:var(--p-surface-200); - --home-blocks-text-color:var(--p-surface-300); + --home-blocks-item-bg: var(--p-surface-100); + --home-blocks-image-bg: var(--p-surface-200); + --home-blocks-text-color: var(--p-surface-300); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, .1); --home-blocks-active-border-top:1px solid rgba(0,0,0,.07); --home-blocks-active-border-right:1px solid rgba(0,0,0,.07); --home-blocks-active-border-bottom:4px solid rgba(0,0,0,.07); --home-blocks-active-border-left:4px solid rgba(0,0,0,.07); --home-blocks-animation-shadow:0px 30px 50px 10px rgba(0, 0, 0, .2); - --home-blocks-tablebar-bg:var(--p-surface-300); - --home-blocks-bar-bg:var(--p-surface-300); - --home-blocks-bar-button-bg:var(--p-surface-0); - --home-blocks-circle-bg:var(--p-surface-300); + --home-blocks-tablebar-bg: var(--p-surface-300); + --home-blocks-bar-bg: var(--p-surface-300); + --home-blocks-bar-button-bg: var(--p-surface-0); + --home-blocks-circle-bg: var(--p-surface-300); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0,0,0,.1); --home-templates-block-border-left:5px solid #d1d5db; @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid rgba(0,0,0,.1); --home-features-card-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.02), 0px 28px 28px 0px rgba(0, 0, 0, 0.02), 0px 63px 38px 0px rgba(0, 0, 0, 0.01); --home-box-ring-color: var(--p-primary-200); -} \ No newline at end of file +} From ff6c85c8d1ce9de81457defab2663294bc42576b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:58:35 +0300 Subject: [PATCH 08/49] Update version --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 77eb5348e3f..2ce34c6edb9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.1", + "version": "18.0.0-beta.2", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", @@ -17,7 +17,8 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-theming.ts" + "themedoc": "node ./api-generator/build-theming.ts", + "build:docs": "npm run apidoc && npm run themedoc" }, "repository": { "type": "git", @@ -97,4 +98,4 @@ "tailwindcss": "^3.4.10", "tailwindcss-primeui": "^0.3.4" } -} \ No newline at end of file +} From fddfa8853cbfe3c8b4d73196bdf00d2b35571c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:23:11 +0300 Subject: [PATCH 09/49] Init themedoc builder --- .gitignore | 3 +- api-generator/build-apidoc.ts | 4 +- api-generator/build-theming.ts | 92 ++++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 api-generator/build-theming.ts diff --git a/.gitignore b/.gitignore index 7dc352d2419..0df428e5061 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,8 @@ Thumbs.db # type doc api-generator/typedoc.json +api-generator/themedoc.json .vercel .nx -builder/node_modules \ No newline at end of file +builder/node_modules diff --git a/api-generator/build-apidoc.ts b/api-generator/build-apidoc.ts index ad34f3de605..671aad7e948 100644 --- a/api-generator/build-apidoc.ts +++ b/api-generator/build-apidoc.ts @@ -39,7 +39,6 @@ async function main() { const project = await app.convert(); await app.generateJson(project, `./api-generator/typedoc.json`); - if (project) { let doc = {}; @@ -53,7 +52,6 @@ async function main() { }; const modules = project.groups.find((g) => g.title === 'Modules'); - if (isProcessable(modules)) { modules.children.forEach((module) => { const name = module.name.replace(/.*\//, ''); @@ -383,6 +381,8 @@ async function main() { doc[name]['types'] = types; } + + // if(isProcessable(module_theming_group)) {} } } }); diff --git a/api-generator/build-theming.ts b/api-generator/build-theming.ts new file mode 100644 index 00000000000..2065162b1a9 --- /dev/null +++ b/api-generator/build-theming.ts @@ -0,0 +1,92 @@ +//@ts-ignore +const TypeDoc = require('typedoc'); +//@ts-ignore +const path = require('path'); +//@ts-ignore +const fs = require('fs'); +//@ts-ignore +const rootDir = path.resolve(__dirname, '../'); +//@ts-ignore +const outputPath = path.resolve(rootDir, 'src/app/showcase/doc/apidoc'); + +// const staticMessages = { +// methods: "Defines methods that can be accessed by the component's reference.", +// emits: 'Defines emit that determine the behavior of the component based on a given condition or report the actions that the component takes.', +// templates: 'Defines the templates used by the component.', +// events: "Defines the custom events used by the component's emitters.", +// interfaces: 'Defines the custom interfaces used by the module.', +// types: 'Defines the custom types used by the module.', +// props: 'Defines the input properties of the component.', +// service: 'Defines the service used by the component', +// }; + +async function theming() { + const app = await TypeDoc.Application.bootstrapWithPlugins({ + // typedoc options here + name: 'PrimeNG', + entryPoints: [`src/app/components/themes/types/accordion/`, `src/app/components/themes/types/panel/`], + entryPointStrategy: 'expand', + hideGenerator: true, + excludeExternals: true, + includeVersion: true, + searchInComments: true, + disableSources: false, + logLevel: 'Error', + sort: ['source-order'], + exclude: ['node_modules', 'src/app/components/**/*spec.ts', 'src/app/components/**/*public_api.ts'], + }); + + const project = await app.convert(); + await app.generateJson(project, `./api-generator/themedoc.json`); + // console.log(project); + if (project) { + let doc = {}; + + const parseText = (text) => { + return text.replace(/{/g, '{').replace(/}/g, '}'); + }; + + const getDeprecatedText = (signature) => { + const deprecatedTag = signature?.comment?.getTag('@deprecated'); + return deprecatedTag ? parseText(deprecatedTag.content[0].text) : undefined; + }; + + const isProcessable = (value) => { + return value && value.children && value.children.length; + }; + + const allowed = (name) => { + return !name.includes('ts-helpers') && !name.includes('icons'); + }; + + const modules = project.groups.find((g) => g.title === 'Modules'); + modules.children.forEach((child) => { + const _name = child.name.split('/').pop(); + doc[_name] = { + name: _name, + properties: {}, + }; + + child.groups.forEach((group) => { + // console.log(group.children); + }); + }); + + let mergedDocs = {}; + + for (const key in doc) { + if (!mergedDocs[key]) { + mergedDocs[key] = { + ...doc[key], + }; + } + } + + const typedocJSON = JSON.stringify(mergedDocs, null, 4); + + !fs.existsSync(outputPath) && fs.mkdirSync(outputPath); + fs.writeFileSync(path.resolve(outputPath, 'index.json'), typedocJSON); + } +} + +theming().catch(console.error); From 66256d05b3e817a2e4cbbd236015c162c6ee96a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:04:45 +0300 Subject: [PATCH 10/49] rebase v18 --- api-generator/themedoc.json | 148478 +-------------- package.json | 9 +- src/app/components/table/style/tablestyle.ts | 1 + .../layout/topbar/app.topbar.component.html | 16 +- .../pages/landing/herosection.component.ts | 8 +- .../showcase/styles/layout/_templates.scss | 6 +- .../layout/variables/landing/_dark.scss | 24 +- .../layout/variables/landing/_light.scss | 22 +- 8 files changed, 984 insertions(+), 147580 deletions(-) diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json index 7860206a168..753d2c18b95 100644 --- a/api-generator/themedoc.json +++ b/api-generator/themedoc.json @@ -48,7 +48,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" } ], "type": { @@ -92,7 +92,7 @@ "fileName": "accordion/index.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L23" } ], "type": { @@ -114,7 +114,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" } ] } @@ -141,7 +141,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "accordion/index.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L34" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "accordion/index.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L40" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" } ] } @@ -275,7 +275,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" } ], "type": { @@ -319,7 +319,7 @@ "fileName": "accordion/index.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L51" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "accordion/index.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L57" } ], "type": { @@ -399,7 +399,7 @@ "fileName": "accordion/index.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L63" } ], "type": { @@ -439,7 +439,7 @@ "fileName": "accordion/index.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L69" } ], "type": { @@ -479,7 +479,7 @@ "fileName": "accordion/index.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L75" } ], "type": { @@ -519,7 +519,7 @@ "fileName": "accordion/index.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L81" } ], "type": { @@ -559,7 +559,7 @@ "fileName": "accordion/index.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L87" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "accordion/index.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L93" } ], "type": { @@ -639,7 +639,7 @@ "fileName": "accordion/index.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L99" } ], "type": { @@ -679,7 +679,7 @@ "fileName": "accordion/index.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L105" } ], "type": { @@ -719,7 +719,7 @@ "fileName": "accordion/index.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L111" } ], "type": { @@ -759,7 +759,7 @@ "fileName": "accordion/index.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L117" } ], "type": { @@ -788,7 +788,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "accordion/index.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L127" } ], "type": { @@ -872,7 +872,7 @@ "fileName": "accordion/index.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L133" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "accordion/index.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L139" } ], "type": { @@ -952,7 +952,7 @@ "fileName": "accordion/index.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L145" } ], "type": { @@ -992,7 +992,7 @@ "fileName": "accordion/index.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L151" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" } ] } @@ -1045,7 +1045,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" } ], "type": { @@ -1089,7 +1089,7 @@ "fileName": "accordion/index.ts", "line": 162, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L162" } ], "type": { @@ -1129,7 +1129,7 @@ "fileName": "accordion/index.ts", "line": 168, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L168" } ], "type": { @@ -1169,7 +1169,7 @@ "fileName": "accordion/index.ts", "line": 174, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L174" } ], "type": { @@ -1209,7 +1209,7 @@ "fileName": "accordion/index.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L180" } ], "type": { @@ -1234,7 +1234,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" } ] } @@ -1261,7 +1261,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" } ], "type": { @@ -1305,7 +1305,7 @@ "fileName": "accordion/index.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L191" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "accordion/index.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L197" } ], "type": { @@ -1368,7 +1368,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" } ] } @@ -1395,7 +1395,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" } ], "type": { @@ -1439,7 +1439,7 @@ "fileName": "accordion/index.ts", "line": 208, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L208" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L208" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "accordion/index.ts", "line": 214, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L214" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" } ] } @@ -1537,7 +1537,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" } ] } @@ -1564,7 +1564,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "accordion/index.ts", "line": 226, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L226" } ], "type": { @@ -1648,7 +1648,7 @@ "fileName": "accordion/index.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L232" } ], "type": { @@ -1688,7 +1688,7 @@ "fileName": "accordion/index.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L238" } ], "type": { @@ -1728,7 +1728,7 @@ "fileName": "accordion/index.ts", "line": 244, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L244" } ], "type": { @@ -1768,7 +1768,7 @@ "fileName": "accordion/index.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L250" } ], "type": { @@ -1794,7 +1794,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" } ] } @@ -1813,7 +1813,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -1838,7 +1838,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -1876,7 +1876,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -1916,14 +1916,14 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1605, + "target": -1, "name": "ColorSchemeDesignToken.colorScheme" } } @@ -1945,13 +1945,16 @@ "fileName": "accordion/index.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L13" } ], "extendedTypes": [ { "type": "reference", - "target": 1604, + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, "typeArguments": [ { "type": "reference", @@ -1979,13 +1982,13 @@ "fileName": "accordion/index.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/accordion/index.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L1" } ] }, { "id": 56, - "name": "themes/autocomplete", + "name": "themes/panel", "variant": "declaration", "kind": 2, "flags": {}, @@ -1993,19 +1996,146 @@ "summary": [ { "kind": "text", - "text": "AutoComplete Design Tokens\n\n[Live Demo](https://www.primeng.org/autocomplete/)" + "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" } ] }, "children": [ { "id": 57, - "name": "AutoCompleteDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { + "name": "PanelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 84, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 85, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 86, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 87, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 86, + 87 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { "id": 58, "name": "root", "variant": "declaration", @@ -2023,10 +2153,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" } ], "type": { @@ -2059,7 +2189,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.background" + "text": "panel.background" } ] } @@ -2067,10 +2197,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L23" } ], "type": { @@ -2080,7 +2210,7 @@ }, { "id": 61, - "name": "disabledBackground", + "name": "borderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2090,7 +2220,7 @@ "summary": [ { "kind": "text", - "text": "Disabled background of root" + "text": "Border color of root" } ], "blockTags": [ @@ -2099,7 +2229,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.disabled.background" + "text": "panel.border.color" } ] } @@ -2107,10 +2237,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L29" } ], "type": { @@ -2120,7 +2250,7 @@ }, { "id": 62, - "name": "filledBackground", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2130,7 +2260,7 @@ "summary": [ { "kind": "text", - "text": "Filled background of root" + "text": "Color of root" } ], "blockTags": [ @@ -2139,7 +2269,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.filled.background" + "text": "panel.color" } ] } @@ -2147,10 +2277,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L35" } ], "type": { @@ -2160,7 +2290,7 @@ }, { "id": 63, - "name": "filledFocusBackground", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2170,7 +2300,7 @@ "summary": [ { "kind": "text", - "text": "Filled focus background of root" + "text": "Border radius of root" } ], "blockTags": [ @@ -2179,7 +2309,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.filled.focus.background" + "text": "panel.border.radius" } ] } @@ -2187,100 +2317,76 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", + "fileName": "panel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 64, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 65, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 60, + 61, + 62, + 63 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 64, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 65, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { "id": 66, - "name": "focusBorderColor", + "name": "background", "variant": "declaration", "kind": 1024, "flags": { @@ -2290,7 +2396,7 @@ "summary": [ { "kind": "text", - "text": "Focus border color of root" + "text": "Background of header" } ], "blockTags": [ @@ -2299,7 +2405,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.focus.border.color" + "text": "panel.header.background" } ] } @@ -2307,10 +2413,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 59, + "fileName": "panel/index.d.ts", + "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L52" } ], "type": { @@ -2320,7 +2426,7 @@ }, { "id": 67, - "name": "invalidBorderColor", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2330,7 +2436,7 @@ "summary": [ { "kind": "text", - "text": "Invalid border color of root" + "text": "Color of header" } ], "blockTags": [ @@ -2339,7 +2445,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.invalid.border.color" + "text": "panel.header.color" } ] } @@ -2347,10 +2453,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 65, + "fileName": "panel/index.d.ts", + "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L58" } ], "type": { @@ -2360,7 +2466,7 @@ }, { "id": 68, - "name": "color", + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2370,7 +2476,7 @@ "summary": [ { "kind": "text", - "text": "Color of root" + "text": "Padding of header" } ], "blockTags": [ @@ -2379,7 +2485,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.color" + "text": "panel.header.padding" } ] } @@ -2387,10 +2493,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 71, + "fileName": "panel/index.d.ts", + "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L64" } ], "type": { @@ -2400,7 +2506,7 @@ }, { "id": 69, - "name": "disabledColor", + "name": "borderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2410,7 +2516,7 @@ "summary": [ { "kind": "text", - "text": "Disabled color of root" + "text": "Border color of header" } ], "blockTags": [ @@ -2419,7 +2525,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.disabled.color" + "text": "panel.header.border.color" } ] } @@ -2427,10 +2533,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 77, + "fileName": "panel/index.d.ts", + "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L70" } ], "type": { @@ -2440,7 +2546,7 @@ }, { "id": 70, - "name": "placeholderColor", + "name": "borderWidth", "variant": "declaration", "kind": 1024, "flags": { @@ -2450,7 +2556,7 @@ "summary": [ { "kind": "text", - "text": "Placeholder color of root" + "text": "Border width of header" } ], "blockTags": [ @@ -2459,7 +2565,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.placeholder.color" + "text": "panel.header.border.width" } ] } @@ -2467,10 +2573,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 83, + "fileName": "panel/index.d.ts", + "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L76" } ], "type": { @@ -2480,87 +2586,7 @@ }, { "id": 71, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 72, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 73, - "name": "paddingY", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2570,7 +2596,7 @@ "summary": [ { "kind": "text", - "text": "Padding y of root" + "text": "Border radius of header" } ], "blockTags": [ @@ -2579,7 +2605,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.padding.y" + "text": "panel.header.border.radius" } ] } @@ -2587,20 +2613,78 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 101, + "fileName": "panel/index.d.ts", + "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L82" } ], "type": { "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 66, + 67, + 68, + 69, + 70, + 71 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 72, + "name": "toggleableHeader", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toggleable header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 73, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { "id": 74, - "name": "borderRadius", + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2610,7 +2694,7 @@ "summary": [ { "kind": "text", - "text": "Border radius of root" + "text": "Padding of toggleable header" } ], "blockTags": [ @@ -2619,7 +2703,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.border.radius" + "text": "panel.toggleable.header.padding" } ] } @@ -2627,277 +2711,259 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 75, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 76, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 77, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 78, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 79, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 80, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 81, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 77, - 78, - 79, - 80, - 81 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 82, - "name": "transitionDuration", + "fileName": "panel/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 74 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" + } + ] + } + } + }, + { + "id": 75, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 76, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 77, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 77 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 78, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 79, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 80, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 80 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" + } + ] + } + } + }, + { + "id": 81, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 82, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 83, + "name": "padding", "variant": "declaration", "kind": 1024, "flags": { @@ -2907,7 +2973,7 @@ "summary": [ { "kind": "text", - "text": "Transition duration of root" + "text": "Padding of footer" } ], "blockTags": [ @@ -2916,7 +2982,7 @@ "content": [ { "kind": "text", - "text": "autocomplete.transition.duration" + "text": "panel.footer.padding" } ] } @@ -2924,10 +2990,10 @@ }, "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 148, + "fileName": "panel/index.d.ts", + "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L126" } ], "type": { @@ -2940,147110 +3006,448 @@ { "title": "Properties", "children": [ - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 82 + 83 ] } ], "sources": [ { - "fileName": "autocomplete/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "fileName": "panel/index.d.ts", + "line": 120, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" } ] } } - }, + } + ], + "groups": [ { - "id": 83, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ + "title": "Properties", + "children": [ + 84, + 58, + 64, + 72, + 75, + 78, + 81 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, + "typeArguments": [ { - "fileName": "autocomplete/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "type": "reference", + "target": 57, + "name": "PanelDesignTokens", + "package": "primeng" } ], - "type": { - "type": "reflection", - "declaration": { - "id": 84, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 85, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 86, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 87, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 88, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 89, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 85, - 86, - 87, - 88, - 89 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 153, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 90, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 188, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L188" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 91, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 92, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 93, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 92, - 93 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 188, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L188" - } - ] - } - } - }, - { - "id": 94, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 95, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 96, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 97, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 98, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 99, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 100, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 101, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 241, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L241" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 102, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 247, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L247" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 103, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 253, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L253" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 104, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 259, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L259" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 205, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 105, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 264, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L264" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 106, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 107, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 270, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L270" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 108, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 276, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L276" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 109, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 282, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L282" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 110, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 288, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L288" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 107, - 108, - 109, - 110 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 264, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L264" - } - ] - } - } - }, - { - "id": 111, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 293, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L293" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 112, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 113, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 299, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L299" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 114, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 305, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L305" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 115, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 311, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L311" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 116, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 317, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L317" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 117, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 323, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L323" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 118, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of dropdown" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 119, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 120, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 333, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 121, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 339, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L339" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 122, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 345, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L345" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 123, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L351" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 124, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 357, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 120, - 121, - 122, - 123, - 124 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 327, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 125, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 364, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 126, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 370, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 127, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 376, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 128, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 382, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L382" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 129, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 388, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L388" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 130, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.dropdown.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 394, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L394" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 113, - 114, - 115, - 116, - 117, - 118, - 125, - 126, - 127, - 128, - 129, - 130 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 293, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L293" - } - ] - } - } - }, - { - "id": 131, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 399, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L399" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 132, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 133, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 405, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L405" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 133 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 399, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L399" - } - ] - } - } - }, - { - "id": 134, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 410, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L410" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 135, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 136, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "autocomplete.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 416, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L416" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 136 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 410, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L410" - } - ] - } - } - }, - { - "id": 137, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 138, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 139, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 140, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 139, - 140 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 58, - 83, - 90, - 94, - 105, - 111, - 131, - 134, - 137 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 57 - ] - } - ], - "sources": [ - { - "fileName": "autocomplete/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/autocomplete/index.d.ts#L1" - } - ] - }, - { - "id": 141, - "name": "themes/avatar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Avatar Design Tokens\n\n[Live Demo](https://www.primeng.org/avatar/)" - } - ] - }, - "children": [ - { - "id": 142, - "name": "AvatarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 143, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 144, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 145, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 146, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 147, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 148, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 149, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 145, - 146, - 147, - 148, - 149 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 150, - "name": "group", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the group section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 152, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.group.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 153, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Offset of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.group.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 152, - 153 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 52, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 154, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the lg section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 156, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 157, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 158, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 156, - 157, - 158 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 69, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 159, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the xl section" - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 160, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 161, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 162, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 163, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "avatar.xl.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 161, - 162, - 163 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 92, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 164, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 165, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 166, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 167, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 166, - 167 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 143, - 150, - 154, - 159, - 164 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 142 - ] - } - ], - "sources": [ - { - "fileName": "avatar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/avatar/index.d.ts#L1" - } - ] - }, - { - "id": 168, - "name": "themes/badge", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Badge Design Tokens\n\n[Live Demo](https://www.primeng.org/badge/)" - } - ] - }, - "children": [ - { - "id": 169, - "name": "BadgeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 170, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 172, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 173, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 174, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 175, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 176, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 177, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 172, - 173, - 174, - 175, - 176, - 177 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 178, - "name": "dot", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dot section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 179, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 180, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of dot" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.dot.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 180 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 58, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 181, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sm section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 182, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 183, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 184, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 185, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of sm" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.sm.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 183, - 184, - 185 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 69, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 186, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the lg section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 187, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 188, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 189, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 190, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of lg" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.lg.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 188, - 189, - 190 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 92, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 191, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the xl section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 115, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 192, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 193, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 194, - "name": "minWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min width of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.min.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 195, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of xl" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.xl.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 193, - 194, - 195 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 115, - "character": 9, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L115" - } - ] - } - } - }, - { - "id": 196, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the primary section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 138, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L138" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 197, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 198, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 199, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 198, - 199 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 138, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L138" - } - ] - } - } - }, - { - "id": 200, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 201, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 202, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 203, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 202, - 203 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 155, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 204, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 172, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 205, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 206, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 178, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 207, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 206, - 207 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 172, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L172" - } - ] - } - } - }, - { - "id": 208, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 189, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L189" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 209, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 210, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 211, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 201, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 210, - 211 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 189, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L189" - } - ] - } - } - }, - { - "id": 212, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 206, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L206" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 213, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 214, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 212, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 215, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 218, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L218" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 214, - 215 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 206, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L206" - } - ] - } - } - }, - { - "id": 216, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the danger section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 223, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L223" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 217, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 218, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 219, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 218, - 219 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 223, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L223" - } - ] - } - } - }, - { - "id": 220, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 240, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L240" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 221, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 222, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 246, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L246" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 223, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "badge.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 252, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L252" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 222, - 223 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 240, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L240" - } - ] - } - } - }, - { - "id": 224, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 225, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 226, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 227, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 226, - 227 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 170, - 178, - 181, - 186, - 191, - 196, - 200, - 204, - 208, - 212, - 216, - 220, - 224 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 169 - ] - } - ], - "sources": [ - { - "fileName": "badge/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/badge/index.d.ts#L1" - } - ] - }, - { - "id": 228, - "name": "themes/blockui", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "BlockUI Design Tokens\n\n[Live Demo](https://www.primeng.org/blockui/)" - } - ] - }, - "children": [ - { - "id": 229, - "name": "BlockUIDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 230, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 231, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 232, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "blockui.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 232 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 233, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 234, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 235, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 236, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 235, - 236 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 230, - 233 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 229 - ] - } - ], - "sources": [ - { - "fileName": "blockui/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/blockui/index.d.ts#L1" - } - ] - }, - { - "id": 237, - "name": "themes/breadcrumb", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Breadcrumb Design Tokens\n\n[Live Demo](https://www.primeng.org/breadcrumb/)" - } - ] - }, - "children": [ - { - "id": 238, - "name": "BreadcrumbDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 239, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 240, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 241, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 242, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 243, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 244, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 241, - 242, - 243, - 244 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 245, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 246, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 247, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 248, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 249, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 250, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 251, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 252, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 253, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 254, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 253, - 254 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 74, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 255, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 256, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 257, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 258, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 259, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 260, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 115, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 261, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 257, - 258, - 259, - 260, - 261 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 91, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 247, - 248, - 249, - 250, - 251, - 255 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 262, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 127, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 264, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "breadcrumb.separator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 264 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 127, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" - } - ] - } - } - }, - { - "id": 265, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 266, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 267, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 268, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 267, - 268 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 239, - 245, - 262, - 265 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 238 - ] - } - ], - "sources": [ - { - "fileName": "breadcrumb/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/breadcrumb/index.d.ts#L1" - } - ] - }, - { - "id": 269, - "name": "themes/button", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Button Design Tokens\n\n[Live Demo](https://www.primeng.org/button/)" - } - ] - }, - "children": [ - { - "id": 270, - "name": "ButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 271, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 272, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 273, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 274, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 275, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 276, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 277, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 278, - "name": "iconOnlyWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon only width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.icon.only.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 279, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 280, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 281, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 282, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 283, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.sm.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 281, - 282, - 283 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 57, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 284, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 285, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 286, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 287, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 288, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.lg.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 286, - 287, - 288 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 80, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 289, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Label of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 290, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 291, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Label font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 291 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 103, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 292, - "name": "raisedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Raised shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.raised.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 293, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 295, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 296, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 297, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 295, - 296, - 297 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 120, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 298, - "name": "badgeSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Badge size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.badge.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 299, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 300, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 301, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 302, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 303, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 304, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 305, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 179, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 306, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 185, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 307, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 191, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 308, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 197, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 309, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 203, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 310, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 209, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 311, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 213, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L213" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 312, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 313, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 219, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L219" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 314, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.primary.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 225, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 313, - 314 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 213, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L213" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 155, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 315, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L231" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 316, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 317, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 237, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 318, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 243, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 319, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 249, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 320, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 255, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 321, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 261, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 322, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 267, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 323, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 273, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L273" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 324, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 279, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L279" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 325, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 285, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 326, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 289, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L289" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 327, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 328, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 295, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L295" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 329, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.secondary.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 301, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L301" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 328, - 329 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 289, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L289" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 231, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L231" - } - ] - } - } - }, - { - "id": 330, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 307, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L307" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 331, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 332, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 313, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L313" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 333, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 319, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L319" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 334, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 325, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 335, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 331, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 336, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 337, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 337, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 343, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 338, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 349, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 339, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 355, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L355" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 340, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 361, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 341, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 365, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L365" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 342, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 343, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 371, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L371" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 344, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.info.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 377, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 343, - 344 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 365, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L365" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 307, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L307" - } - ] - } - } - }, - { - "id": 345, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 383, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L383" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 346, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 347, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 389, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L389" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 348, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 395, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L395" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 349, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 401, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 350, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 407, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 351, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 413, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L413" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 352, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 419, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L419" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 353, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 425, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L425" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 354, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 431, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L431" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 355, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 437, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L437" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 356, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 441, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L441" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 357, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 358, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 447, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L447" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 359, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.success.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 453, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L453" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 358, - 359 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 441, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L441" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 383, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L383" - } - ] - } - } - }, - { - "id": 360, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 459, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L459" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 361, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 362, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L465" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 363, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 471, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L471" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 364, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 477, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 365, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 483, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L483" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 366, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 489, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L489" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 367, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 495, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L495" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 368, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 501, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L501" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 369, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 507, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L507" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 370, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 513, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 371, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 517, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L517" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 372, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 373, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 523, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L523" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 374, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.warn.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 529, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L529" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 373, - 374 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 517, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L517" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 459, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L459" - } - ] - } - } - }, - { - "id": 375, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 535, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L535" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 376, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 377, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 541, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L541" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 378, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 547, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L547" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 379, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 553, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L553" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 380, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 559, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L559" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 381, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 565, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L565" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 382, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 571, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L571" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 383, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 577, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L577" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 384, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 583, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L583" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 385, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 589, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L589" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 386, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 593, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L593" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 387, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 388, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 599, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L599" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 389, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.help.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 605, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L605" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 388, - 389 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 593, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L593" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 535, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L535" - } - ] - } - } - }, - { - "id": 390, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 611, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L611" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 391, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 392, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 617, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L617" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 393, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 623, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L623" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 394, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 629, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L629" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 395, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 635, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L635" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 396, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 641, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L641" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 397, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 647, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L647" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 398, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 653, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L653" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 399, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 659, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L659" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 400, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 665, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L665" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 401, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 669, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L669" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 402, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 403, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 675, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L675" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 404, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.danger.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 681, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L681" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 403, - 404 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 669, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L669" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 611, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L611" - } - ] - } - } - }, - { - "id": 405, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 687, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L687" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 406, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 407, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 693, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L693" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 408, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 699, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L699" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 409, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 705, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L705" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 410, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 711, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L711" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 411, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 717, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L717" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 412, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 723, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L723" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 413, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 729, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L729" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 414, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 735, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L735" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 415, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 741, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L741" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 416, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 745, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L745" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 417, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 418, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 751, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L751" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 419, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.contrast.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 757, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L757" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 418, - 419 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 745, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L745" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 687, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L687" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 284, - 289, - 292, - 293, - 298, - 299, - 300, - 315, - 330, - 345, - 360, - 375, - 390, - 405 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 420, - "name": "outlined", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the outlined section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 764, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L764" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 421, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 422, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 768, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L768" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 423, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 424, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 774, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L774" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 425, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 780, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L780" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 426, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 786, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L786" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 427, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 792, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L792" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 424, - 425, - 426, - 427 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 768, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L768" - } - ] - } - } - }, - { - "id": 428, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 797, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L797" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 429, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 430, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 803, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L803" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 431, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 809, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L809" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 432, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 815, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L815" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 433, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 821, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L821" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 430, - 431, - 432, - 433 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 797, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L797" - } - ] - } - } - }, - { - "id": 434, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 826, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L826" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 435, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 436, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 832, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L832" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 437, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 838, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L838" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 438, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 844, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L844" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 439, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 850, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L850" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 436, - 437, - 438, - 439 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 826, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L826" - } - ] - } - } - }, - { - "id": 440, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 855, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L855" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 442, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 861, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L861" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 443, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 867, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L867" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 444, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 873, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L873" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 879, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L879" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 442, - 443, - 444, - 445 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 855, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L855" - } - ] - } - } - }, - { - "id": 446, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 884, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L884" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 447, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 448, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 890, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L890" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 449, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 896, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L896" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 450, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 902, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L902" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 451, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 908, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L908" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 448, - 449, - 450, - 451 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 884, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L884" - } - ] - } - } - }, - { - "id": 452, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 913, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L913" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 453, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 454, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 919, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L919" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 455, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 925, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L925" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 456, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 931, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L931" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 457, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 937, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L937" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 454, - 455, - 456, - 457 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 913, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L913" - } - ] - } - } - }, - { - "id": 458, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 942, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L942" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 459, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 460, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 948, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L948" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 461, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 954, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L954" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 462, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 960, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L960" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 463, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 966, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L966" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 460, - 461, - 462, - 463 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 942, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L942" - } - ] - } - } - }, - { - "id": 464, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 971, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L971" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 465, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 466, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 977, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L977" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 467, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 983, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L983" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 468, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 989, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L989" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 469, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Contrast color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 995, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L995" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 466, - 467, - 468, - 469 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 971, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L971" - } - ] - } - } - }, - { - "id": 470, - "name": "plain", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain of outlined" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1000, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1000" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 471, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 472, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain hover background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1006, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1006" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 473, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain active background of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1012, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1012" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 474, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain border color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1018, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1018" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 475, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain color of outlined" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.outlined.plain.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1024, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1024" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 472, - 473, - 474, - 475 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1000, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1000" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 422, - 428, - 434, - 440, - 446, - 452, - 458, - 464, - 470 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 764, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L764" - } - ] - } - } - }, - { - "id": 476, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1030, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1030" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 477, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 478, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1034, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1034" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 479, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 480, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1040, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1040" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 481, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1046, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1046" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Primary color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1052, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1052" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 480, - 481, - 482 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1034, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1034" - } - ] - } - } - }, - { - "id": 483, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1057, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1057" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 484, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 485, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1063, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1063" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 486, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1069, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1069" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 487, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Secondary color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1075, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1075" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 485, - 486, - 487 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1057, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1057" - } - ] - } - } - }, - { - "id": 488, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1080, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1080" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 489, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 490, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1086, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1086" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 491, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1092, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1092" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 492, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Success color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1098, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1098" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 490, - 491, - 492 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1080, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1080" - } - ] - } - } - }, - { - "id": 493, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 494, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 495, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 496, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1115, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 497, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 495, - 496, - 497 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1103, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1103" - } - ] - } - } - }, - { - "id": 498, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1126" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 499, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 500, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 501, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 502, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Warn color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1144, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 500, - 501, - 502 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1126, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1126" - } - ] - } - } - }, - { - "id": 503, - "name": "help", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 504, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 505, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 506, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 507, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Help color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.help.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 505, - 506, - 507 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1149, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1149" - } - ] - } - } - }, - { - "id": 508, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1172, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 509, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 510, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1178, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 511, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1184, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 512, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Danger color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1190, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 510, - 511, - 512 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1172, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1172" - } - ] - } - } - }, - { - "id": 513, - "name": "plain", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain of text" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1195" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 514, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 515, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain hover background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1201, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 516, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain active background of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1207, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 517, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Plain color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.text.plain.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1213, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1213" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 515, - 516, - 517 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1195, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1195" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 478, - 483, - 488, - 493, - 498, - 503, - 508, - 513 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1030, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1030" - } - ] - } - } - }, - { - "id": 518, - "name": "link", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the link section" - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1219, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1219" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 519, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 520, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1225, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 521, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 522, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "button.link.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1237, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 520, - 521, - 522 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1219, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1219" - } - ] - } - } - }, - { - "id": 523, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 525, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 526, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 525, - 526 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 271, - 420, - 476, - 518, - 523 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 270 - ] - } - ], - "sources": [ - { - "fileName": "button/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/button/index.d.ts#L1" - } - ] - }, - { - "id": 527, - "name": "themes/card", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Card Design Tokens\n\n[Live Demo](https://www.primeng.org/card/)" - } - ] - }, - "children": [ - { - "id": 528, - "name": "CardDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 529, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 530, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 531, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 532, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 533, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 534, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 531, - 532, - 533, - 534 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 535, - "name": "body", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 536, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 537, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.body.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 538, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of body" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.body.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 537, - 538 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 539, - "name": "caption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the caption section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 541, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.caption.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 541 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 63, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 542, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 543, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 544, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 545, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 544, - 545 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 546, - "name": "subtitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the subtitle section" - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 547, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 548, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of subtitle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "card.subtitle.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 548 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 91, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 549, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 550, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 551, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 552, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 551, - 552 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 529, - 535, - 539, - 542, - 546, - 549 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 528 - ] - } - ], - "sources": [ - { - "fileName": "card/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/card/index.d.ts#L1" - } - ] - }, - { - "id": 553, - "name": "themes/carousel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Carousel Design Tokens\n\n[Live Demo](https://www.primeng.org/carousel/)" - } - ] - }, - "children": [ - { - "id": 554, - "name": "CarouselDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 555, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 556, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 557, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 557 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 558, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 559, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 560, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 560 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 561, - "name": "indicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L39" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 562, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 563, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 45, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 564, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 563, - 564 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 39, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L39" - } - ] - } - } - }, - { - "id": 565, - "name": "indicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator section" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 56, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L56" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 566, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 567, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 62, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 568, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 569, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 570, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of indicator" - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L78" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 571, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 572, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 84, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 573, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 90, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 574, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 96, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 575, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 572, - 573, - 574, - 575, - 576 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 78, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L78" - } - ] - } - } - }, - { - "id": 577, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 578, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 579, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "carousel.indicator.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 567, - 568, - 569, - 570, - 577, - 578, - 579 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 56, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L56" - } - ] - } - } - }, - { - "id": 580, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 581, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 582, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 583, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 582, - 583 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 555, - 558, - 561, - 565, - 580 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 554 - ] - } - ], - "sources": [ - { - "fileName": "carousel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/carousel/index.d.ts#L1" - } - ] - }, - { - "id": 584, - "name": "themes/cascadeselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "CascadeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/cascadeselect/)" - } - ] - }, - "children": [ - { - "id": 585, - "name": "CascadeSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 586, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 587, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 588, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 589, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 590, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 591, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 592, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 593, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 594, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 595, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 596, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 597, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 598, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 599, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 600, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 601, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 602, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 603, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 604, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 605, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 606, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 607, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 608, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 609, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 605, - 606, - 607, - 608, - 609 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 610, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 610 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 611, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 612, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 613, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 614, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 613, - 614 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 615, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 616, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 617, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 618, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 619, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 620, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 621, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 617, - 618, - 619, - 620, - 621 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 622, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 623, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 624, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 625, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 624, - 625 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 626, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 222, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 627, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 628, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 629, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 234, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L234" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 630, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 240, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L240" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 631, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 246, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L246" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 632, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 252, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L252" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 633, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 258, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L258" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 634, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 264, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L264" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 635, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 270, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L270" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 636, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 276, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L276" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 637, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of option" - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 638, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 639, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 286, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L286" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 640, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 292, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L292" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 641, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "cascadeselect.option.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 298, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 639, - 640, - 641 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 280, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 222, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" - } - ] - } - } - }, - { - "id": 642, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 643, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 644, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 645, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 644, - 645 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 586, - 611, - 615, - 622, - 626, - 642 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 585 - ] - } - ], - "sources": [ - { - "fileName": "cascadeselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/cascadeselect/index.d.ts#L1" - } - ] - }, - { - "id": 646, - "name": "themes/checkbox", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checkbox Design Tokens\n\n[Live Demo](https://www.primeng.org/checkbox/)" - } - ] - }, - "children": [ - { - "id": 647, - "name": "CheckboxDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 648, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 649, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 650, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 651, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 652, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 653, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 654, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 655, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 656, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 657, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 658, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 659, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 660, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 661, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 662, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 663, - "name": "checkedFocusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 664, - "name": "checkedDisabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.checked.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 665, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 113, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 666, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 119, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L119" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 667, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L123" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 668, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 669, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 670, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 671, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 672, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 673, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 153, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L153" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 669, - 670, - 671, - 672, - 673 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 123, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L123" - } - ] - } - } - }, - { - "id": 674, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 674 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 675, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 676, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 677, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 678, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 679, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 680, - "name": "checkedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.checked.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 189, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 681, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "checkbox.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 677, - 678, - 679, - 680, - 681 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 165, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L165" - } - ] - } - } - }, - { - "id": 682, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 683, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 684, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 685, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 684, - 685 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 648, - 675, - 682 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 647 - ] - } - ], - "sources": [ - { - "fileName": "checkbox/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/checkbox/index.d.ts#L1" - } - ] - }, - { - "id": 686, - "name": "themes/chip", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Chip Design Tokens\n\n[Live Demo](https://www.primeng.org/chip/)" - } - ] - }, - "children": [ - { - "id": 687, - "name": "ChipDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 688, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 689, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 690, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 691, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 692, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 693, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 694, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 695, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 696, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 690, - 691, - 692, - 693, - 694, - 695, - 696 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 697, - "name": "image", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the image section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 698, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 699, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of image" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.image.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 700, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of image" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.image.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 699, - 700 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 64, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 701, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 702, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 703, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 704, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 703, - 704 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 705, - "name": "removeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the remove icon section" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 706, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 707, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 708, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of remove icon" - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L108" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 709, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 710, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 711, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 712, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 713, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 714, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 710, - 711, - 712, - 713, - 714 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 108, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L108" - } - ] - } - } - }, - { - "id": 715, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of remove icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "chip.remove.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 707, - 708, - 715 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 98, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 716, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 717, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 718, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 719, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 718, - 719 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 688, - 697, - 701, - 705, - 716 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 687 - ] - } - ], - "sources": [ - { - "fileName": "chip/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/chip/index.d.ts#L1" - } - ] - }, - { - "id": 720, - "name": "themes/colorpicker", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ColorPicker Design Tokens\n\n[Live Demo](https://www.primeng.org/colorpicker/)" - } - ] - }, - "children": [ - { - "id": 721, - "name": "ColorPickerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 722, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 723, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 724, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 724 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 725, - "name": "preview", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the preview section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 726, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 727, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 728, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 729, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 730, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of preview" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 50, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L50" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 731, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 732, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 56, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L56" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 733, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 62, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 734, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 68, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 735, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 736, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.preview.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 732, - 733, - 734, - 735, - 736 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 50, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L50" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 727, - 728, - 729, - 730 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 737, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 738, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 739, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 740, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 741, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 742, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 739, - 740, - 741, - 742 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 743, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 115, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 744, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 745, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "colorpicker.handle.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 745 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 115, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L115" - } - ] - } - } - }, - { - "id": 746, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 747, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 748, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 749, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 748, - 749 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 722, - 725, - 737, - 743, - 746 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 721 - ] - } - ], - "sources": [ - { - "fileName": "colorpicker/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/colorpicker/index.d.ts#L1" - } - ] - }, - { - "id": 750, - "name": "themes/confirmdialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ConfirmDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmdialog/)" - } - ] - }, - "children": [ - { - "id": 751, - "name": "ConfirmDialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 752, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 753, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 754, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 755, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 754, - 755 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 756, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 757, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 758, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmdialog.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 758 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 34, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 759, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 760, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 761, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 762, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 761, - 762 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 752, - 756, - 759 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 751 - ] - } - ], - "sources": [ - { - "fileName": "confirmdialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmdialog/index.d.ts#L1" - } - ] - }, - { - "id": 763, - "name": "themes/confirmpopup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ConfirmPopup Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmpopup/)" - } - ] - }, - "children": [ - { - "id": 764, - "name": "ConfirmPopupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 765, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 766, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 767, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 768, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 769, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 770, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 771, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 772, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 773, - "name": "arrowOffset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Arrow offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.arrow.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 767, - 768, - 769, - 770, - 771, - 772, - 773 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 774, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 775, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 776, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 777, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 776, - 777 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 64, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 778, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 780, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 781, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 780, - 781 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 782, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 784, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 785, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "confirmpopup.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 784, - 785 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 98, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 786, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 787, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 788, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 789, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 788, - 789 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 765, - 774, - 778, - 782, - 786 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 764 - ] - } - ], - "sources": [ - { - "fileName": "confirmpopup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/confirmpopup/index.d.ts#L1" - } - ] - }, - { - "id": 790, - "name": "themes/contextmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ContextMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/contextmenu/)" - } - ] - }, - "children": [ - { - "id": 791, - "name": "ContextMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 792, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 794, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 795, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 796, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 797, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 798, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 799, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 794, - 795, - 796, - 797, - 798, - 799 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 800, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 801, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 802, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 803, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 802, - 803 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 804, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 805, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 806, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 807, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 808, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 809, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 810, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 811, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 812, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 813, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 814, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 815, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 816, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 817, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 818, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 816, - 817, - 818 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 806, - 807, - 808, - 809, - 810, - 811, - 812, - 813, - 814 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 819, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 820, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 821, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 822, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 823, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 824, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 821, - 822, - 823, - 824 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 151, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 825, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 180, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 826, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 827, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "contextmenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 827 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 180, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L180" - } - ] - } - } - }, - { - "id": 828, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 829, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 830, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 831, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 830, - 831 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 792, - 800, - 804, - 819, - 825, - 828 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 791 - ] - } - ], - "sources": [ - { - "fileName": "contextmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/contextmenu/index.d.ts#L1" - } - ] - }, - { - "id": 832, - "name": "themes/table", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DataTable Design Tokens\n\n[Live Demo](https://www.primeng.org/datatable/)" - } - ] - }, - "children": [ - { - "id": 833, - "name": "DataTableDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 834, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 835, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 836, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 837, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 836, - 837 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 838, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 839, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 840, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 841, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 842, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 843, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 844, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 840, - 841, - 842, - 843, - 844 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 845, - "name": "headerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 846, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 847, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 848, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 849, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 850, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 851, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 852, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 853, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 854, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 855, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 856, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of header cell" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 857, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 858, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 859, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 860, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 861, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 862, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.header.cell.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 858, - 859, - 860, - 861, - 862 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 127, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 847, - 848, - 849, - 850, - 851, - 852, - 853, - 854, - 855, - 856 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 69, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 863, - "name": "columnTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column title section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 864, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 865, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 865 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 163, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L163" - } - ] - } - } - }, - { - "id": 866, - "name": "row", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 174, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L174" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 867, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 868, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 869, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 870, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 871, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 872, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 873, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 874, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 214, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L214" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 875, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 876, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 220, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L220" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 877, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 226, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L226" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 878, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 232, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 879, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 238, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 880, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 244, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L244" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 876, - 877, - 878, - 879, - 880 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 214, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L214" - } - ] - } - } - }, - { - "id": 881, - "name": "stripedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Striped background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.striped.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 868, - 869, - 870, - 871, - 872, - 873, - 874, - 881 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 174, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L174" - } - ] - } - } - }, - { - "id": 882, - "name": "bodyCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 256, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L256" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 883, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 884, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 885, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 886, - "name": "selectedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.body.cell.selected.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 884, - 885, - 886 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 256, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L256" - } - ] - } - } - }, - { - "id": 887, - "name": "footerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer cell section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 888, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 889, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 890, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 891, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 892, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 889, - 890, - 891, - 892 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 893, - "name": "columnFooter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column footer section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 308, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 894, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 895, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.footer.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 314, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 895 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 308, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L308" - } - ] - } - } - }, - { - "id": 896, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 319, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L319" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 897, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 898, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 899, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 900, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 901, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 902, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 898, - 899, - 900, - 901, - 902 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 319, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L319" - } - ] - } - } - }, - { - "id": 903, - "name": "dropPointColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the drop point color section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 354, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L354" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 904, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 905, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 906, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 366, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L366" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 907, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 372, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L372" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 908, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 378, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L378" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 909, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 384, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L384" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 910, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 390, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L390" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 911, - "name": "6", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "6 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.6" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 396, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L396" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 912, - "name": "7", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "7 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.7" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 402, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L402" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 913, - "name": "8", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "8 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.8" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 408, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L408" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 914, - "name": "9", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "9 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.9" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 414, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L414" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 915, - "name": "10", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "10 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.10" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 420, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L420" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 916, - "name": "11", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "11 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.11" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 426, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L426" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 917, - "name": "12", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "12 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.12" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 432, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L432" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 918, - "name": "13", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "13 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.13" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 438, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L438" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 919, - "name": "14", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "14 of drop point color" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.drop.point.color.14" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 444, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L444" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 905, - 906, - 907, - 908, - 909, - 910, - 911, - 912, - 913, - 914, - 915, - 916, - 917, - 918, - 919 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 354, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L354" - } - ] - } - } - }, - { - "id": 920, - "name": "columnResizerWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column resizer width section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 449, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L449" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 921, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 922, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 455, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L455" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 923, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 461, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L461" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 924, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 467, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L467" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 925, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 473, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L473" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 926, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 479, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L479" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 927, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.column.resizer.width.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 485, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L485" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 922, - 923, - 924, - 925, - 926, - 927 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 449, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L449" - } - ] - } - } - }, - { - "id": 928, - "name": "resizeIndicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the resize indicator section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 490, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L490" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 929, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 930, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.resize.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 496, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L496" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 931, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.resize.indicator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 502, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L502" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 930, - 931 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 490, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L490" - } - ] - } - } - }, - { - "id": 932, - "name": "sortIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sort icon section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 507, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L507" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 933, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 934, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.sort.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 513, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 935, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.sort.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 519, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L519" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 934, - 935 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 507, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L507" - } - ] - } - } - }, - { - "id": 936, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 524, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L524" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 937, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 938, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 530, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L530" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 938 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 524, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L524" - } - ] - } - } - }, - { - "id": 939, - "name": "rowToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 535, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L535" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 940, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 941, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 541, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L541" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 942, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 547, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L547" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 943, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 553, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L553" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 944, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 559, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L559" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 945, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 565, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L565" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 946, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 571, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L571" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 947, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 577, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L577" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 948, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row toggle button" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 581, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L581" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 949, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 950, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 587, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L587" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 951, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 593, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L593" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 952, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 599, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L599" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 953, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 605, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L605" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 954, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.row.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 611, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L611" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 950, - 951, - 952, - 953, - 954 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 581, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L581" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 941, - 942, - 943, - 944, - 945, - 946, - 947, - 948 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 535, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L535" - } - ] - } - } - }, - { - "id": 955, - "name": "filter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the filter section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 617, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L617" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 956, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 957, - "name": "inlineGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inline gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.inline.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 623, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L623" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 958, - "name": "overlaySelect", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 627, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L627" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 959, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 960, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 633, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L633" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 961, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 639, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L639" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 962, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 645, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L645" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 963, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 651, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L651" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 964, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay select shadow of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.select.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 657, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L657" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 960, - 961, - 962, - 963, - 964 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 627, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L627" - } - ] - } - } - }, - { - "id": 965, - "name": "overlayPopover", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 662, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L662" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 966, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 967, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 668, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L668" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 968, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 674, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L674" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 969, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 680, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L680" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 970, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 686, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L686" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 971, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover shadow of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 692, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L692" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 972, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 698, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L698" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 973, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Overlay popover gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.overlay.popover.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 704, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L704" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 967, - 968, - 969, - 970, - 971, - 972, - 973 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 662, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L662" - } - ] - } - } - }, - { - "id": 974, - "name": "rule", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rule of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 709, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L709" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 975, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 976, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rule border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.rule.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 715, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L715" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 976 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 709, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L709" - } - ] - } - } - }, - { - "id": 977, - "name": "constraintList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 720, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L720" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 978, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 979, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 726, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L726" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 980, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint list gap of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 732, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L732" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 979, - 980 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 720, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L720" - } - ] - } - } - }, - { - "id": 981, - "name": "constraint", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 737, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L737" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 982, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 983, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint focus background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 743, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L743" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 984, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 749, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L749" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 985, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected focus background of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 755, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L755" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 986, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 761, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L761" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 987, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint focus color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 767, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L767" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 988, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 773, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L773" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 989, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint selected focus color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 779, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L779" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 990, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint separator of filter" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 783, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L783" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 991, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 992, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint separator border color of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 789, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L789" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 992 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 783, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L783" - } - ] - } - } - }, - { - "id": 993, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint padding of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 796, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L796" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 994, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Constraint border radius of filter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.filter.constraint.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 802, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L802" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 983, - 984, - 985, - 986, - 987, - 988, - 989, - 990, - 993, - 994 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 737, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L737" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 957, - 958, - 965, - 974, - 977, - 981 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 617, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L617" - } - ] - } - } - }, - { - "id": 995, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 808, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L808" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 996, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 997, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 814, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L814" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 998, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 820, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L820" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 997, - 998 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 808, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L808" - } - ] - } - } - }, - { - "id": 999, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 825, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L825" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1000, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1001, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 831, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L831" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1002, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datatable.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 837, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L837" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1001, - 1002 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 825, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L825" - } - ] - } - } - }, - { - "id": 1003, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1004, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1005, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1006, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1005, - 1006 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 834, - 838, - 845, - 863, - 866, - 882, - 887, - 893, - 896, - 903, - 920, - 928, - 932, - 936, - 939, - 955, - 995, - 999, - 1003 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 833 - ] - } - ], - "sources": [ - { - "fileName": "datatable/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datatable/index.d.ts#L1" - } - ] - }, - { - "id": 1007, - "name": "themes/dataview", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DataView Design Tokens\n\n[Live Demo](https://www.primeng.org/dataview/)" - } - ] - }, - "children": [ - { - "id": 1008, - "name": "DataViewDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1009, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1010, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1011, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1012, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1013, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1014, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1011, - 1012, - 1013, - 1014 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1015, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1016, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1017, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1018, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1019, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1020, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1021, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1022, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1017, - 1018, - 1019, - 1020, - 1021, - 1022 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1023, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1024, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1025, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1026, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1027, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1028, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1029, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1030, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1025, - 1026, - 1027, - 1028, - 1029, - 1030 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 87, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 1031, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 128, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L128" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1032, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1033, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 134, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1034, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 140, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1035, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 146, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1036, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1037, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1038, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.footer.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1033, - 1034, - 1035, - 1036, - 1037, - 1038 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 128, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L128" - } - ] - } - } - }, - { - "id": 1039, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 169, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L169" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1040, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1041, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1042, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1041, - 1042 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 169, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L169" - } - ] - } - } - }, - { - "id": 1043, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 186, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L186" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1044, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1045, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1046, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dataview.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1045, - 1046 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 186, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L186" - } - ] - } - } - }, - { - "id": 1047, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1048, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1049, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1050, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1049, - 1050 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1009, - 1015, - 1023, - 1031, - 1039, - 1043, - 1047 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1008 - ] - } - ], - "sources": [ - { - "fileName": "dataview/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dataview/index.d.ts#L1" - } - ] - }, - { - "id": 1051, - "name": "themes/datepicker", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DatePicker Design Tokens\n\n[Live Demo](https://www.primeng.org/datepicker/)" - } - ] - }, - "children": [ - { - "id": 1052, - "name": "DatePickerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1053, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1054, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1055, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1055 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1056, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1057, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1058, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1059, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1060, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1061, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1062, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1063, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.panel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1058, - 1059, - 1060, - 1061, - 1062, - 1063 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 28, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1064, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1065, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1066, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1067, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1068, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1069, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1070, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1071, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1066, - 1067, - 1068, - 1069, - 1070, - 1071 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 69, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1072, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 110, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L110" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1073, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1074, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.title.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1075, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1074, - 1075 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 110, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L110" - } - ] - } - } - }, - { - "id": 1076, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 127, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1077, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1078, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1079, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1080, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1081, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1082, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1083, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of dropdown" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L161" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1084, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1085, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1086, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1087, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 179, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1088, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 185, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1089, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 191, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1085, - 1086, - 1087, - 1088, - 1089 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 161, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L161" - } - ] - } - } - }, - { - "id": 1090, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1091, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1092, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1093, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1094, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1095, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.dropdown.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1078, - 1079, - 1080, - 1081, - 1082, - 1083, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L127" - } - ] - } - } - }, - { - "id": 1096, - "name": "inputIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the input icon section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1097, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1098, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of input icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.input.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1098 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 1099, - "name": "selectMonth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the select month section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 244, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L244" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1100, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1101, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 250, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L250" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1102, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1103, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1104, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1105, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of select month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.month.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1101, - 1102, - 1103, - 1104, - 1105 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 244, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L244" - } - ] - } - } - }, - { - "id": 1106, - "name": "selectYear", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the select year section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1107, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1108, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1109, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1110, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1111, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1112, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of select year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.select.year.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 309, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L309" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1108, - 1109, - 1110, - 1111, - 1112 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 1113, - "name": "group", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the group section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 314, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L314" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1114, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1115, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.group.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 320, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L320" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1116, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.group.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 326, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L326" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1115, - 1116 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 314, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L314" - } - ] - } - } - }, - { - "id": 1117, - "name": "dayView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the day view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 331, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L331" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1118, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1119, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of day view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.day.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1119 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 331, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L331" - } - ] - } - } - }, - { - "id": 1120, - "name": "weekDay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the week day section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 342, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L342" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1121, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1122, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 348, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L348" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1123, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 354, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L354" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1124, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of week day" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.week.day.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1122, - 1123, - 1124 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 342, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L342" - } - ] - } - } - }, - { - "id": 1125, - "name": "date", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the date section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 365, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L365" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1126, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1127, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 371, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L371" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1128, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 377, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1129, - "name": "rangeSelectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Range selected background of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.range.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 383, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L383" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1130, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 389, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L389" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1131, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 395, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L395" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1132, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 401, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1133, - "name": "rangeSelectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Range selected color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.range.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 407, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1134, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 413, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L413" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1135, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 419, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L419" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1136, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 425, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L425" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1137, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 431, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L431" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1138, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of date" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 435, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L435" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1139, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1140, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 441, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L441" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1141, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 447, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L447" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1142, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 453, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L453" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1143, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 459, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L459" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1144, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of date" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.date.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L465" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1140, - 1141, - 1142, - 1143, - 1144 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 435, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L435" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1127, - 1128, - 1129, - 1130, - 1131, - 1132, - 1133, - 1134, - 1135, - 1136, - 1137, - 1138 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 365, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L365" - } - ] - } - } - }, - { - "id": 1145, - "name": "monthView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the month view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 471, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L471" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1146, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1147, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of month view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.month.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 477, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1147 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 471, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L471" - } - ] - } - } - }, - { - "id": 1148, - "name": "month", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the month section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 482, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L482" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1149, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1150, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of month" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.month.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 488, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L488" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1150 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 482, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L482" - } - ] - } - } - }, - { - "id": 1151, - "name": "yearView", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the year view section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 493, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L493" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1152, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1153, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of year view" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.year.view.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 499, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L499" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1153 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 493, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L493" - } - ] - } - } - }, - { - "id": 1154, - "name": "year", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the year section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 504, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L504" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1156, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of year" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.year.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 510, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L510" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1156 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 504, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L504" - } - ] - } - } - }, - { - "id": 1157, - "name": "buttonbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the buttonbar section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 515, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L515" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1158, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1159, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of buttonbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.buttonbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 521, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L521" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1160, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of buttonbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.buttonbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 527, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L527" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1159, - 1160 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 515, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L515" - } - ] - } - } - }, - { - "id": 1161, - "name": "timePicker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the time picker section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 532, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L532" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1162, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1163, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 538, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L538" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1164, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 544, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L544" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1165, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 550, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L550" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1166, - "name": "buttonGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Button gap of time picker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.time.picker.button.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 556, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L556" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1163, - 1164, - 1165, - 1166 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 532, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L532" - } - ] - } - } - }, - { - "id": 1167, - "name": "today", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the today section" - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 561, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L561" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1168, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1169, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of today" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.today.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 567, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L567" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1170, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of today" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "datepicker.today.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 573, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L573" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1169, - 1170 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 561, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L561" - } - ] - } - } - }, - { - "id": 1171, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1172, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1173, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1174, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1173, - 1174 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1053, - 1056, - 1064, - 1072, - 1076, - 1096, - 1099, - 1106, - 1113, - 1117, - 1120, - 1125, - 1145, - 1148, - 1151, - 1154, - 1157, - 1161, - 1167, - 1171 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1052 - ] - } - ], - "sources": [ - { - "fileName": "datepicker/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/datepicker/index.d.ts#L1" - } - ] - }, - { - "id": 1175, - "name": "themes/dialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Dialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dialog/)" - } - ] - }, - "children": [ - { - "id": 1176, - "name": "DialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1177, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1178, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1179, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1180, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1181, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1182, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1183, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1179, - 1180, - 1181, - 1182, - 1183 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1184, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1185, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1186, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1187, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1186, - 1187 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1188, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1189, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1190, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1191, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1190, - 1191 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1192, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1194, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1194 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 86, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1195, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1196, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1197, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1198, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1197, - 1198 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 97, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1199, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1200, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1201, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1202, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1201, - 1202 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1177, - 1184, - 1188, - 1192, - 1195, - 1199 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1176 - ] - } - ], - "sources": [ - { - "fileName": "dialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dialog/index.d.ts#L1" - } - ] - }, - { - "id": 1203, - "name": "themes/divider", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Divider Design Tokens\n\n[Live Demo](https://www.primeng.org/divider/)" - } - ] - }, - "children": [ - { - "id": 1204, - "name": "DividerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1205, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1206, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1207, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1207 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1208, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1209, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1210, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1211, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1210, - 1211 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1212, - "name": "horizontal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the horizontal section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L45" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1213, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1214, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1215, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1216, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of horizontal" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 61, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L61" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1217, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1218, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.horizontal.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 67, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1218 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 61, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L61" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1214, - 1215, - 1216 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 45, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L45" - } - ] - } - } - }, - { - "id": 1219, - "name": "vertical", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the vertical section" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L73" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1220, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1221, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1222, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 85, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L85" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1223, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of vertical" - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L89" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1224, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1225, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "divider.vertical.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 95, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1225 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 89, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L89" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1221, - 1222, - 1223 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 73, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L73" - } - ] - } - } - }, - { - "id": 1226, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1227, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1228, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1229, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1228, - 1229 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1205, - 1208, - 1212, - 1219, - 1226 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1204 - ] - } - ], - "sources": [ - { - "fileName": "divider/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/divider/index.d.ts#L1" - } - ] - }, - { - "id": 1230, - "name": "themes/dock", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Dock Design Tokens\n\n[Live Demo](https://www.primeng.org/dock/)" - } - ] - }, - "children": [ - { - "id": 1231, - "name": "DockDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1232, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1233, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1234, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1235, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1236, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1237, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1234, - 1235, - 1236, - 1237 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1238, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1239, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1240, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1241, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1242, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1243, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L68" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1244, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1245, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1246, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1247, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1248, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1249, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dock.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1245, - 1246, - 1247, - 1248, - 1249 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 68, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L68" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1240, - 1241, - 1242, - 1243 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1250, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1251, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1252, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1253, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1252, - 1253 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1232, - 1238, - 1250 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1231 - ] - } - ], - "sources": [ - { - "fileName": "dock/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dock/index.d.ts#L1" - } - ] - }, - { - "id": 1254, - "name": "themes/drawer", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Drawer Design Tokens\n\n[Live Demo](https://www.primeng.org/drawer/)" - } - ] - }, - "children": [ - { - "id": 1255, - "name": "DrawerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1256, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1257, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1258, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1259, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1260, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1261, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1262, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1258, - 1259, - 1260, - 1261, - 1262 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1263, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1264, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1265, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1265 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1266, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1267, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1268, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1269, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1268, - 1269 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1270, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 80, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1271, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1272, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "drawer.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1272 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 80, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 1273, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1274, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1275, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1276, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1275, - 1276 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1256, - 1263, - 1266, - 1270, - 1273 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1255 - ] - } - ], - "sources": [ - { - "fileName": "drawer/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/drawer/index.d.ts#L1" - } - ] - }, - { - "id": 1277, - "name": "themes/dynamicdialog", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "DynamicDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dynamicdialog/)" - } - ] - }, - "children": [ - { - "id": 1278, - "name": "DynamicDialogDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1279, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1280, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1281, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1282, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1283, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1284, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1285, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1281, - 1282, - 1283, - 1284, - 1285 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1286, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1287, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1288, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1289, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1288, - 1289 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1290, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1291, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1292, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1293, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1292, - 1293 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 1294, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1295, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1296, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1296 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 86, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1297, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1298, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1299, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1300, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "dialog.footer.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1299, - 1300 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 97, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1301, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1302, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1303, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1304, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1303, - 1304 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1279, - 1286, - 1290, - 1294, - 1297, - 1301 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1278 - ] - } - ], - "sources": [ - { - "fileName": "dynamicdialog/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" - } - ] - }, - { - "id": 1305, - "name": "themes/editor", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Editor Design Tokens\n\n[Live Demo](https://www.primeng.org/editor/)" - } - ] - }, - "children": [ - { - "id": 1306, - "name": "EditorDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1307, - "name": "toolbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1308, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1309, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1310, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1311, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1309, - 1310, - 1311 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 17, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1312, - "name": "toolbarItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar item section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1313, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1314, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1315, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1316, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of toolbar item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.toolbar.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1314, - 1315, - 1316 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 40, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 1317, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1318, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1319, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1320, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1321, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1322, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1323, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1324, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1319, - 1320, - 1321, - 1322, - 1323, - 1324 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 63, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1325, - "name": "overlayOption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay option section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 104, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L104" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1326, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1327, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 110, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1328, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1329, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1330, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 128, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1331, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.overlay.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 134, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1327, - 1328, - 1329, - 1330, - 1331 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 104, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L104" - } - ] - } - } - }, - { - "id": 1332, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 139, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1333, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1334, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1335, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1336, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1337, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "editor.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1334, - 1335, - 1336, - 1337 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 139, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L139" - } - ] - } - } - }, - { - "id": 1338, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1339, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1340, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1341, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1340, - 1341 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1307, - 1312, - 1317, - 1325, - 1332, - 1338 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1306 - ] - } - ], - "sources": [ - { - "fileName": "editor/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/editor/index.d.ts#L1" - } - ] - }, - { - "id": 1342, - "name": "themes/fieldset", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Fieldset Design Tokens\n\n[Live Demo](https://www.primeng.org/fieldset/)" - } - ] - }, - "children": [ - { - "id": 1343, - "name": "FieldsetDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1344, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1345, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1346, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1347, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1348, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1349, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1350, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1351, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1346, - 1347, - 1348, - 1349, - 1350, - 1351 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1352, - "name": "legend", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the legend section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1353, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1354, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1355, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1356, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1357, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1358, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1359, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1360, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1361, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1362, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1363, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1364, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of legend" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L122" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1365, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1366, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1367, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1368, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 140, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1369, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 146, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1370, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of legend" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.legend.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 152, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1366, - 1367, - 1368, - 1369, - 1370 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 122, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L122" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1354, - 1355, - 1356, - 1357, - 1358, - 1359, - 1360, - 1361, - 1362, - 1363, - 1364 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 58, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 1371, - "name": "toggleIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggle icon section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 158, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L158" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1372, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1373, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of toggle icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.toggle.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1374, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of toggle icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.toggle.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 170, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L170" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1373, - 1374 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 158, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L158" - } - ] - } - } - }, - { - "id": 1375, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1376, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1377, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fieldset.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1377 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 175, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 1378, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1379, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1380, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1381, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1380, - 1381 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1344, - 1352, - 1371, - 1375, - 1378 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1343 - ] - } - ], - "sources": [ - { - "fileName": "fieldset/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fieldset/index.d.ts#L1" - } - ] - }, - { - "id": 1382, - "name": "themes/fileupload", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "FileUpload Design Tokens\n\n[Live Demo](https://www.primeng.org/fileupload/)" - } - ] - }, - "children": [ - { - "id": 1383, - "name": "FileUploadDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1384, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1385, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1386, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1387, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1388, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1389, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1390, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1386, - 1387, - 1388, - 1389, - 1390 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1391, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L52" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1393, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1394, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1395, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1396, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1397, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1398, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1393, - 1394, - 1395, - 1396, - 1397, - 1398 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 52, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L52" - } - ] - } - } - }, - { - "id": 1399, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 93, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L93" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1400, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1401, - "name": "highlightBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Highlight border color of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.content.highlight.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1402, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1401, - 1402 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 93, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L93" - } - ] - } - } - }, - { - "id": 1403, - "name": "file", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the file section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 110, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L110" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1404, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1405, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1406, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 122, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1407, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 128, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1408, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info of file" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L132" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1409, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1410, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Info gap of file" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.file.info.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1410 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 132, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L132" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1405, - 1406, - 1407, - 1408 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 110, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L110" - } - ] - } - } - }, - { - "id": 1411, - "name": "progressbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the progressbar section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 144, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L144" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1412, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1413, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of progressbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.progressbar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1413 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 144, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L144" - } - ] - } - } - }, - { - "id": 1414, - "name": "basic", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the basic section" - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1415, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1416, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of basic" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "fileupload.basic.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1416 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 1417, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1418, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1419, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1420, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1419, - 1420 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1384, - 1391, - 1399, - 1403, - 1411, - 1414, - 1417 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1383 - ] - } - ], - "sources": [ - { - "fileName": "fileupload/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/fileupload/index.d.ts#L1" - } - ] - }, - { - "id": 1421, - "name": "themes/floatlabel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "FloatLabel Design Tokens\n\n[Live Demo](https://www.primeng.org/floatlabel/)" - } - ] - }, - "children": [ - { - "id": 1422, - "name": "FloatLabelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1423, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1424, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1425, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1426, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1427, - "name": "invalidColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.invalid.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1428, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "floatlabel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1425, - 1426, - 1427, - 1428 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1429, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1431, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1432, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1431, - 1432 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1423, - 1429 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1422 - ] - } - ], - "sources": [ - { - "fileName": "floatlabel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/floatlabel/index.d.ts#L1" - } - ] - }, - { - "id": 1433, - "name": "themes/galleria", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Galleria Design Tokens\n\n[Live Demo](https://www.primeng.org/galleria/)" - } - ] - }, - "children": [ - { - "id": 1434, - "name": "GalleriaDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1435, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1436, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1437, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1438, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1439, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1440, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1437, - 1438, - 1439, - 1440 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1441, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1442, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1443, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1444, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1446, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1447, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1448, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1449, - "name": "prev", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Prev of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1450, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1451, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Prev border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.prev.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 92, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1451 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 86, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1452, - "name": "next", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Next of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1453, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1454, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Next border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.next.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1454 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 97, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L97" - } - ] - } - } - }, - { - "id": 1455, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L108" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1456, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1457, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1458, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1459, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1460, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 132, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1461, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 138, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1457, - 1458, - 1459, - 1460, - 1461 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 108, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L108" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1443, - 1444, - 1445, - 1446, - 1447, - 1448, - 1449, - 1452, - 1455 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 46, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 1462, - "name": "navIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 144, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L144" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1463, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1464, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of nav icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.nav.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1464 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 144, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L144" - } - ] - } - } - }, - { - "id": 1465, - "name": "thumbnailsContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnails content section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1466, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1467, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of thumbnails content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnails.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1468, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of thumbnails content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnails.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1467, - 1468 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 155, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 1469, - "name": "thumbnailNavButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnail nav button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 172, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L172" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1470, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1471, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 178, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L178" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1472, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1473, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1474, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of thumbnail nav button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L194" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1475, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1476, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 200, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1477, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 206, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1478, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 212, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1479, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 218, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L218" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1480, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 224, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L224" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1476, - 1477, - 1478, - 1479, - 1480 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 194, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L194" - } - ] - } - } - }, - { - "id": 1481, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 237, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L237" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1483, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of thumbnail nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 243, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1471, - 1472, - 1473, - 1474, - 1481, - 1482, - 1483 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 172, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L172" - } - ] - } - } - }, - { - "id": 1484, - "name": "thumbnailNavButtonIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the thumbnail nav button icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 248, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L248" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1485, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1486, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of thumbnail nav button icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.thumbnail.nav.button.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 254, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L254" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1486 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 248, - "character": 29, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L248" - } - ] - } - } - }, - { - "id": 1487, - "name": "caption", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the caption section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 259, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L259" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1488, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1489, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 265, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L265" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1490, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 271, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L271" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1491, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of caption" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.caption.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 277, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L277" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1489, - 1490, - 1491 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 259, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L259" - } - ] - } - } - }, - { - "id": 1492, - "name": "indicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 282, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L282" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1493, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1494, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 288, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L288" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1495, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 294, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L294" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1494, - 1495 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 282, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L282" - } - ] - } - } - }, - { - "id": 1496, - "name": "indicatorButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the indicator button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 299, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L299" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1497, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1498, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 305, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L305" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1499, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 311, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L311" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1500, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 317, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L317" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1501, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 323, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L323" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1502, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of indicator button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1503, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1504, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 333, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1505, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 339, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L339" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1506, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 345, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L345" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1507, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L351" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1508, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 357, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1504, - 1505, - 1506, - 1507, - 1508 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 327, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 1509, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 364, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1510, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.indicator.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 370, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1498, - 1499, - 1500, - 1501, - 1502, - 1509, - 1510 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 299, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L299" - } - ] - } - } - }, - { - "id": 1511, - "name": "insetIndicatorList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the inset indicator list section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 375, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L375" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1512, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1513, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of inset indicator list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.list.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 381, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L381" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1513 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 375, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L375" - } - ] - } - } - }, - { - "id": 1514, - "name": "insetIndicatorButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the inset indicator button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 386, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L386" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1515, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1516, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 392, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L392" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1517, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 398, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L398" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1518, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of inset indicator button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.inset.indicator.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 404, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L404" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1516, - 1517, - 1518 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 386, - "character": 27, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L386" - } - ] - } - } - }, - { - "id": 1519, - "name": "mask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mask section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 409, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L409" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1520, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1521, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 415, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L415" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1522, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 421, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L421" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1521, - 1522 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 409, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L409" - } - ] - } - } - }, - { - "id": 1523, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 426, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L426" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1525, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 432, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L432" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1526, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 438, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L438" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1527, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 444, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L444" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1528, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 450, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L450" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1529, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 456, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L456" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1530, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 462, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L462" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1531, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 468, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L468" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1532, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 472, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L472" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1533, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1534, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 478, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L478" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1535, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 484, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L484" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1536, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 490, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L490" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1537, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 496, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L496" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1538, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 502, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L502" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1534, - 1535, - 1536, - 1537, - 1538 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 472, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L472" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1525, - 1526, - 1527, - 1528, - 1529, - 1530, - 1531, - 1532 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 426, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L426" - } - ] - } - } - }, - { - "id": 1539, - "name": "closeButtonIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button icon section" - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 508, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L508" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1541, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close button icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "galleria.close.button.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 514, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L514" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1541 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 508, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L508" - } - ] - } - } - }, - { - "id": 1542, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1543, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1544, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1545, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1544, - 1545 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1435, - 1441, - 1462, - 1465, - 1469, - 1484, - 1487, - 1492, - 1496, - 1511, - 1514, - 1519, - 1523, - 1539, - 1542 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1434 - ] - } - ], - "sources": [ - { - "fileName": "galleria/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/galleria/index.d.ts#L1" - } - ] - }, - { - "id": 1546, - "name": "themes/iconfield", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "IconField Design Tokens\n\n[Live Demo](https://www.primeng.org/iconfield/)" - } - ] - }, - "children": [ - { - "id": 1547, - "name": "IconFieldDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1548, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1549, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1550, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "iconfield.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1550 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1551, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1552, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1553, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1554, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1553, - 1554 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1548, - 1551 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1547 - ] - } - ], - "sources": [ - { - "fileName": "iconfield/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/iconfield/index.d.ts#L1" - } - ] - }, - { - "id": 1555, - "name": "themes/image", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Image Design Tokens\n\n[Live Demo](https://www.primeng.org/image/)" - } - ] - }, - "children": [ - { - "id": 1556, - "name": "ImageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1557, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1558, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1559, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1559 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1560, - "name": "preview", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the preview section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1561, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1562, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of preview" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L32" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1563, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1564, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 38, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L38" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1564 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 32, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L32" - } - ] - } - } - }, - { - "id": 1565, - "name": "mask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask of preview" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 43, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L43" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1566, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1567, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask background of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 49, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L49" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1568, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mask color of preview" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.preview.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 55, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L55" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1567, - 1568 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 43, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L43" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1562, - 1565 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 1569, - "name": "toolbar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toolbar section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 61, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L61" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1570, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1571, - "name": "position", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position of toolbar" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L65" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1572, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1573, - "name": "left", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position left of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.left" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 71, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1574, - "name": "right", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position right of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.right" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 77, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1575, - "name": "top", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position top of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.top" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 83, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1576, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Position bottom of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.position.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 89, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1573, - 1574, - 1575, - 1576 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 65, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L65" - } - ] - } - } - }, - { - "id": 1577, - "name": "blur", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Blur of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.blur" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1578, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 102, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1579, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1580, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 114, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1581, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1582, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1583, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of toolbar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.toolbar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1571, - 1577, - 1578, - 1579, - 1580, - 1581, - 1582, - 1583 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 61, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L61" - } - ] - } - } - }, - { - "id": 1584, - "name": "action", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the action section" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 137, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L137" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1585, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1586, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 143, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1587, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1588, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1589, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1590, - "name": "iconSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon size of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1591, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1592, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of action" - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L177" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1593, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1594, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 183, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1595, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 189, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1596, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 195, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1597, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 201, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1598, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of action" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "image.action.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 207, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1594, - 1595, - 1596, - 1597, - 1598 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 177, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L177" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1586, - 1587, - 1588, - 1589, - 1590, - 1591, - 1592 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 137, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L137" - } - ] - } - } - }, - { - "id": 1599, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1600, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1601, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1602, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1601, - 1602 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1557, - 1560, - 1569, - 1584, - 1599 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1556 - ] - } - ], - "sources": [ - { - "fileName": "image/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/image/index.d.ts#L1" - } - ] - }, - { - "id": 1603, - "name": "themes", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[Live Demo](https://www.primeng.org/)" - } - ] - }, - "children": [ - { - "id": 1604, - "name": "ColorSchemeDesignToken", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1605, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1606, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1607, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1609, - "name": "T", - "package": "primeng", - "qualifiedName": "ColorSchemeDesignToken.T", - "refersToTypeParameter": true - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1608, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1609, - "name": "T", - "package": "primeng", - "qualifiedName": "ColorSchemeDesignToken.T", - "refersToTypeParameter": true - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1607, - 1608 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1605 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 8, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L8" - } - ], - "typeParameters": [ - { - "id": 1609, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 2, - "name": "AccordionDesignTokens" - }, - { - "type": "reference", - "target": 57, - "name": "AutoCompleteDesignTokens" - }, - { - "type": "reference", - "target": 142, - "name": "AvatarDesignTokens" - }, - { - "type": "reference", - "target": 169, - "name": "BadgeDesignTokens" - }, - { - "type": "reference", - "target": 229, - "name": "BlockUIDesignTokens" - }, - { - "type": "reference", - "target": 238, - "name": "BreadcrumbDesignTokens" - }, - { - "type": "reference", - "target": 270, - "name": "ButtonDesignTokens" - }, - { - "type": "reference", - "target": 528, - "name": "CardDesignTokens" - }, - { - "type": "reference", - "target": 554, - "name": "CarouselDesignTokens" - }, - { - "type": "reference", - "target": 585, - "name": "CascadeSelectDesignTokens" - }, - { - "type": "reference", - "target": 647, - "name": "CheckboxDesignTokens" - }, - { - "type": "reference", - "target": 687, - "name": "ChipDesignTokens" - }, - { - "type": "reference", - "target": 721, - "name": "ColorPickerDesignTokens" - }, - { - "type": "reference", - "target": 751, - "name": "ConfirmDialogDesignTokens" - }, - { - "type": "reference", - "target": 764, - "name": "ConfirmPopupDesignTokens" - }, - { - "type": "reference", - "target": 791, - "name": "ContextMenuDesignTokens" - }, - { - "type": "reference", - "target": 833, - "name": "DataTableDesignTokens" - }, - { - "type": "reference", - "target": 1008, - "name": "DataViewDesignTokens" - }, - { - "type": "reference", - "target": 1052, - "name": "DatePickerDesignTokens" - }, - { - "type": "reference", - "target": 1176, - "name": "DialogDesignTokens" - }, - { - "type": "reference", - "target": 1204, - "name": "DividerDesignTokens" - }, - { - "type": "reference", - "target": 1231, - "name": "DockDesignTokens" - }, - { - "type": "reference", - "target": 1255, - "name": "DrawerDesignTokens" - }, - { - "type": "reference", - "target": 1278, - "name": "DynamicDialogDesignTokens" - }, - { - "type": "reference", - "target": 1306, - "name": "EditorDesignTokens" - }, - { - "type": "reference", - "target": 1343, - "name": "FieldsetDesignTokens" - }, - { - "type": "reference", - "target": 1383, - "name": "FileUploadDesignTokens" - }, - { - "type": "reference", - "target": 1422, - "name": "FloatLabelDesignTokens" - }, - { - "type": "reference", - "target": 1434, - "name": "GalleriaDesignTokens" - }, - { - "type": "reference", - "target": 1547, - "name": "IconFieldDesignTokens" - }, - { - "type": "reference", - "target": 1556, - "name": "ImageDesignTokens" - }, - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens" - }, - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens" - }, - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens" - }, - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens" - }, - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens" - }, - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens" - }, - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens" - }, - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens" - }, - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens" - }, - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens" - }, - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens" - }, - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens" - }, - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens" - }, - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens" - }, - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens" - }, - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens" - }, - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens" - }, - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens" - }, - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens" - }, - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens" - }, - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens" - }, - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens" - }, - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens" - }, - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens" - }, - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens" - }, - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens" - }, - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens" - }, - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens" - }, - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens" - }, - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens" - }, - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens" - }, - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens" - }, - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens" - }, - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens" - }, - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens" - }, - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens" - }, - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens" - }, - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens" - }, - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens" - }, - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens" - }, - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens" - }, - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens" - }, - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens" - }, - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens" - }, - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens" - }, - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens" - }, - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens" - }, - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens" - }, - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens" - }, - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens" - }, - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens" - }, - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens" - }, - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens" - }, - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens" - }, - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens" - } - ] - }, - { - "id": 1610, - "name": "PaletteDesignToken", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1611, - "name": "50", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 16, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L16" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1612, - "name": "100", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L17" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1613, - "name": "200", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 18, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L18" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1614, - "name": "300", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 19, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L19" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1615, - "name": "400", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 20, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L20" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1616, - "name": "500", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 21, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L21" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1617, - "name": "600", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 22, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L22" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1618, - "name": "700", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 23, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1619, - "name": "800", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 24, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L24" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1620, - "name": "900", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 25, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L25" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1621, - "name": "950", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 26, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L26" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1611, - 1612, - 1613, - 1614, - 1615, - 1616, - 1617, - 1618, - 1619, - 1620, - 1621 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 15, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L15" - } - ] - }, - { - "id": 1622, - "name": "PrimitiveDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1623, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 30, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L30" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1624, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1625, - "name": "none", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 31, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L31" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1626, - "name": "xs", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L32" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1627, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 33, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1628, - "name": "md", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1629, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1630, - "name": "xl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 36, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L36" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1625, - 1626, - 1627, - 1628, - 1629, - 1630 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 30, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L30" - } - ] - } - } - }, - { - "id": 1631, - "name": "emerald", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 38, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L38" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1632, - "name": "green", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L39" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1633, - "name": "lime", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L40" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1634, - "name": "red", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 41, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L41" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1635, - "name": "orange", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 42, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L42" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1636, - "name": "amber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 43, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L43" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1637, - "name": "yellow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 44, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L44" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1638, - "name": "teal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L45" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1639, - "name": "cyan", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L46" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1640, - "name": "sky", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 47, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L47" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1641, - "name": "blue", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 48, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L48" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1642, - "name": "indigo", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 49, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L49" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1643, - "name": "violet", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 50, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L50" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1644, - "name": "purple", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L51" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1645, - "name": "fuchsia", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 52, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L52" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1646, - "name": "pink", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 53, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L53" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1647, - "name": "rose", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 54, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L54" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1648, - "name": "slate", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 55, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L55" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1649, - "name": "gray", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 56, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L56" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1650, - "name": "zinc", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L57" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1651, - "name": "neutral", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L58" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1652, - "name": "stone", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 59, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L59" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1623, - 1631, - 1632, - 1633, - 1634, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1641, - 1642, - 1643, - 1644, - 1645, - 1646, - 1647, - 1648, - 1649, - 1650, - 1651, - 1652 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 29, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L29" - } - ], - "indexSignature": { - "id": 1653, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 60, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L60" - } - ], - "parameters": [ - { - "id": 1654, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 1655, - "name": "SemanticDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1656, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1657, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 65, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L65" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1658, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1659, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 66, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L66" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1660, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 67, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1661, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1662, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1663, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1659, - 1660, - 1661, - 1662, - 1663 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 65, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L65" - } - ] - } - } - }, - { - "id": 1664, - "name": "iconSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 72, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L72" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1665, - "name": "anchorGutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L73" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1666, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L74" - } - ], - "type": { - "type": "reference", - "target": 1610, - "name": "PaletteDesignToken", - "package": "primeng" - } - }, - { - "id": 1667, - "name": "formField", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1668, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1669, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1670, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1671, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L78" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1672, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L79" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1673, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1674, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1675, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1676, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 82, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1677, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 83, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1678, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 84, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1674, - 1675, - 1676, - 1677, - 1678 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 79, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L79" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1669, - 1670, - 1671, - 1672 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 75, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L75" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1656, - 1657, - 1664, - 1665, - 1666, - 1667 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 63, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L63" - } - ], - "indexSignature": { - "id": 1679, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "index.d.ts", - "line": 88, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L88" - } - ], - "parameters": [ - { - "id": 1680, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1604, - 1610, - 1622, - 1655 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L1" - } - ] - }, - { - "id": 1681, - "name": "themes/inlinemessage", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InlineMessage Design Tokens\n\n[Live Demo](https://www.primeng.org/inlinemessage/)" - } - ] - }, - "children": [ - { - "id": 1682, - "name": "InlineMessageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1730, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1731, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1732, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1733, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1732, - 1733 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1683, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1684, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1685, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1686, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1687, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1685, - 1686, - 1687 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1688, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1689, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1690, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.text.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1690 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 40, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 1691, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1692, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1693, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1693 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 51, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 1694, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1695, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1696, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1697, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1698, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1699, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1696, - 1697, - 1698, - 1699 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 62, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" - } - ] - } - } - }, - { - "id": 1700, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1701, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1702, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1703, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1704, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1705, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1702, - 1703, - 1704, - 1705 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 91, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 1706, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1707, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1708, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1709, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1710, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1711, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1708, - 1709, - 1710, - 1711 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 120, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 1712, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 149, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1713, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1714, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1715, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1716, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1717, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1714, - 1715, - 1716, - 1717 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 149, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" - } - ] - } - } - }, - { - "id": 1718, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 178, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1719, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1720, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1721, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1722, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 196, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L196" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1723, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 202, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L202" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1720, - 1721, - 1722, - 1723 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 178, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" - } - ] - } - } - }, - { - "id": 1724, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 207, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1725, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1726, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 213, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L213" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1727, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 219, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L219" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1728, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 225, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L225" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1729, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inlinemessage.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 231, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L231" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1726, - 1727, - 1728, - 1729 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 207, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1730, - 1683, - 1688, - 1691, - 1694, - 1700, - 1706, - 1712, - 1718, - 1724 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1682, - "name": "InlineMessageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1682 - ] - } - ], - "sources": [ - { - "fileName": "inlinemessage/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inlinemessage/index.d.ts#L1" - } - ] - }, - { - "id": 1734, - "name": "themes/inplace", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inplace Design Tokens\n\n[Live Demo](https://www.primeng.org/inplace/)" - } - ] - }, - "children": [ - { - "id": 1735, - "name": "InplaceDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1752, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1753, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1754, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1755, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1754, - 1755 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1736, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1738, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1739, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1740, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 33, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L33" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1741, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1742, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 39, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L39" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1743, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 45, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1744, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1745, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1746, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1742, - 1743, - 1744, - 1745, - 1746 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 33, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L33" - } - ] - } - } - }, - { - "id": 1747, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1738, - 1739, - 1740, - 1747 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1748, - "name": "display", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the display section" - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1749, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1750, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of display" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.display.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1751, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of display" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inplace.display.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1750, - 1751 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 75, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L75" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1752, - 1736, - 1748 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1735, - "name": "InplaceDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1735 - ] - } - ], - "sources": [ - { - "fileName": "inplace/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inplace/index.d.ts#L1" - } - ] - }, - { - "id": 1756, - "name": "themes/inputchips", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputChips Design Tokens\n\n[Live Demo](https://www.primeng.org/inputchips/)" - } - ] - }, - "children": [ - { - "id": 1757, - "name": "InputChipsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1788, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1789, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1790, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1791, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1790, - 1791 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1758, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1759, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1760, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1761, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1762, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1763, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1764, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1765, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1766, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1767, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1768, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1769, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1770, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1771, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1772, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1773, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1774, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1775, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1776, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1777, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1778, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1779, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1780, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1781, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1777, - 1778, - 1779, - 1780, - 1781 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 1782, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1760, - 1761, - 1762, - 1763, - 1764, - 1765, - 1766, - 1767, - 1768, - 1769, - 1770, - 1771, - 1772, - 1773, - 1774, - 1775, - 1782 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1783, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1784, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1785, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1786, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1787, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputchips.chip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1785, - 1786, - 1787 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 153, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L153" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1788, - 1758, - 1783 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1757, - "name": "InputChipsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1757 - ] - } - ], - "sources": [ - { - "fileName": "inputchips/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputchips/index.d.ts#L1" - } - ] - }, - { - "id": 1792, - "name": "themes/inputgroup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/inputgroup/)" - } - ] - }, - "children": [ - { - "id": 1793, - "name": "InputGroupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1800, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1801, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1802, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1803, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1802, - 1803 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1794, - "name": "addon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the addon section" - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1795, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1796, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1797, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1798, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1799, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of addon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputgroup.addon.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1796, - 1797, - 1798, - 1799 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1800, - 1794 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1793, - "name": "InputGroupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1793 - ] - } - ], - "sources": [ - { - "fileName": "inputgroup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputgroup/index.d.ts#L1" - } - ] - }, - { - "id": 1804, - "name": "themes/inputnumber", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputNumber Design Tokens\n\n[Live Demo](https://www.primeng.org/inputnumber/)" - } - ] - }, - "children": [ - { - "id": 1805, - "name": "InputNumberDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1823, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1824, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1825, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1826, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1825, - 1826 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1806, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1807, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1808, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1808 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1809, - "name": "button", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the button section" - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1810, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1811, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1812, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1813, - "name": "verticalPadding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical padding of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.vertical.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1814, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1815, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1816, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1817, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1818, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1819, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1820, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1821, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1822, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputnumber.button.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1811, - 1812, - 1813, - 1814, - 1815, - 1816, - 1817, - 1818, - 1819, - 1820, - 1821, - 1822 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 28, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1823, - 1806, - 1809 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1805, - "name": "InputNumberDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1805 - ] - } - ], - "sources": [ - { - "fileName": "inputnumber/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputnumber/index.d.ts#L1" - } - ] - }, - { - "id": 1827, - "name": "themes/inputtext", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "InputText Design Tokens\n\n[Live Demo](https://www.primeng.org/inputtext/)" - } - ] - }, - "children": [ - { - "id": 1828, - "name": "InputTextDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1864, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1865, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1866, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1867, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1866, - 1867 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1829, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1830, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1831, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1832, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1833, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1834, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1835, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1836, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1837, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1838, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1839, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1840, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1841, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1842, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1843, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1844, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1845, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1846, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1847, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1848, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1849, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1850, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1851, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1852, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1848, - 1849, - 1850, - 1851, - 1852 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 1853, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1854, - "name": "sm", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L152" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1855, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1856, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 158, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1857, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 164, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1858, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Sm padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.sm.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 170, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L170" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1856, - 1857, - 1858 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 152, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L152" - } - ] - } - } - }, - { - "id": 1859, - "name": "lg", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg of root" - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1860, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1861, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 181, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1862, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 187, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1863, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lg padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "inputtext.lg.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 193, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1861, - 1862, - 1863 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 175, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L175" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1831, - 1832, - 1833, - 1834, - 1835, - 1836, - 1837, - 1838, - 1839, - 1840, - 1841, - 1842, - 1843, - 1844, - 1845, - 1846, - 1853, - 1854, - 1859 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1864, - 1829 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1828, - "name": "InputTextDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1828 - ] - } - ], - "sources": [ - { - "fileName": "inputtext/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/inputtext/index.d.ts#L1" - } - ] - }, - { - "id": 1868, - "name": "themes/knob", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Knob Design Tokens\n\n[Live Demo](https://www.primeng.org/knob/)" - } - ] - }, - "children": [ - { - "id": 1869, - "name": "KnobDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1889, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1890, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1891, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1892, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1891, - 1892 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1870, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1871, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1872, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1873, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 27, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L27" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1874, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1875, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 33, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1876, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 39, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L39" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1877, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 45, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1878, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1879, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1875, - 1876, - 1877, - 1878, - 1879 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 27, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L27" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1872, - 1873 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1880, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the value section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 63, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L63" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1881, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1882, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of value" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.value.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1882 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L63" - } - ] - } - } - }, - { - "id": 1883, - "name": "range", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the range section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1885, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of range" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.range.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1885 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 1886, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1887, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1888, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "knob.text.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1888 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 85, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L85" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1889, - 1870, - 1880, - 1883, - 1886 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1869, - "name": "KnobDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1869 - ] - } - ], - "sources": [ - { - "fileName": "knob/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/knob/index.d.ts#L1" - } - ] - }, - { - "id": 1893, - "name": "themes/listbox", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listbox Design Tokens\n\n[Live Demo](https://www.primeng.org/listbox/)" - } - ] - }, - "children": [ - { - "id": 1894, - "name": "ListboxDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 1948, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1949, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1950, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 1951, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1950, - 1951 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1895, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1896, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1897, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1898, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1899, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1900, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1901, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1902, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1903, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1904, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1905, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1906, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1907, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1908, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1909, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 87, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1910, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 93, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1911, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 99, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1912, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 105, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1913, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 111, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1909, - 1910, - 1911, - 1912, - 1913 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 81, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 1914, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1897, - 1898, - 1899, - 1900, - 1901, - 1902, - 1903, - 1904, - 1905, - 1906, - 1907, - 1914 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1915, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 123, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L123" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1916, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1917, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1918, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1919, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1920, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1921, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1921 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 139, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1917, - 1918, - 1919 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 123, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L123" - } - ] - } - } - }, - { - "id": 1922, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1923, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1924, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1925, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1926, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1927, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1928, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1929, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1930, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1931, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1932, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1933, - "name": "stripedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Striped background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.striped.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1924, - 1925, - 1926, - 1927, - 1928, - 1929, - 1930, - 1931, - 1932, - 1933 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 151, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 1934, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 216, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L216" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1935, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1936, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1937, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1938, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 234, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L234" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1939, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 240, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L240" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1936, - 1937, - 1938, - 1939 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 216, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L216" - } - ] - } - } - }, - { - "id": 1940, - "name": "checkmark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the checkmark section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 245, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L245" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1941, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1942, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1943, - "name": "gutterStart", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter start of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.gutter.start" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1944, - "name": "gutterEnd", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter end of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.checkmark.gutter.end" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1942, - 1943, - 1944 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 245, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L245" - } - ] - } - } - }, - { - "id": 1945, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 268, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L268" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1946, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1947, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "listbox.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1947 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 268, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L268" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1948, - 1895, - 1915, - 1922, - 1934, - 1940, - 1945 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1894, - "name": "ListboxDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1894 - ] - } - ], - "sources": [ - { - "fileName": "listbox/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/listbox/index.d.ts#L1" - } - ] - }, - { - "id": 1952, - "name": "themes/megamenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MegaMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/megamenu/)" - } - ] - }, - "children": [ - { - "id": 1953, - "name": "MegaMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2030, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2031, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2032, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2033, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2032, - 2033 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 1954, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1955, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1956, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1957, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1958, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1959, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1960, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1961, - "name": "verticalOrientation", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation of root" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1962, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1963, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.vertical.orientation.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1964, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical orientation gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.vertical.orientation.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1963, - 1964 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 51, - "character": 30, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 1965, - "name": "horizontalOrientation", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal orientation of root" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L68" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1966, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1967, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal orientation padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.horizontal.orientation.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1967 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 68, - "character": 32, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L68" - } - ] - } - } - }, - { - "id": 1968, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1956, - 1957, - 1958, - 1959, - 1960, - 1961, - 1965, - 1968 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 1969, - "name": "baseItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the base item section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1970, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1971, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.base.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1972, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.base.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1971, - 1972 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 86, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 1973, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1974, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1975, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1976, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1977, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1978, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1979, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1980, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1981, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1982, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1983, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 155, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1984, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1985, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1986, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 167, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1987, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 173, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1985, - 1986, - 1987 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 155, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L155" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1975, - 1976, - 1977, - 1978, - 1979, - 1980, - 1981, - 1982, - 1983 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 103, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 1988, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 179, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L179" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1989, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1990, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 185, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1991, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 191, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1992, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1993, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 203, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1994, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 209, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1995, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1996, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.overlay.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1990, - 1991, - 1992, - 1993, - 1994, - 1995, - 1996 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 179, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L179" - } - ] - } - } - }, - { - "id": 1997, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 226, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L226" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1998, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1999, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 232, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2000, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 238, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 1999, - 2000 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 226, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L226" - } - ] - } - } - }, - { - "id": 2001, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 243, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L243" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2002, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2003, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 249, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2004, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 255, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2005, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 261, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2006, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 267, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2003, - 2004, - 2005, - 2006 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 243, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L243" - } - ] - } - } - }, - { - "id": 2007, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 272, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L272" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2008, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2009, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 278, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L278" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2010, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 284, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L284" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2011, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 290, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2012, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 296, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L296" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2009, - 2010, - 2011, - 2012 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 272, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L272" - } - ] - } - } - }, - { - "id": 2013, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 301, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L301" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2014, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2015, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 307, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L307" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2015 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 301, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L301" - } - ] - } - } - }, - { - "id": 2016, - "name": "mobileButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mobile button section" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 312, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L312" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2017, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2018, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 318, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L318" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2019, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 324, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L324" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2020, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 330, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L330" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2021, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 336, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L336" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2022, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 342, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L342" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2023, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of mobile button" - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 346, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L346" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2024, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2025, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 352, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L352" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2026, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 358, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L358" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2027, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 364, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L364" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2028, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 370, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L370" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2029, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "megamenu.mobile.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 376, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2025, - 2026, - 2027, - 2028, - 2029 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 346, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L346" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 312, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L312" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2030, - 1954, - 1969, - 1973, - 1988, - 1997, - 2001, - 2007, - 2013, - 2016 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 1953, - "name": "MegaMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 1953 - ] - } - ], - "sources": [ - { - "fileName": "megamenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/megamenu/index.d.ts#L1" - } - ] - }, - { - "id": 2034, - "name": "themes/menu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Menu Design Tokens\n\n[Live Demo](https://www.primeng.org/menu/)" - } - ] - }, - "children": [ - { - "id": 2035, - "name": "MenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2069, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2070, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2071, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2072, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2071, - 2072 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2036, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2037, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2038, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2039, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2040, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2041, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2042, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2043, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2038, - 2039, - 2040, - 2041, - 2042, - 2043 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2044, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2045, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2046, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2047, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2046, - 2047 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 2048, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2049, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2050, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2051, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2052, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2053, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2054, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2055, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2056, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L115" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2057, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2058, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 121, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2059, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 127, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2058, - 2059 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 115, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L115" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2050, - 2051, - 2052, - 2053, - 2054, - 2055, - 2056 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 2060, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 133, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L133" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2061, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2062, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2063, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2064, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 151, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2065, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2062, - 2063, - 2064, - 2065 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 133, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L133" - } - ] - } - } - }, - { - "id": 2066, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 162, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L162" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2067, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2068, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2068 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 162, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L162" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2069, - 2036, - 2044, - 2048, - 2060, - 2066 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2035, - "name": "MenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2035 - ] - } - ], - "sources": [ - { - "fileName": "menu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menu/index.d.ts#L1" - } - ] - }, - { - "id": 2073, - "name": "themes/menubar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Menubar Design Tokens\n\n[Live Demo](https://www.primeng.org/menubar/)" - } - ] - }, - "children": [ - { - "id": 2074, - "name": "MenubarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2135, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2136, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2137, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2138, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2137, - 2138 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2075, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2076, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2077, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2078, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2079, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2080, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2081, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2082, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2083, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2077, - 2078, - 2079, - 2080, - 2081, - 2082, - 2083 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2084, - "name": "baseItem", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the base item section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2085, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2086, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.base.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2087, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of base item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.base.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2086, - 2087 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 64, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L64" - } - ] - } - } - }, - { - "id": 2088, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 81, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L81" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2089, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2090, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2091, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2092, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2093, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2094, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2095, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2096, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2097, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2098, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L133" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2099, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2100, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2101, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2102, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2100, - 2101, - 2102 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 133, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L133" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2090, - 2091, - 2092, - 2093, - 2094, - 2095, - 2096, - 2097, - 2098 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 81, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L81" - } - ] - } - } - }, - { - "id": 2103, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 157, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L157" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2104, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2105, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2106, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2107, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2108, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2109, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2110, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2111, - "name": "mobileIndent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Mobile indent of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.mobile.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2105, - 2106, - 2107, - 2108, - 2109, - 2110, - 2111 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 157, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L157" - } - ] - } - } - }, - { - "id": 2112, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 204, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L204" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2113, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2114, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2115, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2116, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2117, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 228, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L228" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2114, - 2115, - 2116, - 2117 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 204, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L204" - } - ] - } - } - }, - { - "id": 2118, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2119, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2120, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2120 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2121, - "name": "mobileButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mobile button section" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 244, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L244" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2122, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2123, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 250, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L250" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2124, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2125, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2126, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2127, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2128, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of mobile button" - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 278, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L278" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2129, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2130, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 284, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L284" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2131, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 290, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2132, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 296, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L296" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2133, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 302, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L302" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2134, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of mobile button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "menubar.mobile.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 308, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L308" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2130, - 2131, - 2132, - 2133, - 2134 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 278, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L278" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2123, - 2124, - 2125, - 2126, - 2127, - 2128 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 244, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L244" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2135, - 2075, - 2084, - 2088, - 2103, - 2112, - 2118, - 2121 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2074, - "name": "MenubarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2074 - ] - } - ], - "sources": [ - { - "fileName": "menubar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/menubar/index.d.ts#L1" - } - ] - }, - { - "id": 2139, - "name": "themes/message", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Message Design Tokens\n\n[Live Demo](https://www.primeng.org/message/)" - } - ] - }, - "children": [ - { - "id": 2140, - "name": "MessageDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2248, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2249, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2250, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2251, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2250, - 2251 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2141, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2142, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2143, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2144, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2145, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2143, - 2144, - 2145 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2146, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2147, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2148, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2149, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2148, - 2149 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 40, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2150, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2152, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.text.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2153, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.text.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2152, - 2153 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 57, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 2154, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2156, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2156 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 74, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2157, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2158, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2159, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2160, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2161, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2162, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L107" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2163, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2164, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 113, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2165, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 119, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L119" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2166, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 125, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L125" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2164, - 2165, - 2166 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 107, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L107" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2159, - 2160, - 2161, - 2162 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 85, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L85" - } - ] - } - } - }, - { - "id": 2167, - "name": "closeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close icon section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 131, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L131" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2168, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2169, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.close.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 137, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2169 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 131, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L131" - } - ] - } - } - }, - { - "id": 2170, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 142, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L142" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2172, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2173, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2174, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2175, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 166, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L166" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2176, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of info" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 170, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2177, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2178, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 176, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2179, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of info" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 180, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2180, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2181, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 186, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2182, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.info.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 192, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2181, - 2182 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 180, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L180" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2178, - 2179 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 170, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L170" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2172, - 2173, - 2174, - 2175, - 2176 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 142, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L142" - } - ] - } - } - }, - { - "id": 2183, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 199, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L199" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2184, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2185, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2186, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2187, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2188, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2189, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of success" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 227, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L227" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2190, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2191, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 233, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2192, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of success" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 237, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L237" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2194, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 243, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2195, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.success.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 249, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2194, - 2195 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 237, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L237" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2191, - 2192 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 227, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L227" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2185, - 2186, - 2187, - 2188, - 2189 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 199, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L199" - } - ] - } - } - }, - { - "id": 2196, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 256, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L256" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2197, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2198, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2199, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2200, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2201, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L280" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2202, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of warn" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 284, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L284" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2203, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2204, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 290, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L290" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2205, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of warn" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 294, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L294" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2206, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2207, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 300, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L300" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2208, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.warn.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 306, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L306" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2207, - 2208 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 294, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L294" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2204, - 2205 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 284, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L284" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2198, - 2199, - 2200, - 2201, - 2202 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 256, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L256" - } - ] - } - } - }, - { - "id": 2209, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 313, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L313" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2210, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2211, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 319, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L319" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2212, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2213, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2214, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2215, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of error" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 341, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L341" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2216, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2217, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 347, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L347" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2218, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of error" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 351, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L351" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2219, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2220, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 357, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L357" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2221, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.error.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 363, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L363" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2220, - 2221 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 351, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L351" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2217, - 2218 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 341, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L341" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2211, - 2212, - 2213, - 2214, - 2215 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 313, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L313" - } - ] - } - } - }, - { - "id": 2222, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 370, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L370" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2223, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2224, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 376, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L376" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2225, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 382, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L382" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2226, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 388, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L388" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2227, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 394, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L394" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2228, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of secondary" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 398, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L398" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2229, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2230, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 404, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L404" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2231, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of secondary" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 408, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L408" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2232, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2233, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 414, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L414" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2234, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.secondary.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 420, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L420" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2233, - 2234 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 408, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L408" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2230, - 2231 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 398, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L398" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2224, - 2225, - 2226, - 2227, - 2228 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 370, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L370" - } - ] - } - } - }, - { - "id": 2235, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 427, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L427" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2236, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2237, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 433, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L433" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2238, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 439, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L439" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2239, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 445, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L445" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2240, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 451, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L451" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2241, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of contrast" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 455, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L455" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2242, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2243, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 461, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L461" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2244, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of contrast" - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 465, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L465" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2245, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2246, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 471, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L471" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2247, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "message.contrast.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 477, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L477" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2246, - 2247 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 465, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L465" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2243, - 2244 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 455, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L455" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2237, - 2238, - 2239, - 2240, - 2241 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 427, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L427" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2248, - 2141, - 2146, - 2150, - 2154, - 2157, - 2167, - 2170, - 2183, - 2196, - 2209, - 2222, - 2235 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2140, - "name": "MessageDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2140 - ] - } - ], - "sources": [ - { - "fileName": "message/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/message/index.d.ts#L1" - } - ] - }, - { - "id": 2252, - "name": "themes/metergroup", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MeterGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/metergroup/)" - } - ] - }, - "children": [ - { - "id": 2253, - "name": "MeterGroupDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2275, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2276, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2277, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2278, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2277, - 2278 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2254, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2255, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2256, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2257, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2256, - 2257 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2258, - "name": "meters", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the meters section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2259, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2260, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of meters" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.meters.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2261, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of meters" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.meters.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2260, - 2261 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2262, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2264, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2264 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2265, - "name": "labelMarker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label marker section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2266, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2267, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of label marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.marker.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2267 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 62, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L62" - } - ] - } - } - }, - { - "id": 2268, - "name": "labelIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label icon section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 73, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L73" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2269, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2270, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of label icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2270 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 73, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L73" - } - ] - } - } - }, - { - "id": 2271, - "name": "labelList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label list section" - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 84, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L84" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2272, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2273, - "name": "verticalGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vertical gap of label list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.list.vertical.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2274, - "name": "horizontalGap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Horizontal gap of label list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "metergroup.label.list.horizontal.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2273, - 2274 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 84, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L84" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2275, - 2254, - 2258, - 2262, - 2265, - 2268, - 2271 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2253, - "name": "MeterGroupDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2253 - ] - } - ], - "sources": [ - { - "fileName": "metergroup/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/metergroup/index.d.ts#L1" - } - ] - }, - { - "id": 2279, - "name": "themes/multiselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "MultiSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/multiselect/)" - } - ] - }, - "children": [ - { - "id": 2280, - "name": "MultiSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2348, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2349, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2350, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2351, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2350, - 2351 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2281, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2282, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2283, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2284, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2285, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2286, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2287, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2288, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2289, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2290, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2291, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2292, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2293, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2294, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2295, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2296, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2297, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2298, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2299, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2300, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2301, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2302, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2303, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2304, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2300, - 2301, - 2302, - 2303, - 2304 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 2305, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2283, - 2284, - 2285, - 2286, - 2287, - 2288, - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2305 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2306, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2307, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2308, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2309, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2308, - 2309 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 2310, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2311, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2312, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2313, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2314, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2315, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2316, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2312, - 2313, - 2314, - 2315, - 2316 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 2317, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2318, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2319, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2320, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2321, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L221" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2322, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2323, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2323 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 221, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L221" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2319, - 2320, - 2321 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 2324, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2325, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2326, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2327, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2328, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2329, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2330, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2331, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 269, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L269" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2332, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 275, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L275" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2333, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 281, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L281" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2334, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 287, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L287" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2335, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 293, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L293" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2326, - 2327, - 2328, - 2329, - 2330, - 2331, - 2332, - 2333, - 2334, - 2335 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 233, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2336, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 298, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L298" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2337, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2338, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2339, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 310, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L310" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2340, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 316, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L316" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2341, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 322, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L322" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2338, - 2339, - 2340, - 2341 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 298, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L298" - } - ] - } - } - }, - { - "id": 2342, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 327, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L327" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2343, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2344, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 333, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L333" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2344 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 327, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L327" - } - ] - } - } - }, - { - "id": 2345, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 338, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L338" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2346, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2347, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "multiselect.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 344, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L344" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2347 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 338, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L338" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2348, - 2281, - 2306, - 2310, - 2317, - 2324, - 2336, - 2342, - 2345 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2280, - "name": "MultiSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2280 - ] - } - ], - "sources": [ - { - "fileName": "multiselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/multiselect/index.d.ts#L1" - } - ] - }, - { - "id": 2352, - "name": "themes/orderlist", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OrderList Design Tokens\n\n[Live Demo](https://www.primeng.org/orderlist/)" - } - ] - }, - "children": [ - { - "id": 2353, - "name": "OrderListDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2360, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2361, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2362, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2363, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2362, - 2363 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2354, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2355, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2356, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "orderlist.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2356 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2357, - "name": "controls", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the controls section" - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2358, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2359, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of controls" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "orderlist.controls.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2359 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 28, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2360, - 2354, - 2357 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2353, - "name": "OrderListDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2353 - ] - } - ], - "sources": [ - { - "fileName": "orderlist/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/orderlist/index.d.ts#L1" - } - ] - }, - { - "id": 2364, - "name": "themes/organizationchart", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OrganizationChart Design Tokens\n\n[Live Demo](https://www.primeng.org/organizationchart/)" - } - ] - }, - "children": [ - { - "id": 2365, - "name": "OrganizationChartDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2403, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2404, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2405, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2406, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2405, - 2406 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2366, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2367, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2368, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2369, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2368, - 2369 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2370, - "name": "node", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2372, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2373, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2374, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2375, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2376, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2377, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2378, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2379, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2380, - "name": "toggleablePadding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toggleable padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggleable.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2381, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2372, - 2373, - 2374, - 2375, - 2376, - 2377, - 2378, - 2379, - 2380, - 2381 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 34, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2382, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 99, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L99" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2383, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2384, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2385, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2386, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2387, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2388, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2389, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2390, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2391, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L145" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2393, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2394, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2395, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2396, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2397, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 175, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2393, - 2394, - 2395, - 2396, - 2397 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 145, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L145" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 99, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L99" - } - ] - } - } - }, - { - "id": 2398, - "name": "connector", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the connector section" - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 181, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L181" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2399, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2400, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2401, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2402, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "organizationchart.connector.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2400, - 2401, - 2402 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 181, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L181" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2403, - 2366, - 2370, - 2382, - 2398 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2365, - "name": "OrganizationChartDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2365 - ] - } - ], - "sources": [ - { - "fileName": "organizationchart/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/organizationchart/index.d.ts#L1" - } - ] - }, - { - "id": 2407, - "name": "themes/overlaybadge", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "OverlayBadge Design Tokens\n\n[Live Demo](https://www.primeng.org/overlaybadge/)" - } - ] - }, - "children": [ - { - "id": 2408, - "name": "OverlayBadgeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2415, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2416, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2417, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2418, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2417, - 2418 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2409, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2410, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2411, - "name": "outline", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline of root" - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 21, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2412, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2413, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "overlaybadge.outline.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 27, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L27" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2414, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Outline color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "overlaybadge.outline.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 33, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L33" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2413, - 2414 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 21, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2411 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2415, - 2409 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2408, - "name": "OverlayBadgeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2408 - ] - } - ], - "sources": [ - { - "fileName": "overlaybadge/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/overlaybadge/index.d.ts#L1" - } - ] - }, - { - "id": 2419, - "name": "themes/paginator", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Paginator Design Tokens\n\n[Live Demo](https://www.primeng.org/paginator/)" - } - ] - }, - "children": [ - { - "id": 2420, - "name": "PaginatorDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2453, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2454, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2455, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2456, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2455, - 2456 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2421, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2422, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2423, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2424, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2425, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2426, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2427, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2428, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2423, - 2424, - 2425, - 2426, - 2427, - 2428 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2429, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2431, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2432, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2433, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2434, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2435, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2436, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2437, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2438, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2439, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2440, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 116, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L116" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2442, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 122, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2443, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2444, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2445, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 140, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L140" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2446, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 146, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L146" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2442, - 2443, - 2444, - 2445, - 2446 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 116, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L116" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2431, - 2432, - 2433, - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 58, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 2447, - "name": "currentPageReport", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the current page report section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 152, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L152" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2448, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2449, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of current page report" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.current.page.report.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2449 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 152, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L152" - } - ] - } - } - }, - { - "id": 2450, - "name": "jumpToPageInput", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the jump to page input section" - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2451, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2452, - "name": "maxWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Max width of jump to page input" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "paginator.jump.to.page.input.max.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2452 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 163, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L163" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2453, - 2421, - 2429, - 2447, - 2450 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2420, - "name": "PaginatorDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2420 - ] - } - ], - "sources": [ - { - "fileName": "paginator/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/paginator/index.d.ts#L1" - } - ] - }, - { - "id": 2457, - "name": "themes/panel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" - } - ] - }, - "children": [ - { - "id": 2458, - "name": "PanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2485, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2486, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2487, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2488, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2487, - 2488 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2459, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2460, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2461, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2462, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2463, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2464, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2461, - 2462, - 2463, - 2464 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2465, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2466, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2467, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2468, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2469, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2470, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2471, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2472, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2467, - 2468, - 2469, - 2470, - 2471, - 2472 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 2473, - "name": "toggleableHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggleable header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2474, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2475, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of toggleable header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.toggleable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2475 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 2476, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2477, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2478, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2478 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 2479, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2480, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2481, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2481 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 2482, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2483, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2484, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2484 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L120" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2485, - 2459, - 2465, - 2473, - 2476, - 2479, - 2482 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2458, - "name": "PanelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2458 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panel/index.d.ts#L1" - } - ] - }, - { - "id": 2489, - "name": "themes/panelmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "PanelMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/panelmenu/)" - } - ] - }, - "children": [ - { - "id": 2490, - "name": "PanelMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2530, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2531, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2532, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2533, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2532, - 2533 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2491, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2492, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2493, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2494, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2493, - 2494 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2495, - "name": "panel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the panel section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2496, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2497, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2498, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2499, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2500, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2501, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2502, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2503, - "name": "first", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First of panel" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2504, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2505, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.first.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 80, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2506, - "name": "topBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "First top border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.first.top.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 86, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2505, - 2506 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 74, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2507, - "name": "last", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last of panel" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2508, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2509, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last border width of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.last.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2510, - "name": "bottomBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Last bottom border radius of panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.panel.last.bottom.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2509, - 2510 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 91, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L91" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2497, - 2498, - 2499, - 2500, - 2501, - 2502, - 2503, - 2507 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 34, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 2511, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2512, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2513, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2514, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2515, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2516, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 133, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2517, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2518, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 145, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2519, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L149" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2520, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2521, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2522, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2521, - 2522 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 149, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L149" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2513, - 2514, - 2515, - 2516, - 2517, - 2518, - 2519 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 109, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 2523, - "name": "submenu", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 167, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L167" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2524, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2525, - "name": "indent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Indent of submenu" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2525 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 167, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L167" - } - ] - } - } - }, - { - "id": 2526, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 178, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L178" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2527, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2528, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 184, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L184" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2529, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panelmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 190, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2528, - 2529 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 178, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L178" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2530, - 2491, - 2495, - 2511, - 2523, - 2526 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2490, - "name": "PanelMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2490 - ] - } - ], - "sources": [ - { - "fileName": "panelmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/panelmenu/index.d.ts#L1" - } - ] - }, - { - "id": 2534, - "name": "themes/password", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Password Design Tokens\n\n[Live Demo](https://www.primeng.org/password/)" - } - ] - }, - "children": [ - { - "id": 2535, - "name": "PasswordDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2560, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2561, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2562, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2563, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2562, - 2563 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2536, - "name": "meter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the meter section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2537, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2538, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2539, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2540, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of meter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.meter.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2538, - 2539, - 2540 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2541, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2542, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2543, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2543 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 40, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2544, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2545, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2546, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2547, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2548, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2549, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2550, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2551, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2546, - 2547, - 2548, - 2549, - 2550, - 2551 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 51, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2552, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 92, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L92" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2553, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2554, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2554 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 92, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L92" - } - ] - } - } - }, - { - "id": 2555, - "name": "strength", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the strength section" - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2556, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2557, - "name": "weakBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Weak background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.weak.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2558, - "name": "mediumBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Medium background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.medium.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2559, - "name": "strongBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Strong background of strength" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "password.strength.strong.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2557, - 2558, - 2559 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 103, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L103" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2560, - 2536, - 2541, - 2544, - 2552, - 2555 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2535, - "name": "PasswordDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2535 - ] - } - ], - "sources": [ - { - "fileName": "password/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/password/index.d.ts#L1" - } - ] - }, - { - "id": 2564, - "name": "themes/picklist", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "PickList Design Tokens\n\n[Live Demo](https://www.primeng.org/picklist/)" - } - ] - }, - "children": [ - { - "id": 2565, - "name": "PickListDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2572, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2573, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2574, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2575, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2574, - 2575 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2566, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2567, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2568, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "picklist.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2568 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2569, - "name": "controls", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the controls section" - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2570, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2571, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of controls" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "picklist.controls.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2571 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 28, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2572, - 2566, - 2569 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2565, - "name": "PickListDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2565 - ] - } - ], - "sources": [ - { - "fileName": "picklist/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/picklist/index.d.ts#L1" - } - ] - }, - { - "id": 2576, - "name": "themes/popover", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Popover Design Tokens\n\n[Live Demo](https://www.primeng.org/popover/)" - } - ] - }, - "children": [ - { - "id": 2577, - "name": "PopoverDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2590, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2591, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2592, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2593, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2592, - 2593 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2578, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2579, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2580, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2581, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2582, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2583, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2584, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2585, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2586, - "name": "arrowOffset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Arrow offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.arrow.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2580, - 2581, - 2582, - 2583, - 2584, - 2585, - 2586 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2587, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 64, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L64" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2588, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2589, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "popover.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2589 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 64, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L64" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2590, - 2578, - 2587 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2577, - "name": "PopoverDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2577 - ] - } - ], - "sources": [ - { - "fileName": "popover/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/popover/index.d.ts#L1" - } - ] - }, - { - "id": 2594, - "name": "themes/progressbar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ProgressBar Design Tokens\n\n[Live Demo](https://www.primeng.org/progressbar/)" - } - ] - }, - "children": [ - { - "id": 2595, - "name": "ProgressBarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2609, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2610, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2611, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2612, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2611, - 2612 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2596, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2597, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2598, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2599, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2600, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2598, - 2599, - 2600 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2601, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the value section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 40, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L40" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2602, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2603, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of value" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.value.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2603 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 40, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L40" - } - ] - } - } - }, - { - "id": 2604, - "name": "label", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the label section" - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2605, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2606, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2607, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2608, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressbar.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2606, - 2607, - 2608 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L51" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2609, - 2596, - 2601, - 2604 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2595, - "name": "ProgressBarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2595 - ] - } - ], - "sources": [ - { - "fileName": "progressbar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressbar/index.d.ts#L1" - } - ] - }, - { - "id": 2613, - "name": "themes/progressspinner", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ProgressSpinner Design Tokens\n\n[Live Demo](https://www.primeng.org/progressspinner/)" - } - ] - }, - "children": [ - { - "id": 2614, - "name": "ProgressSpinnerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2621, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2622, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2623, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2624, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2623, - 2624 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2615, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2616, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2617, - "name": "color.1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.1 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2618, - "name": "color.2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.2 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2619, - "name": "color.3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.3 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2620, - "name": "color.4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color.4 of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "progressspinner.color.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2617, - 2618, - 2619, - 2620 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2621, - 2615 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2614, - "name": "ProgressSpinnerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2614 - ] - } - ], - "sources": [ - { - "fileName": "progressspinner/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/progressspinner/index.d.ts#L1" - } - ] - }, - { - "id": 2625, - "name": "themes/radiobutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "RadioButton Design Tokens\n\n[Live Demo](https://www.primeng.org/radiobutton/)" - } - ] - }, - "children": [ - { - "id": 2626, - "name": "RadioButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2659, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2660, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2661, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2662, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2661, - 2662 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2627, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2628, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2629, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2630, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2631, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2632, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2633, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2634, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2635, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2636, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2637, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2638, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2639, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2640, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2641, - "name": "checkedFocusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2642, - "name": "checkedDisabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.checked.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2643, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2644, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 113, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L113" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2645, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L117" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2646, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2647, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2648, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2649, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2650, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2651, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2647, - 2648, - 2649, - 2650, - 2651 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 117, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L117" - } - ] - } - } - }, - { - "id": 2652, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2629, - 2630, - 2631, - 2632, - 2633, - 2634, - 2635, - 2636, - 2637, - 2638, - 2639, - 2640, - 2641, - 2642, - 2643, - 2644, - 2645, - 2652 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2653, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 159, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L159" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2654, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2655, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2656, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2657, - "name": "checkedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.checked.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2658, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "radiobutton.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2655, - 2656, - 2657, - 2658 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 159, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L159" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2659, - 2627, - 2653 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2626, - "name": "RadioButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2626 - ] - } - ], - "sources": [ - { - "fileName": "radiobutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/radiobutton/index.d.ts#L1" - } - ] - }, - { - "id": 2663, - "name": "themes/rating", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rating Design Tokens\n\n[Live Demo](https://www.primeng.org/rating/)" - } - ] - }, - "children": [ - { - "id": 2664, - "name": "RatingDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2675, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2676, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2677, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2678, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2677, - 2678 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2665, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2666, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2667, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2668, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2667, - 2668 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2669, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2670, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2671, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2672, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2673, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2674, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "rating.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2671, - 2672, - 2673, - 2674 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 34, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L34" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2675, - 2665, - 2669 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2664, - "name": "RatingDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2664 - ] - } - ], - "sources": [ - { - "fileName": "rating/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/rating/index.d.ts#L1" - } - ] - }, - { - "id": 2679, - "name": "themes/ripple", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Ripple Design Tokens\n\n[Live Demo](https://www.primeng.org/ripple/)" - } - ] - }, - "children": [ - { - "id": 2680, - "name": "RippleDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2684, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2685, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2686, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2687, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2686, - 2687 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2681, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2682, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2683, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "ripple.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2683 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2684, - 2681 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2680, - "name": "RippleDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2680 - ] - } - ], - "sources": [ - { - "fileName": "ripple/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/ripple/index.d.ts#L1" - } - ] - }, - { - "id": 2688, - "name": "themes/scrollpanel", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ScrollPanel Design Tokens\n\n[Live Demo](https://www.primeng.org/scrollpanel/)" - } - ] - }, - "children": [ - { - "id": 2689, - "name": "ScrollPanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2705, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2706, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2707, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2708, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2707, - 2708 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2690, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2691, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2692, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2692 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2693, - "name": "bar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the bar section" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2694, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2695, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2696, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2697, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of bar" - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 44, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2698, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2699, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 50, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L50" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2700, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 56, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L56" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2701, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 62, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L62" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2702, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 68, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2703, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 74, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2699, - 2700, - 2701, - 2702, - 2703 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 44, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" - } - ] - } - } - }, - { - "id": 2704, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "scrollpanel.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2695, - 2696, - 2697, - 2704 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 28, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2705, - 2690, - 2693 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2689, - "name": "ScrollPanelDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2689 - ] - } - ], - "sources": [ - { - "fileName": "scrollpanel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/scrollpanel/index.d.ts#L1" - } - ] - }, - { - "id": 2709, - "name": "themes/select", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Select Design Tokens\n\n[Live Demo](https://www.primeng.org/select/)" - } - ] - }, - "children": [ - { - "id": 2710, - "name": "SelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2782, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2784, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2785, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2784, - 2785 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2711, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2712, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2713, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2714, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2715, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2716, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2717, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2718, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2719, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2720, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2721, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2722, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2723, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2724, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2725, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2726, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2727, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2728, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2729, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2730, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2731, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2732, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2733, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2734, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2730, - 2731, - 2732, - 2733, - 2734 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 2735, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719, - 2720, - 2721, - 2722, - 2723, - 2724, - 2725, - 2726, - 2727, - 2728, - 2735 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2736, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2738, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2739, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2738, - 2739 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 2740, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2741, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2742, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2743, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2744, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2745, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2746, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2742, - 2743, - 2744, - 2745, - 2746 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 2747, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2748, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2749, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2750, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2751, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header of list" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L221" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2752, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2753, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Header padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.list.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2753 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 221, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L221" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2749, - 2750, - 2751 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 2754, - "name": "option", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2755, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2756, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2757, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2758, - "name": "selectedFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus background of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2759, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2760, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 263, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L263" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2761, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 269, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L269" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2762, - "name": "selectedFocusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected focus color of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.selected.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 275, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L275" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2763, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 281, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L281" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2764, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of option" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 287, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L287" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2756, - 2757, - 2758, - 2759, - 2760, - 2761, - 2762, - 2763, - 2764 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 233, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 2765, - "name": "optionGroup", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the option group section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 292, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L292" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2766, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2767, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2768, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2769, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 310, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L310" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2770, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of option group" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.option.group.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 316, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L316" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2767, - 2768, - 2769, - 2770 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 292, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L292" - } - ] - } - } - }, - { - "id": 2771, - "name": "clearIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the clear icon section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 321, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L321" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2772, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2773, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of clear icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.clear.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 327, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L327" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2773 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 321, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L321" - } - ] - } - } - }, - { - "id": 2774, - "name": "checkmark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the checkmark section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 332, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L332" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2775, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2776, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 338, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L338" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2777, - "name": "gutterStart", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter start of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.gutter.start" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 344, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L344" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2778, - "name": "gutterEnd", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter end of checkmark" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.checkmark.gutter.end" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 350, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L350" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2776, - 2777, - 2778 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 332, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L332" - } - ] - } - } - }, - { - "id": 2779, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 355, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L355" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2780, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2781, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "select.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 361, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2781 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 355, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L355" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2782, - 2711, - 2736, - 2740, - 2747, - 2754, - 2765, - 2771, - 2774, - 2779 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2710, - "name": "SelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2710 - ] - } - ], - "sources": [ - { - "fileName": "select/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/select/index.d.ts#L1" - } - ] - }, - { - "id": 2786, - "name": "themes/selectbutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SelectButton Design Tokens\n\n[Live Demo](https://www.primeng.org/selectbutton/)" - } - ] - }, - "children": [ - { - "id": 2787, - "name": "SelectButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2792, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2794, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2795, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2794, - 2795 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2788, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2789, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2790, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "selectbutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2791, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "selectbutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2790, - 2791 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2792, - 2788 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2787, - "name": "SelectButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2787 - ] - } - ], - "sources": [ - { - "fileName": "selectbutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/selectbutton/index.d.ts#L1" - } - ] - }, - { - "id": 2796, - "name": "themes/skeleton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Skeleton Design Tokens\n\n[Live Demo](https://www.primeng.org/skeleton/)" - } - ] - }, - "children": [ - { - "id": 2797, - "name": "SkeletonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2803, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2804, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2805, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2806, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2805, - 2806 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2798, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2799, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2800, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2801, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2802, - "name": "animationBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Animation background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "skeleton.animation.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2800, - 2801, - 2802 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2803, - 2798 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2797, - "name": "SkeletonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2797 - ] - } - ], - "sources": [ - { - "fileName": "skeleton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/skeleton/index.d.ts#L1" - } - ] - }, - { - "id": 2807, - "name": "themes/slider", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Slider Design Tokens\n\n[Live Demo](https://www.primeng.org/slider/)" - } - ] - }, - "children": [ - { - "id": 2808, - "name": "SliderDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2842, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2843, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2844, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2845, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2844, - 2845 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2809, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2810, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2811, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2811 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2812, - "name": "track", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the track section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2813, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2814, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2815, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2816, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of track" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.track.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2814, - 2815, - 2816 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 28, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2817, - "name": "range", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the range section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2818, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2819, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of range" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.range.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2819 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 51, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 2820, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 62, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L62" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2821, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2822, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 68, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L68" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2823, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 74, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2824, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2825, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2826, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2827, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of handle" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 96, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L96" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2828, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2829, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2830, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2831, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2832, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content height of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2833, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 126, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2829, - 2830, - 2831, - 2832, - 2833 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 96, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L96" - } - ] - } - } - }, - { - "id": 2834, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of handle" - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 131, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L131" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2835, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2836, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 137, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2837, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 143, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2838, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 149, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2839, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 155, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L155" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2840, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 161, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2836, - 2837, - 2838, - 2839, - 2840 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 131, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L131" - } - ] - } - } - }, - { - "id": 2841, - "name": "contentBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "slider.handle.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2822, - 2823, - 2824, - 2825, - 2826, - 2827, - 2834, - 2841 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 62, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L62" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2842, - 2809, - 2812, - 2817, - 2820 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2808, - "name": "SliderDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2808 - ] - } - ], - "sources": [ - { - "fileName": "slider/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/slider/index.d.ts#L1" - } - ] - }, - { - "id": 2846, - "name": "themes/speeddial", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SpeedDial Design Tokens\n\n[Live Demo](https://www.primeng.org/speeddial/)" - } - ] - }, - "children": [ - { - "id": 2847, - "name": "SpeedDialDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2852, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2853, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2854, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2855, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2854, - 2855 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2848, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2849, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2850, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "speeddial.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2851, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "speeddial.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2850, - 2851 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2852, - 2848 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2847, - "name": "SpeedDialDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2847 - ] - } - ], - "sources": [ - { - "fileName": "speeddial/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/speeddial/index.d.ts#L1" - } - ] - }, - { - "id": 2856, - "name": "themes/splitbutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "SplitButton Design Tokens\n\n[Live Demo](https://www.primeng.org/splitbutton/)" - } - ] - }, - "children": [ - { - "id": 2857, - "name": "SplitButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2863, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2864, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2865, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2866, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2865, - 2866 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2858, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2859, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2860, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2861, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2862, - "name": "raisedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Raised shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitbutton.raised.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2860, - 2861, - 2862 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2863, - 2858 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2857, - "name": "SplitButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2857 - ] - } - ], - "sources": [ - { - "fileName": "splitbutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitbutton/index.d.ts#L1" - } - ] - }, - { - "id": 2867, - "name": "themes/splitter", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Splitter Design Tokens\n\n[Live Demo](https://www.primeng.org/splitter/)" - } - ] - }, - "children": [ - { - "id": 2868, - "name": "SplitterDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2890, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2891, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2892, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2893, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2892, - 2893 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2869, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2870, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2871, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2872, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2873, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2874, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2871, - 2872, - 2873, - 2874 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2875, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the gutter section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2876, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2877, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of gutter" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.gutter.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2877 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 2878, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2879, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2880, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2881, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2882, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2883, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of handle" - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 79, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L79" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2885, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 85, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L85" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2886, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 91, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2887, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 97, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2888, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 103, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2889, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "splitter.handle.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 109, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2885, - 2886, - 2887, - 2888, - 2889 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 79, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L79" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2880, - 2881, - 2882, - 2883 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 57, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L57" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2890, - 2869, - 2875, - 2878 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2868, - "name": "SplitterDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2868 - ] - } - ], - "sources": [ - { - "fileName": "splitter/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/splitter/index.d.ts#L1" - } - ] - }, - { - "id": 2894, - "name": "themes/stepper", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Stepper Design Tokens\n\n[Live Demo](https://www.primeng.org/stepper/)" - } - ] - }, - "children": [ - { - "id": 2895, - "name": "StepperDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2947, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2948, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2949, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2950, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2949, - 2950 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2896, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2897, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2898, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2898 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2899, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2900, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2901, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2902, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2903, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2904, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.separator.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2901, - 2902, - 2903, - 2904 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 28, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2905, - "name": "step", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2906, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2907, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of step" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2908, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of step" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2907, - 2908 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 57, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 2909, - "name": "stepHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step header section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2910, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2911, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2912, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2913, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of step header" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L90" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2914, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2915, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 96, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L96" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2916, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 102, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L102" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2917, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 108, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2918, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 114, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2919, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 120, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2915, - 2916, - 2917, - 2918, - 2919 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 90, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L90" - } - ] - } - } - }, - { - "id": 2920, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of step header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.header.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L127" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2911, - 2912, - 2913, - 2920 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 74, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 2921, - "name": "stepTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step title section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 132, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L132" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2922, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2923, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2924, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2925, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of step title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2923, - 2924, - 2925 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 132, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L132" - } - ] - } - } - }, - { - "id": 2926, - "name": "stepNumber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the step number section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 155, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L155" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2927, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2928, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 161, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L161" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2929, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 167, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L167" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2930, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 173, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L173" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2931, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 179, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L179" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2932, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 185, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L185" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2933, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 191, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L191" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2934, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L197" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2935, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 203, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2936, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 209, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2937, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2938, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of step number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.step.number.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 221, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2928, - 2929, - 2930, - 2931, - 2932, - 2933, - 2934, - 2935, - 2936, - 2937, - 2938 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 155, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L155" - } - ] - } - } - }, - { - "id": 2939, - "name": "steppanels", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the steppanels section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 226, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L226" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2940, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2941, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of steppanels" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanels.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 232, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2941 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 226, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L226" - } - ] - } - } - }, - { - "id": 2942, - "name": "steppanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the steppanel section" - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 237, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L237" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2943, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2944, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 243, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L243" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2945, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 249, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L249" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2946, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of steppanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "stepper.steppanel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 255, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L255" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2944, - 2945, - 2946 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 237, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L237" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2947, - 2896, - 2899, - 2905, - 2909, - 2921, - 2926, - 2939, - 2942 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2895, - "name": "StepperDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2895 - ] - } - ], - "sources": [ - { - "fileName": "stepper/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/stepper/index.d.ts#L1" - } - ] - }, - { - "id": 2951, - "name": "themes/steps", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Steps Design Tokens\n\n[Live Demo](https://www.primeng.org/steps/)" - } - ] - }, - "children": [ - { - "id": 2952, - "name": "StepsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 2988, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2989, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2990, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 2991, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2990, - 2991 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2953, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2954, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2955, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2955 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2956, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2957, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2958, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.separator.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2958 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 28, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 2959, - "name": "itemLink", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item link section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 39, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L39" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2960, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2961, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 45, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L45" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2962, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item link" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 49, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L49" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2963, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2964, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 55, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L55" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2965, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 61, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L61" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2966, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 67, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L67" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2967, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 73, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L73" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2968, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 79, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L79" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2964, - 2965, - 2966, - 2967, - 2968 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 49, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L49" - } - ] - } - } - }, - { - "id": 2969, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item link" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.link.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2961, - 2962, - 2969 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 39, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L39" - } - ] - } - } - }, - { - "id": 2970, - "name": "itemLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item label section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 91, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L91" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2971, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2972, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2973, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2974, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2972, - 2973, - 2974 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 91, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L91" - } - ] - } - } - }, - { - "id": 2975, - "name": "itemNumber", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item number section" - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 114, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L114" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2976, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2977, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 120, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L120" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2978, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2979, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2980, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 138, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L138" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2981, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 144, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L144" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2982, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 150, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L150" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2983, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 156, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L156" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2984, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 162, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L162" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2985, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 168, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L168" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2986, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 174, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L174" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2987, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of item number" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "steps.item.number.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2977, - 2978, - 2979, - 2980, - 2981, - 2982, - 2983, - 2984, - 2985, - 2986, - 2987 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 114, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L114" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2988, - 2953, - 2956, - 2959, - 2970, - 2975 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2952, - "name": "StepsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2952 - ] - } - ], - "sources": [ - { - "fileName": "steps/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/steps/index.d.ts#L1" - } - ] - }, - { - "id": 2992, - "name": "themes/tabmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tabmenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tabmenu/)" - } - ] - }, - "children": [ - { - "id": 2993, - "name": "TabmenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3035, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3036, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3037, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3038, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3037, - 3038 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 2994, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2995, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2996, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2996 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 2997, - "name": "tablist", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tablist section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2998, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 2999, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3000, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3001, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.tablist.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 2999, - 3000, - 3001 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3002, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3003, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3004, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3005, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3006, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3007, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3008, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3009, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3010, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3011, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3012, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3013, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3014, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3015, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3016, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3017, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3018, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of item" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3019, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3020, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3021, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3022, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3023, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3024, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3020, - 3021, - 3022, - 3023, - 3024 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 139, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3004, - 3005, - 3006, - 3007, - 3008, - 3009, - 3010, - 3011, - 3012, - 3013, - 3014, - 3015, - 3016, - 3017, - 3018 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 51, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3025, - "name": "itemIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item icon section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3026, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3027, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3028, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3029, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3027, - 3028, - 3029 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 175, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 3030, - "name": "activeBar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the active bar section" - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 198, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L198" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3031, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3032, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3033, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Bottom of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3034, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabmenu.active.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 216, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L216" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3032, - 3033, - 3034 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 198, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L198" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3035, - 2994, - 2997, - 3002, - 3025, - 3030 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 2993, - "name": "TabmenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 2993 - ] - } - ], - "sources": [ - { - "fileName": "tabmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabmenu/index.d.ts#L1" - } - ] - }, - { - "id": 3039, - "name": "themes/tabs", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tabs Design Tokens\n\n[Live Demo](https://www.primeng.org/tabs/)" - } - ] - }, - "children": [ - { - "id": 3040, - "name": "TabsDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3103, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3104, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3105, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3106, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3105, - 3106 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3041, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3042, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3043, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3043 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3044, - "name": "tablist", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tablist section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3045, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3046, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3047, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3048, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tablist" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tablist.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3046, - 3047, - 3048 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3049, - "name": "tab", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 51, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3050, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3051, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3052, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3053, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3054, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3055, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3056, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3057, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3058, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3059, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3060, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3061, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3062, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3063, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 129, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3064, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 135, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3065, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of tab" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 139, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L139" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3066, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3067, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3068, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3069, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3070, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 163, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3071, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tab.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 169, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3067, - 3068, - 3069, - 3070, - 3071 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 139, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L139" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3051, - 3052, - 3053, - 3054, - 3055, - 3056, - 3057, - 3058, - 3059, - 3060, - 3061, - 3062, - 3063, - 3064, - 3065 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 51, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3072, - "name": "tabpanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tabpanel section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 175, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L175" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3073, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3074, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3075, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3076, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3077, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of tabpanel" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 197, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L197" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3078, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3079, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 203, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L203" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3080, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 209, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L209" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3081, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 215, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3082, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 221, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3083, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of tabpanel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.tabpanel.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3079, - 3080, - 3081, - 3082, - 3083 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 197, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L197" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3074, - 3075, - 3076, - 3077 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 175, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L175" - } - ] - } - } - }, - { - "id": 3084, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 233, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L233" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3085, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3086, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 239, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3087, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3088, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 251, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3089, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3090, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of nav button" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 261, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L261" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3091, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3092, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 267, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3093, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 273, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L273" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3094, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 279, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L279" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3095, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 285, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3096, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 291, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3092, - 3093, - 3094, - 3095, - 3096 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 261, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L261" - } - ] - } - } - }, - { - "id": 3097, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.nav.button.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3086, - 3087, - 3088, - 3089, - 3090, - 3097 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 233, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L233" - } - ] - } - } - }, - { - "id": 3098, - "name": "activeBar", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the active bar section" - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 303, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L303" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3099, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3100, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 309, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L309" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3101, - "name": "bottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Bottom of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.bottom" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 315, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L315" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3102, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of active bar" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabs.active.bar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 321, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L321" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3100, - 3101, - 3102 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 303, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L303" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3103, - 3041, - 3044, - 3049, - 3072, - 3084, - 3098 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3040, - "name": "TabsDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3040 - ] - } - ], - "sources": [ - { - "fileName": "tabs/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabs/index.d.ts#L1" - } - ] - }, - { - "id": 3107, - "name": "themes/tabview", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TabView Design Tokens\n\n[Live Demo](https://www.primeng.org/tabview/)" - } - ] - }, - "children": [ - { - "id": 3108, - "name": "TabViewDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3133, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3134, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3135, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3136, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3135, - 3136 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3109, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3110, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3111, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3111 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3112, - "name": "tabList", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab list section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3113, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3114, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.list.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 34, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L34" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3115, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.list.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3114, - 3115 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 28, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3116, - "name": "tab", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 45, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L45" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3117, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3118, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L51" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3119, - "name": "activeBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active border color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.active.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 57, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3120, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3121, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3122, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of tab" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3118, - 3119, - 3120, - 3121, - 3122 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 45, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L45" - } - ] - } - } - }, - { - "id": 3123, - "name": "tabPanel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tab panel section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 80, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L80" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3124, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3125, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of tab panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.panel.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 86, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L86" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3126, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of tab panel" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.tab.panel.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3125, - 3126 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 80, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L80" - } - ] - } - } - }, - { - "id": 3127, - "name": "navButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the nav button section" - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 97, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L97" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3128, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3129, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 103, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L103" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3130, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3131, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3132, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of nav button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tabview.nav.button.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 121, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L121" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3129, - 3130, - 3131, - 3132 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 97, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L97" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3133, - 3109, - 3112, - 3116, - 3123, - 3127 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3108, - "name": "TabViewDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3108 - ] - } - ], - "sources": [ - { - "fileName": "tabview/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tabview/index.d.ts#L1" - } - ] - }, - { - "id": 3137, - "name": "themes/tag", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tag Design Tokens\n\n[Live Demo](https://www.primeng.org/tag/)" - } - ] - }, - "children": [ - { - "id": 3138, - "name": "TagDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3178, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3179, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3180, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3181, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3180, - 3181 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3139, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3140, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3141, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3142, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3143, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3144, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3145, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3146, - "name": "roundedBorderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Rounded border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.rounded.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3141, - 3142, - 3143, - 3144, - 3145, - 3146 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3147, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3148, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3149, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3149 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3150, - "name": "primary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the primary section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3151, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3152, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.primary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3153, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of primary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.primary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3152, - 3153 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 69, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3154, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 86, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L86" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3155, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3156, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 92, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L92" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3157, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 98, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L98" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3156, - 3157 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 86, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L86" - } - ] - } - } - }, - { - "id": 3158, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 103, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L103" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3159, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3160, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 109, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L109" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3161, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3160, - 3161 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 103, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L103" - } - ] - } - } - }, - { - "id": 3162, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3163, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3164, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 126, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L126" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3165, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 132, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L132" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3164, - 3165 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 120, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L120" - } - ] - } - } - }, - { - "id": 3166, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 137, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L137" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3167, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3168, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 143, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L143" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3169, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 149, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L149" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3168, - 3169 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 137, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L137" - } - ] - } - } - }, - { - "id": 3170, - "name": "danger", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the danger section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 154, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L154" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3171, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3172, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.danger.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3173, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of danger" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.danger.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 166, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L166" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3172, - 3173 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 154, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L154" - } - ] - } - } - }, - { - "id": 3174, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 171, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L171" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3175, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3176, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3177, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tag.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3176, - 3177 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 171, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L171" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3178, - 3139, - 3147, - 3150, - 3154, - 3158, - 3162, - 3166, - 3170, - 3174 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3138, - "name": "TagDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3138 - ] - } - ], - "sources": [ - { - "fileName": "tag/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tag/index.d.ts#L1" - } - ] - }, - { - "id": 3182, - "name": "themes/terminal", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Terminal Design Tokens\n\n[Live Demo](https://www.primeng.org/terminal/)" - } - ] - }, - "children": [ - { - "id": 3183, - "name": "TerminalDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3198, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3199, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3200, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3201, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3200, - 3201 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3184, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3185, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3186, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3187, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3188, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3189, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3190, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3191, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3186, - 3187, - 3188, - 3189, - 3190, - 3191 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3192, - "name": "prompt", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the prompt section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3193, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3194, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of prompt" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.prompt.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3194 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 58, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3195, - "name": "commandResponse", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the command response section" - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3196, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3197, - "name": "margin", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Margin of command response" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "terminal.command.response.margin" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3197 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 69, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L69" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3198, - 3184, - 3192, - 3195 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3183, - "name": "TerminalDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3183 - ] - } - ], - "sources": [ - { - "fileName": "terminal/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/terminal/index.d.ts#L1" - } - ] - }, - { - "id": 3202, - "name": "themes/textarea", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Textarea Design Tokens\n\n[Live Demo](https://www.primeng.org/textarea/)" - } - ] - }, - "children": [ - { - "id": 3203, - "name": "TextareaDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3229, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3230, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3231, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3232, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3231, - 3232 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3204, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3205, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3206, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3207, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3208, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3209, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3210, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3211, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3212, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3213, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3214, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3215, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3216, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3217, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3218, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3219, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3220, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3221, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3222, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3223, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3224, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3225, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3226, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3227, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3223, - 3224, - 3225, - 3226, - 3227 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 3228, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "textarea.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3206, - 3207, - 3208, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3218, - 3219, - 3220, - 3221, - 3228 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3229, - 3204 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3203, - "name": "TextareaDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3203 - ] - } - ], - "sources": [ - { - "fileName": "textarea/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/textarea/index.d.ts#L1" - } - ] - }, - { - "id": 3233, - "name": "themes/tieredmenu", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TieredMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tieredmenu/)" - } - ] - }, - "children": [ - { - "id": 3234, - "name": "TieredMenuDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3277, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3278, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3279, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3280, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3279, - 3280 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3235, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3236, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3237, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3238, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3239, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3240, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3241, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3242, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3237, - 3238, - 3239, - 3240, - 3241, - 3242 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3243, - "name": "list", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the list section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3244, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3245, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.list.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3246, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of list" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.list.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3245, - 3246 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3247, - "name": "item", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the item section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 75, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3248, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3249, - "name": "focusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3250, - "name": "activeBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active background of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.active.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3251, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3252, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3253, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3254, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3255, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3256, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3257, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon of item" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3258, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3259, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3260, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon focus color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3261, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Icon active color of item" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.item.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3259, - 3260, - 3261 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 127, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 75, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" - } - ] - } - } - }, - { - "id": 3262, - "name": "submenuLabel", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu label section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 151, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3263, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3264, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 157, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3265, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 163, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L163" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3266, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3267, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu label" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.label.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3264, - 3265, - 3266, - 3267 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 151, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" - } - ] - } - } - }, - { - "id": 3268, - "name": "submenuIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the submenu icon section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 180, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3269, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3270, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3271, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3272, - "name": "focusColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.focus.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3273, - "name": "activeColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Active color of submenu icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.submenu.icon.active.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3270, - 3271, - 3272, - 3273 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 180, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" - } - ] - } - } - }, - { - "id": 3274, - "name": "separator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the separator section" - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 209, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3275, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3276, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of separator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tieredmenu.separator.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L215" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3276 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 209, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3277, - 3235, - 3243, - 3247, - 3262, - 3268, - 3274 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3234, - "name": "TieredMenuDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3234 - ] - } - ], - "sources": [ - { - "fileName": "tieredmenu/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tieredmenu/index.d.ts#L1" - } - ] - }, - { - "id": 3281, - "name": "themes/timeline", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Timeline Design Tokens\n\n[Live Demo](https://www.primeng.org/timeline/)" - } - ] - }, - "children": [ - { - "id": 3282, - "name": "TimelineDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3313, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3314, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3315, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3316, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3315, - 3316 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3283, - "name": "event", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3284, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3285, - "name": "minHeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Min height of event" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.min.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3285 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 17, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3286, - "name": "horizontal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the horizontal section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 28, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L28" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3287, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3288, - "name": "eventContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content of horizontal" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 32, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L32" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3289, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3290, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content padding of horizontal" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.horizontal.event.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 38, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L38" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3290 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 32, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L32" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3288 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 28, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L28" - } - ] - } - } - }, - { - "id": 3291, - "name": "vertical", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the vertical section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 44, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L44" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3292, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3293, - "name": "eventContent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content of vertical" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 48, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L48" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3294, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3295, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Event content padding of vertical" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.vertical.event.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 54, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L54" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3295 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 48, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L48" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3293 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 44, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L44" - } - ] - } - } - }, - { - "id": 3296, - "name": "eventMarker", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event marker section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 60, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L60" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3297, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3298, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 66, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L66" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3299, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 72, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L72" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3300, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 78, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L78" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3301, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 84, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L84" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3302, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 90, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L90" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3303, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content of event marker" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L94" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3304, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3305, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content border radius of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 100, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3306, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content size of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 106, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3307, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content background of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 112, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3308, - "name": "insetShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Content inset shadow of event marker" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.marker.content.inset.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 118, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3305, - 3306, - 3307, - 3308 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 94, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L94" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3298, - 3299, - 3300, - 3301, - 3302, - 3303 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 60, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L60" - } - ] - } - } - }, - { - "id": 3309, - "name": "eventConnector", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the event connector section" - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 124, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L124" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3310, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3311, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of event connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.connector.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3312, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of event connector" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "timeline.event.connector.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3311, - 3312 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 124, - "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L124" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3313, - 3283, - 3286, - 3291, - 3296, - 3309 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3282, - "name": "TimelineDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3282 - ] - } - ], - "sources": [ - { - "fileName": "timeline/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/timeline/index.d.ts#L1" - } - ] - }, - { - "id": 3317, - "name": "themes/toast", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toast Design Tokens\n\n[Live Demo](https://www.primeng.org/toast/)" - } - ] - }, - "children": [ - { - "id": 3318, - "name": "ToastDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3447, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3448, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3449, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3450, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3449, - 3450 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3319, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3320, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3321, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3322, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3323, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3324, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3321, - 3322, - 3323, - 3324 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3325, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3326, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3327, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3327 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 46, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 3328, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 57, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L57" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3329, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3330, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 63, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3331, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.content.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3330, - 3331 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 57, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L57" - } - ] - } - } - }, - { - "id": 3332, - "name": "text", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the text section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 74, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L74" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3333, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3334, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of text" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.text.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 80, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L80" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3334 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 74, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L74" - } - ] - } - } - }, - { - "id": 3335, - "name": "summary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the summary section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 85, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L85" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3336, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3337, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of summary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.summary.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 91, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L91" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3338, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of summary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.summary.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 97, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L97" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3337, - 3338 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 85, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L85" - } - ] - } - } - }, - { - "id": 3339, - "name": "detail", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the detail section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 102, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L102" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3340, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3341, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of detail" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.detail.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 108, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L108" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3342, - "name": "fontSize", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font size of detail" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.detail.font.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 114, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3341, - 3342 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 102, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L102" - } - ] - } - } - }, - { - "id": 3343, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close button section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 119, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L119" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3344, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3345, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 125, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L125" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3346, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 131, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L131" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3347, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 137, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L137" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3348, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of close button" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L141" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3349, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3350, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 147, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L147" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3351, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 153, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L153" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3352, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of close button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 159, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3350, - 3351, - 3352 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 141, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L141" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3345, - 3346, - 3347, - 3348 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 119, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L119" - } - ] - } - } - }, - { - "id": 3353, - "name": "closeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the close icon section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3354, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3355, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of close icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.close.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3355 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 165, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L165" - } - ] - } - } - }, - { - "id": 3356, - "name": "blur", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the blur section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 176, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L176" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3357, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3358, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3359, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3360, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3361, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3362, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of blur" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.blur.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 206, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3358, - 3359, - 3360, - 3361, - 3362 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 176, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L176" - } - ] - } - } - }, - { - "id": 3363, - "name": "info", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the info section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 211, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L211" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3364, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3365, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 217, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L217" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3366, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 223, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L223" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3367, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 229, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3368, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 235, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L235" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3369, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 241, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L241" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3370, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of info" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 245, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L245" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3372, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 251, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L251" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3373, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of info" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 255, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L255" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3374, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3375, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 261, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L261" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3376, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of info" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.info.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 267, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L267" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3375, - 3376 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 255, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L255" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3372, - 3373 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 245, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L245" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3365, - 3366, - 3367, - 3368, - 3369, - 3370 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 211, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L211" - } - ] - } - } - }, - { - "id": 3377, - "name": "success", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the success section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 274, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L274" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3378, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3379, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 280, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L280" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3380, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 286, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L286" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3381, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 292, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L292" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3382, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 298, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L298" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3383, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 304, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L304" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3384, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of success" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 308, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3385, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3386, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 314, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3387, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of success" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 318, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L318" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3388, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3389, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 324, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L324" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3390, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of success" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.success.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 330, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L330" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3389, - 3390 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 318, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L318" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3386, - 3387 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 308, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L308" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3379, - 3380, - 3381, - 3382, - 3383, - 3384 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 274, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L274" - } - ] - } - } - }, - { - "id": 3391, - "name": "warn", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the warn section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 337, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L337" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3392, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3393, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3394, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3395, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 355, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L355" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3396, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 361, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L361" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3397, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 367, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L367" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3398, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of warn" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 371, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L371" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3399, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3400, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 377, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L377" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3401, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of warn" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 381, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L381" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3402, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3403, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 387, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L387" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3404, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of warn" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.warn.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 393, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L393" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3403, - 3404 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 381, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L381" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3400, - 3401 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 371, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L371" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3393, - 3394, - 3395, - 3396, - 3397, - 3398 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 337, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L337" - } - ] - } - } - }, - { - "id": 3405, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the error section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 400, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L400" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3406, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3407, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 406, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L406" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3408, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 412, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L412" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3409, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 418, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L418" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3410, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 424, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L424" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3411, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 430, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L430" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3412, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of error" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 434, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L434" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3413, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3414, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 440, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L440" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3415, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of error" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 444, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L444" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3416, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3417, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 450, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L450" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3418, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of error" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.error.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 456, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L456" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3417, - 3418 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 444, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L444" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3414, - 3415 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 434, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L434" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3407, - 3408, - 3409, - 3410, - 3411, - 3412 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 400, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L400" - } - ] - } - } - }, - { - "id": 3419, - "name": "secondary", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the secondary section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 463, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L463" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3420, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3421, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 469, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L469" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3422, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 475, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L475" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3423, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 481, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L481" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3424, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 487, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L487" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3425, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 493, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L493" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3426, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of secondary" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 497, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L497" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3427, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3428, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 503, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L503" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3429, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of secondary" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 507, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L507" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3430, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3431, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 513, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L513" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3432, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of secondary" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.secondary.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 519, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L519" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3431, - 3432 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 507, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L507" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3428, - 3429 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 497, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L497" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3421, - 3422, - 3423, - 3424, - 3425, - 3426 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 463, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L463" - } - ] - } - } - }, - { - "id": 3433, - "name": "contrast", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the contrast section" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 526, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L526" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3434, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3435, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 532, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L532" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3436, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 538, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L538" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3437, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 544, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L544" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3438, - "name": "detailColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Detail color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.detail.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 550, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L550" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3439, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 556, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L556" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3440, - "name": "closeButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button of contrast" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 560, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L560" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3441, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3442, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button hover background of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 566, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L566" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3443, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring of contrast" - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 570, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L570" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3444, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3445, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring color of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 576, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L576" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3446, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Close button focus ring shadow of contrast" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toast.contrast.close.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 582, - "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L582" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3445, - 3446 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 570, - "character": 24, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L570" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3442, - 3443 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 560, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L560" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3435, - 3436, - 3437, - 3438, - 3439, - 3440 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 526, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L526" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3447, - 3319, - 3325, - 3328, - 3332, - 3335, - 3339, - 3343, - 3353, - 3356, - 3363, - 3377, - 3391, - 3405, - 3419, - 3433 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3318, - "name": "ToastDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3318 - ] - } - ], - "sources": [ - { - "fileName": "toast/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toast/index.d.ts#L1" - } - ] - }, - { - "id": 3451, - "name": "themes/togglebutton", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ToggleButton Design Tokens\n\n[Live Demo](https://www.primeng.org/togglebutton/)" - } - ] - }, - "children": [ - { - "id": 3452, - "name": "ToggleButtonDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3491, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3492, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3493, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3494, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3493, - 3494 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3453, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3454, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3455, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3456, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3457, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3458, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3459, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3460, - "name": "disabledBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3461, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3462, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3463, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 69, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3464, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3465, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3466, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3467, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 87, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3468, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 93, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3469, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 99, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3465, - 3466, - 3467, - 3468, - 3469 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 69, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3470, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3471, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3472, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3473, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 124, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L124" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3474, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3475, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3476, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 142, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L142" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3477, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3478, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3455, - 3456, - 3457, - 3458, - 3459, - 3460, - 3461, - 3462, - 3463, - 3470, - 3471, - 3472, - 3473, - 3474, - 3475, - 3476, - 3477, - 3478 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3479, - "name": "icon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the icon section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 159, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L159" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3480, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3481, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3482, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3483, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3484, - "name": "checkedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked color of icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.icon.checked.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3481, - 3482, - 3483, - 3484 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 159, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L159" - } - ] - } - } - }, - { - "id": 3485, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 188, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L188" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3486, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3487, - "name": "left", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Left of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.left" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3488, - "name": "top", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Top of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.top" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3489, - "name": "checkedShadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked shadow of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.checked.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 206, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L206" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3490, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "togglebutton.content.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 212, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L212" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3487, - 3488, - 3489, - 3490 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 188, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L188" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3491, - 3453, - 3479, - 3485 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3452, - "name": "ToggleButtonDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3452 - ] - } - ], - "sources": [ - { - "fileName": "togglebutton/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/togglebutton/index.d.ts#L1" - } - ] - }, - { - "id": 3495, - "name": "themes/toggleswitch", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ToggleSwitch Design Tokens\n\n[Live Demo](https://www.primeng.org/toggleswitch/)" - } - ] - }, - "children": [ - { - "id": 3496, - "name": "ToggleSwitchDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3533, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3534, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3535, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3536, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3535, - 3536 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3497, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3498, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3499, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3500, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Height of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.height" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3501, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3502, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3503, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3504, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 51, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3505, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3506, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 57, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L57" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3507, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 63, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L63" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3508, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 69, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3509, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 75, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3510, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 81, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3506, - 3507, - 3508, - 3509, - 3510 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 51, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" - } - ] - } - } - }, - { - "id": 3511, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3512, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3513, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3514, - "name": "checkedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 106, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L106" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3515, - "name": "checkedHoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 112, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L112" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3516, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 118, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L118" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3517, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 124, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L124" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3518, - "name": "slideDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Slide duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.slide.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 130, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L130" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3519, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 136, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L136" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3520, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 142, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L142" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3521, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3522, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 154, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L154" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3523, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 160, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L160" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3499, - 3500, - 3501, - 3502, - 3503, - 3504, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3518, - 3519, - 3520, - 3521, - 3522, - 3523 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3524, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the handle section" - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 165, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3525, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3526, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 171, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L171" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3527, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 177, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L177" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3528, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 183, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L183" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3529, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 189, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L189" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3530, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 195, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L195" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3531, - "name": "checkedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.checked.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 201, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3532, - "name": "checkedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Checked hover background of handle" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toggleswitch.handle.checked.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 207, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L207" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 165, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3533, - 3497, - 3524 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3496, - "name": "ToggleSwitchDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3496 - ] - } - ], - "sources": [ - { - "fileName": "toggleswitch/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toggleswitch/index.d.ts#L1" - } - ] - }, - { - "id": 3537, - "name": "themes/toolbar", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Toolbar Design Tokens\n\n[Live Demo](https://www.primeng.org/toolbar/)" - } - ] - }, - "children": [ - { - "id": 3538, - "name": "ToolbarDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3547, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3548, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3549, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3550, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3549, - 3550 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3539, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3540, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3541, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3542, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3543, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3544, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3545, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3546, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "toolbar.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3541, - 3542, - 3543, - 3544, - 3545, - 3546 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3547, - 3539 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3538, - "name": "ToolbarDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3538 - ] - } - ], - "sources": [ - { - "fileName": "toolbar/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/toolbar/index.d.ts#L1" - } - ] - }, - { - "id": 3551, - "name": "themes/tooltip", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tooltip Design Tokens\n\n[Live Demo](https://www.primeng.org/tooltip/)" - } - ] - }, - "children": [ - { - "id": 3552, - "name": "TooltipDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3562, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3563, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3564, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3565, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3564, - 3565 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3553, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3554, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3555, - "name": "maxWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Max width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.max.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3556, - "name": "gutter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gutter of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.gutter" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3557, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3558, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3559, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3560, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3561, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tooltip.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3555, - 3556, - 3557, - 3558, - 3559, - 3560, - 3561 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L17" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3562, - 3553 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3552, - "name": "TooltipDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3552 - ] - } - ], - "sources": [ - { - "fileName": "tooltip/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tooltip/index.d.ts#L1" - } - ] - }, - { - "id": 3566, - "name": "themes/tree", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Tree Design Tokens\n\n[Live Demo](https://www.primeng.org/tree/)" - } - ] - }, - "children": [ - { - "id": 3567, - "name": "TreeDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3617, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3618, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3619, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3620, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3619, - 3620 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3568, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3569, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3570, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3571, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3572, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3573, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3574, - "name": "indent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Indent of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.indent" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3575, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3570, - 3571, - 3572, - 3573, - 3574, - 3575 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3576, - "name": "node", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 58, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L58" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3577, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3578, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3579, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 70, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L70" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3580, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 76, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L76" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3581, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 82, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L82" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3582, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 88, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L88" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3583, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 94, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L94" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3584, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 100, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L100" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3585, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L104" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3586, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3587, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 110, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L110" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3588, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 116, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L116" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3589, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 122, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L122" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3590, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 128, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L128" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3591, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 134, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L134" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3587, - 3588, - 3589, - 3590, - 3591 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 104, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L104" - } - ] - } - } - }, - { - "id": 3592, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of node" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 141, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3578, - 3579, - 3580, - 3581, - 3582, - 3583, - 3584, - 3585, - 3592 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 58, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L58" - } - ] - } - } - }, - { - "id": 3593, - "name": "nodeIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node icon section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 146, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L146" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3594, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3595, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 152, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L152" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3596, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 158, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L158" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3597, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of node icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.icon.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 164, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L164" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3595, - 3596, - 3597 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 146, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L146" - } - ] - } - } - }, - { - "id": 3598, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 169, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L169" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3599, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3600, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 175, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L175" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3601, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 181, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L181" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3602, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 187, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L187" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3603, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 193, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L193" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3604, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 199, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L199" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3605, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 205, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L205" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3606, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3607, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 215, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L215" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3608, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3609, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 221, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L221" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3610, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 227, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3611, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 233, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3612, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 239, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3613, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 245, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L245" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3609, - 3610, - 3611, - 3612, - 3613 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 215, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L215" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3600, - 3601, - 3602, - 3603, - 3604, - 3605, - 3606, - 3607 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 169, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L169" - } - ] - } - } - }, - { - "id": 3614, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 251, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L251" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3615, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3616, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "tree.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 257, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L257" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3616 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 251, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L251" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3617, - 3568, - 3576, - 3593, - 3598, - 3614 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3567, - "name": "TreeDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3567 - ] - } - ], - "sources": [ - { - "fileName": "tree/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/tree/index.d.ts#L1" - } - ] - }, - { - "id": 3621, - "name": "themes/treeselect", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TreeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/treeselect/)" - } - ] - }, - "children": [ - { - "id": 3622, - "name": "TreeSelectDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3668, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3669, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3670, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3671, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3670, - 3671 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3623, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3624, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3625, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3626, - "name": "disabledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.disabled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3627, - "name": "filledBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.filled.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 35, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L35" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3628, - "name": "filledFocusBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filled focus background of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.filled.focus.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 41, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3629, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 47, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L47" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3630, - "name": "hoverBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.hover.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 53, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L53" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3631, - "name": "focusBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 59, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L59" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3632, - "name": "invalidBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Invalid border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.invalid.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 65, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L65" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3633, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 71, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L71" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3634, - "name": "disabledColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Disabled color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.disabled.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 77, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L77" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3635, - "name": "placeholderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Placeholder color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.placeholder.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 83, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L83" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3636, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 89, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3637, - "name": "paddingX", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding x of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.padding.x" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 95, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L95" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3638, - "name": "paddingY", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding y of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.padding.y" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 101, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L101" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3639, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 107, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L107" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3640, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of root" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L111" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3641, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3642, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 117, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3643, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 123, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3644, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 129, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L129" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3645, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 135, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L135" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3646, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 141, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L141" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3642, - 3643, - 3644, - 3645, - 3646 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 111, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L111" - } - ] - } - } - }, - { - "id": 3647, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 148, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L148" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631, - 3632, - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3647 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3648, - "name": "dropdown", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the dropdown section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 153, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L153" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3649, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3650, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.dropdown.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 159, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L159" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3651, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of dropdown" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.dropdown.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 165, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L165" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3650, - 3651 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 153, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L153" - } - ] - } - } - }, - { - "id": 3652, - "name": "overlay", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the overlay section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 170, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L170" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3653, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3654, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 176, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L176" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3655, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 182, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L182" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3656, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 188, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L188" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3657, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 194, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L194" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3658, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Shadow of overlay" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.overlay.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 200, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L200" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3654, - 3655, - 3656, - 3657, - 3658 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 170, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L170" - } - ] - } - } - }, - { - "id": 3659, - "name": "tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the tree section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 205, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L205" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3660, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3661, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of tree" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.tree.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 211, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L211" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3661 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 205, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L205" - } - ] - } - } - }, - { - "id": 3662, - "name": "emptyMessage", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the empty message section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 216, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L216" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3663, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3664, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of empty message" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.empty.message.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 222, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L222" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3664 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 216, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L216" - } - ] - } - } - }, - { - "id": 3665, - "name": "chip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the chip section" - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 227, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L227" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3666, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3667, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of chip" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treeselect.chip.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 233, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L233" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3667 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 227, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L227" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3668, - 3623, - 3648, - 3652, - 3659, - 3662, - 3665 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3622, - "name": "TreeSelectDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3622 - ] - } - ], - "sources": [ - { - "fileName": "treeselect/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treeselect/index.d.ts#L1" - } - ] - }, - { - "id": 3672, - "name": "themes/treetable", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "TreeTable Design Tokens\n\n[Live Demo](https://www.primeng.org/treetable/)" - } - ] - }, - "children": [ - { - "id": 3673, - "name": "TreeTableDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3786, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3787, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3788, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3789, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3788, - 3789 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3674, - "name": "root", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the root section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3675, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3676, - "name": "transitionDuration", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Transition duration of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.transition.duration" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3677, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of root" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3676, - 3677 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3678, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3679, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3680, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3681, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 46, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L46" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3682, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 52, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L52" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3683, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 58, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L58" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3684, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 64, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L64" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3680, - 3681, - 3682, - 3683, - 3684 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 34, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L34" - } - ] - } - } - }, - { - "id": 3685, - "name": "headerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 69, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L69" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3686, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3687, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 75, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L75" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3688, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 81, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L81" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3689, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 87, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L87" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3690, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3691, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 99, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L99" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3692, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 105, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L105" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3693, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 111, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L111" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3694, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 117, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L117" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3695, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 123, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L123" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3696, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of header cell" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 127, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L127" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3697, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3698, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 133, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L133" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3699, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 139, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L139" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3700, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 145, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L145" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3701, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 151, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L151" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3702, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of header cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.header.cell.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 157, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L157" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3698, - 3699, - 3700, - 3701, - 3702 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 127, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L127" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 69, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L69" - } - ] - } - } - }, - { - "id": 3703, - "name": "columnTitle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column title section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 163, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L163" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3704, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3705, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 169, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L169" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3705 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 163, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L163" - } - ] - } - } - }, - { - "id": 3706, - "name": "row", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the row section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 174, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L174" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3707, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3708, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 180, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L180" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3709, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 186, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L186" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3710, - "name": "selectedBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected background of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.selected.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 192, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L192" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3711, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 198, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L198" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3712, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 204, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L204" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3713, - "name": "selectedColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.selected.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 210, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L210" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3714, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of row" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 214, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L214" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3715, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3716, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 220, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L220" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3717, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 226, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L226" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3718, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 232, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L232" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3719, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 238, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L238" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3720, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of row" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.row.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 244, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L244" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3716, - 3717, - 3718, - 3719, - 3720 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 214, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L214" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 174, - "character": 10, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L174" - } - ] - } - } - }, - { - "id": 3721, - "name": "bodyCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the body cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 250, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L250" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3722, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3723, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 256, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L256" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3724, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 262, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L262" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3725, - "name": "gap", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Gap of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.gap" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 268, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L268" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3726, - "name": "selectedBorderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected border color of body cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.body.cell.selected.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 274, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L274" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3723, - 3724, - 3725, - 3726 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 250, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L250" - } - ] - } - } - }, - { - "id": 3727, - "name": "footerCell", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer cell section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 279, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L279" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3728, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3729, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 285, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L285" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3730, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 291, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L291" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3731, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 297, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L297" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3732, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer cell" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.cell.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 303, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L303" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3729, - 3730, - 3731, - 3732 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 279, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L279" - } - ] - } - } - }, - { - "id": 3733, - "name": "columnFooter", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column footer section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 308, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L308" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3734, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3735, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of column footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.footer.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 314, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L314" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3735 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 308, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L308" - } - ] - } - } - }, - { - "id": 3736, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 319, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L319" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3737, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3738, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 325, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L325" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3739, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 331, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L331" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3740, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 337, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L337" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3741, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 343, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L343" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3742, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of footer" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.footer.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 349, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L349" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3738, - 3739, - 3740, - 3741, - 3742 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 319, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L319" - } - ] - } - } - }, - { - "id": 3743, - "name": "columnResizerWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the column resizer width section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 354, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L354" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3744, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3745, - "name": "0", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "0 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.0" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 360, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L360" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3746, - "name": "1", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "1 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.1" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 366, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L366" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3747, - "name": "2", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "2 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.2" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 372, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L372" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3748, - "name": "3", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "3 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.3" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 378, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L378" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3749, - "name": "4", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "4 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.4" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 384, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L384" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3750, - "name": "5", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "5 of column resizer width" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.column.resizer.width.5" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 390, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L390" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3745, - 3746, - 3747, - 3748, - 3749, - 3750 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 354, - "character": 25, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L354" - } - ] - } - } - }, - { - "id": 3751, - "name": "resizeIndicator", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the resize indicator section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 395, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L395" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3752, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3753, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Width of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.resize.indicator.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 401, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L401" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3754, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of resize indicator" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.resize.indicator.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 407, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L407" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3753, - 3754 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 395, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L395" - } - ] - } - } - }, - { - "id": 3755, - "name": "sortIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the sort icon section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 412, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L412" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3756, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3757, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.sort.icon.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 418, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L418" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3758, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of sort icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.sort.icon.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 424, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L424" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3757, - 3758 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 412, - "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L412" - } - ] - } - } - }, - { - "id": 3759, - "name": "loadingIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loading icon section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 429, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L429" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3760, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3761, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of loading icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.loading.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 435, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L435" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3761 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 429, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L429" - } - ] - } - } - }, - { - "id": 3762, - "name": "nodeToggleButton", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the node toggle button section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 440, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L440" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3763, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3764, - "name": "hoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 446, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L446" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3765, - "name": "selectedHoverBackground", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover background of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.selected.hover.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 452, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L452" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3766, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 458, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L458" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3767, - "name": "hoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 464, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L464" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3768, - "name": "selectedHoverColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Selected hover color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.selected.hover.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 470, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L470" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3769, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 476, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L476" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3770, - "name": "borderRadius", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border radius of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.border.radius" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 482, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L482" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3771, - "name": "focusRing", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring of node toggle button" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 486, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L486" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3772, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3773, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring width of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 492, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L492" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3774, - "name": "style", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring style of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.style" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 498, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L498" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3775, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring color of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 504, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L504" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3776, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring offset of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.offset" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 510, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L510" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3777, - "name": "shadow", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Focus ring shadow of node toggle button" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.node.toggle.button.focus.ring.shadow" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 516, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L516" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3773, - 3774, - 3775, - 3776, - 3777 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 486, - "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L486" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3764, - 3765, - 3766, - 3767, - 3768, - 3769, - 3770, - 3771 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 440, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L440" - } - ] - } - } - }, - { - "id": 3778, - "name": "paginatorTop", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator top section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 522, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L522" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3780, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.top.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 528, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L528" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3781, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator top" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.top.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 534, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L534" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3780, - 3781 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 522, - "character": 19, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L522" - } - ] - } - } - }, - { - "id": 3782, - "name": "paginatorBottom", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the paginator bottom section" - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 539, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L539" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3783, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3784, - "name": "borderColor", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border color of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.bottom.border.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 545, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L545" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3785, - "name": "borderWidth", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Border width of paginator bottom" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "treetable.paginator.bottom.border.width" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 551, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L551" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3784, - 3785 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 539, - "character": 22, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L539" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3786, - 3674, - 3678, - 3685, - 3703, - 3706, - 3721, - 3727, - 3733, - 3736, - 3743, - 3751, - 3755, - 3759, - 3762, - 3778, - 3782 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3673, - "name": "TreeTableDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3673 - ] - } - ], - "sources": [ - { - "fileName": "treetable/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/treetable/index.d.ts#L1" - } - ] - }, - { - "id": 3790, - "name": "themes/scroller", - "variant": "declaration", - "kind": 2, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "VirtualScroller Design Tokens\n\n[Live Demo](https://www.primeng.org/virtualscroller/)" - } - ] - }, - "children": [ - { - "id": 3791, - "name": "VirtualScrollerDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3799, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3800, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3801, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 3802, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3801, - 3802 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 1605, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { - "id": 3792, - "name": "loaderMask", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the mask section" - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 17, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3793, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3794, - "name": "background", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Background of loader mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.mask.background" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 23, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L23" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 3795, - "name": "color", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Color of loader mask" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.mask.color" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 29, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L29" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3794, - 3795 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 17, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 3796, - "name": "loaderIcon", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the loader icon section" - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 34, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3797, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3798, - "name": "size", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Size of the loader icon" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "virtualscroller.loader.icon.size" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 40, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L40" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3798 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 34, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3799, - 3792, - 3796 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L13" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 1604, - "typeArguments": [ - { - "type": "reference", - "target": 3791, - "name": "VirtualScrollerDesignTokens", - "package": "primeng" - } - ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3791 - ] - } - ], - "sources": [ - { - "fileName": "virtualscroller/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c56704e5a2254af48cd476e0f76437c5a45f4bc4/src/app/components/themes/types/virtualscroller/index.d.ts#L1" - } - ] - } - ], - "groups": [ - { - "title": "Modules", - "children": [ - 1, - 56, - 141, - 168, - 228, - 237, - 269, - 527, - 553, - 584, - 646, - 686, - 720, - 750, - 763, - 790, - 832, - 1007, - 1051, - 1175, - 1203, - 1230, - 1254, - 1277, - 1305, - 1342, - 1382, - 1421, - 1433, - 1546, - 1555, - 1603, - 1681, - 1734, - 1756, - 1792, - 1804, - 1827, - 1868, - 1893, - 1952, - 2034, - 2073, - 2139, - 2252, - 2279, - 2352, - 2364, - 2407, - 2419, - 2457, - 2489, - 2534, - 2564, - 2576, - 2594, - 2613, - 2625, - 2663, - 2679, - 2688, - 2709, - 2786, - 2796, - 2807, - 2846, - 2856, - 2867, - 2894, - 2951, - 2992, - 3039, - 3107, - 3137, - 3182, - 3202, - 3233, - 3281, - 3317, - 3451, - 3495, - 3537, - 3551, - 3566, - 3621, - 3672, - 3790 - ] - } - ], - "packageName": "primeng", - "packageVersion": "18.0.0-beta.1", - "readme": [ - { - "kind": "text", - "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." - } - ], - "symbolIdMap": { - "1": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "" - }, - "2": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens" - }, - "3": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.root" - }, - "4": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "5": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.transitionDuration" - }, - "6": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.panel" - }, - "7": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "8": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "9": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "10": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.header" - }, - "11": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "12": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "13": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "14": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" - }, - "15": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.padding" - }, - "16": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.fontWeight" - }, - "17": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderRadius" - }, - "18": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "19": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "20": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.background" - }, - "21": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverBackground" - }, - "22": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBackground" - }, - "23": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverBackground" - }, - "24": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.focusRing" - }, - "25": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "26": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.width" - }, - "27": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.style" - }, - "28": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "29": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.offset" - }, - "30": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.shadow" - }, - "31": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.toggleIcon" - }, - "32": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "33": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "34": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "35": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" - }, - "36": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverColor" - }, - "37": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.first" - }, - "38": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "39": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.topBorderRadius" - }, - "40": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "41": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.last" - }, - "42": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "43": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.bottomBorderRadius" - }, - "44": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBottomBorderRadius" - }, - "45": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.content" - }, - "46": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "47": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "48": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "49": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.background" - }, - "50": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "51": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.padding" - }, - "52": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "53": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "54": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "55": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "56": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "" - }, - "57": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens" - }, - "58": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.root" - }, - "59": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "60": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "61": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "62": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "63": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "64": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "65": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "66": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "67": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "68": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "69": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "70": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "71": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "72": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "73": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "74": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "75": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "76": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "77": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "78": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.style" - }, - "79": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "80": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.offset" - }, - "81": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "82": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "83": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.overlay" - }, - "84": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "85": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "86": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "87": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "88": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "89": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "90": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.list" - }, - "91": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "92": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "93": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.gap" - }, - "94": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.option" - }, - "95": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "96": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "97": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "98": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "99": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "100": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "101": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "102": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "103": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "104": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "105": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.optionGroup" - }, - "106": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "107": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "108": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "109": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "110": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "111": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.dropdown" - }, - "112": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "113": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "114": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "115": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "116": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "117": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "118": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "119": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "120": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.width" - }, - "121": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.style" - }, - "122": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "123": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.offset" - }, - "124": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "125": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.background" - }, - "126": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "127": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "128": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.color" - }, - "129": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "130": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "131": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.chip" - }, - "132": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "133": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "134": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "AutoCompleteDesignTokens.emptyMessage" - }, - "135": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type" - }, - "136": { - "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", - "qualifiedName": "__type.padding" - }, - "137": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "138": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "139": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "140": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "141": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "" - }, - "142": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens" - }, - "143": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.root" - }, - "144": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "145": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "146": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "147": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "148": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.background" - }, - "149": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "150": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.group" - }, - "151": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "152": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "153": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.offset" - }, - "154": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.lg" - }, - "155": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "156": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "157": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "158": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "159": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "AvatarDesignTokens.xl" - }, - "160": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type" - }, - "161": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.width" - }, - "162": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.height" - }, - "163": { - "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "164": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "165": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "166": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "167": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "168": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "" - }, - "169": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens" - }, - "170": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.root" - }, - "171": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "172": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "173": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.padding" - }, - "174": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "175": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "176": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "177": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "178": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.dot" - }, - "179": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "180": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.size" - }, - "181": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.sm" - }, - "182": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "183": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "184": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "185": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "186": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.lg" - }, - "187": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "188": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "189": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "190": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "191": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.xl" - }, - "192": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "193": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "194": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.minWidth" - }, - "195": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.height" - }, - "196": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.primary" - }, - "197": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "198": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "199": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "200": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.secondary" - }, - "201": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "202": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "203": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "204": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.success" - }, - "205": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "206": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "207": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "208": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.info" - }, - "209": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "210": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "211": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "212": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.warn" - }, - "213": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "214": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "215": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "216": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.danger" - }, - "217": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "218": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "219": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "220": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "BadgeDesignTokens.contrast" - }, - "221": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type" - }, - "222": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.background" - }, - "223": { - "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", - "qualifiedName": "__type.color" - }, - "224": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "225": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "226": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "227": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "228": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "" - }, - "229": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "BlockUIDesignTokens" - }, - "230": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "BlockUIDesignTokens.root" - }, - "231": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "__type" - }, - "232": { - "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "233": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "234": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "235": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "236": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "237": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "" - }, - "238": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens" - }, - "239": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.root" - }, - "240": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "241": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.padding" - }, - "242": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.background" - }, - "243": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.gap" - }, - "244": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "245": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.item" - }, - "246": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "247": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "248": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "249": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "250": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.gap" - }, - "251": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.icon" - }, - "252": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "253": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "254": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "255": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "256": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "257": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.width" - }, - "258": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.style" - }, - "259": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "260": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.offset" - }, - "261": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "262": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "BreadcrumbDesignTokens.separator" - }, - "263": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type" - }, - "264": { - "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", - "qualifiedName": "__type.color" - }, - "265": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "266": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "267": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "268": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "269": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "" - }, - "270": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens" - }, - "271": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.root" - }, - "272": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "273": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "274": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "275": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.gap" - }, - "276": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "277": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "278": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.iconOnlyWidth" - }, - "279": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.sm" - }, - "280": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "281": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "282": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "283": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "284": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.lg" - }, - "285": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "286": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "287": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "288": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "289": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.label" - }, - "290": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "291": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "292": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.raisedShadow" - }, - "293": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "294": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "295": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.width" - }, - "296": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.style" - }, - "297": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.offset" - }, - "298": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.badgeSize" - }, - "299": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "300": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "301": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "302": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "303": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "304": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "305": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "306": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "307": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "308": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "309": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "310": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "311": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "312": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "313": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "314": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "315": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "316": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "317": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "318": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "319": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "320": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "321": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "322": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "323": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "324": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "325": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "326": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "327": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "328": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "329": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "330": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "331": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "332": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "333": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "334": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "335": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "336": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "337": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "338": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "339": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "340": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "341": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "342": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "343": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "344": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "345": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "346": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "347": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "348": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "349": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "350": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "351": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "352": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "353": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "354": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "355": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "356": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "357": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "358": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "359": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "360": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "361": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "362": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "363": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "364": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "365": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "366": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "367": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "368": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "369": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "370": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "371": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "372": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "373": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "374": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "375": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "376": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "377": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "378": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "379": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "380": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "381": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "382": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "383": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "384": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "385": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "386": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "387": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "388": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "389": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "390": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "391": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "392": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "393": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "394": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "395": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "396": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "397": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "398": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "399": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "400": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "401": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "402": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "403": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "404": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "405": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.contrast" - }, - "406": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "407": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.background" - }, - "408": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "409": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "410": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "411": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "412": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "413": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "414": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "415": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "416": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "417": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "418": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "419": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "420": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.outlined" - }, - "421": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "422": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "423": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "424": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "425": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "426": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "427": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "428": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "429": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "430": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "431": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "432": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "433": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "434": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "435": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "436": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "437": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "438": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "439": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "440": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "441": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "442": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "443": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "444": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "445": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "446": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "447": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "448": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "449": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "450": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "451": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "452": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "453": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "454": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "455": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "456": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "457": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "458": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "459": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "460": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "461": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "462": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "463": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "464": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.contrast" - }, - "465": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "466": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "467": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "468": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "469": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "470": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.plain" - }, - "471": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "472": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "473": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "474": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "475": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "476": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.text" - }, - "477": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "478": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.primary" - }, - "479": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "480": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "481": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "482": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "483": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.secondary" - }, - "484": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "485": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "486": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "487": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "488": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.success" - }, - "489": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "490": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "491": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "492": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "493": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.info" - }, - "494": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "495": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "496": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "497": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "498": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.warn" - }, - "499": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "500": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "501": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "502": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "503": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.help" - }, - "504": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "505": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "506": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "507": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "508": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.danger" - }, - "509": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "510": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "511": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "512": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "513": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.plain" - }, - "514": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "515": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "516": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "517": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "518": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "ButtonDesignTokens.link" - }, - "519": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type" - }, - "520": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.color" - }, - "521": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "522": { - "sourceFileName": "src/app/components/themes/types/button/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "523": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "524": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "525": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "526": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "527": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "" - }, - "528": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens" - }, - "529": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.root" - }, - "530": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "531": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.background" - }, - "532": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "533": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.color" - }, - "534": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "535": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.body" - }, - "536": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "537": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.padding" - }, - "538": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.gap" - }, - "539": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.caption" - }, - "540": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "541": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.gap" - }, - "542": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.title" - }, - "543": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "544": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "545": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "546": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "CardDesignTokens.subtitle" - }, - "547": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type" - }, - "548": { - "sourceFileName": "src/app/components/themes/types/card/index.d.ts", - "qualifiedName": "__type.color" - }, - "549": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "550": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "551": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "552": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "553": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "" - }, - "554": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens" - }, - "555": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.root" - }, - "556": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "557": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "558": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.content" - }, - "559": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "560": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.gap" - }, - "561": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.indicatorList" - }, - "562": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "563": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "564": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.gap" - }, - "565": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "CarouselDesignTokens.indicator" - }, - "566": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "567": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.width" - }, - "568": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.height" - }, - "569": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "570": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "571": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type" - }, - "572": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.width" - }, - "573": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.style" - }, - "574": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.color" - }, - "575": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.offset" - }, - "576": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "577": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.background" - }, - "578": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "579": { - "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "580": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "581": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "582": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "583": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "584": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "" - }, - "585": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens" - }, - "586": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.root" - }, - "587": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "588": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "589": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "590": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "591": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "592": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "593": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "594": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "595": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "596": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "597": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "598": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "599": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "600": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "601": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "602": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "603": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "604": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "605": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "606": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "607": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "608": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "609": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "610": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "611": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.dropdown" - }, - "612": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "613": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "614": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "615": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.overlay" - }, - "616": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "617": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "618": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "619": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "620": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "621": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "622": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.list" - }, - "623": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "624": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "625": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "626": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "CascadeSelectDesignTokens.option" - }, - "627": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "628": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "629": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "630": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "631": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "632": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "633": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "634": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "635": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "636": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "637": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.icon" - }, - "638": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type" - }, - "639": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "640": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "641": { - "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", - "qualifiedName": "__type.size" - }, - "642": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "643": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "644": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "645": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "646": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "" - }, - "647": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens" - }, - "648": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens.root" - }, - "649": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "650": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "651": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "652": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.height" - }, - "653": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "654": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "655": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "656": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "657": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "658": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "659": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "660": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "661": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "662": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "663": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedFocusBorderColor" - }, - "664": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedDisabledBorderColor" - }, - "665": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "666": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "667": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "668": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "669": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "670": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.style" - }, - "671": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "672": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.offset" - }, - "673": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "674": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "675": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "CheckboxDesignTokens.icon" - }, - "676": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type" - }, - "677": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.size" - }, - "678": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "679": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "680": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.checkedHoverColor" - }, - "681": { - "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "682": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "683": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "684": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "685": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "686": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "" - }, - "687": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens" - }, - "688": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.root" - }, - "689": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "690": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "691": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "692": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "693": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.gap" - }, - "694": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "695": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.background" - }, - "696": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "697": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.image" - }, - "698": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "699": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.width" - }, - "700": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.height" - }, - "701": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.icon" - }, - "702": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "703": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.size" - }, - "704": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "705": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "ChipDesignTokens.removeIcon" - }, - "706": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "707": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.size" - }, - "708": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "709": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type" - }, - "710": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.width" - }, - "711": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.style" - }, - "712": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "713": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.offset" - }, - "714": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "715": { - "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", - "qualifiedName": "__type.color" - }, - "716": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "717": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "718": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "719": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "720": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "" - }, - "721": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens" - }, - "722": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.root" - }, - "723": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "724": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "725": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.preview" - }, - "726": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "727": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "728": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.height" - }, - "729": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "730": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "731": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "732": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "733": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "734": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "735": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "736": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "737": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.panel" - }, - "738": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "739": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "740": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "741": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "742": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "743": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "ColorPickerDesignTokens.handle" - }, - "744": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type" - }, - "745": { - "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "746": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "747": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "748": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "749": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "750": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "" - }, - "751": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens" - }, - "752": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens.icon" - }, - "753": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type" - }, - "754": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.size" - }, - "755": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "756": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "ConfirmDialogDesignTokens.content" - }, - "757": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type" - }, - "758": { - "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "759": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "760": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "761": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "762": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "763": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "" - }, - "764": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens" - }, - "765": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.root" - }, - "766": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "767": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.background" - }, - "768": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "769": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.color" - }, - "770": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "771": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "772": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "773": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.arrowOffset" - }, - "774": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.content" - }, - "775": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "776": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.padding" - }, - "777": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "778": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.icon" - }, - "779": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "780": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.size" - }, - "781": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.color" - }, - "782": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "ConfirmPopupDesignTokens.footer" - }, - "783": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type" - }, - "784": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "785": { - "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", - "qualifiedName": "__type.padding" - }, - "786": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "787": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "790": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "" - }, - "791": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens" - }, - "792": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.root" - }, - "793": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "794": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "795": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "796": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "797": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "798": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "799": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "800": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.list" - }, - "801": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "802": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "803": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "804": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.item" - }, - "805": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "806": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "807": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "808": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "809": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "810": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "811": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "812": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "813": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "814": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "815": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "816": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "817": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "818": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "819": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.submenuIcon" - }, - "820": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "821": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "822": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "823": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "824": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "825": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "ContextMenuDesignTokens.separator" - }, - "826": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type" - }, - "827": { - "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "828": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "829": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "830": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "831": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "832": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "" - }, - "833": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens" - }, - "834": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.root" - }, - "835": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "836": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "837": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "838": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.header" - }, - "839": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "840": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "841": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "842": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "843": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "844": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "845": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.headerCell" - }, - "846": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "847": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "848": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "849": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "850": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "851": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "852": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "853": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "854": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "855": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "856": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "857": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "858": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "859": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "860": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "861": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "862": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "863": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnTitle" - }, - "864": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "865": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "866": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.row" - }, - "867": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "868": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "869": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "870": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "871": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "872": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "873": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "874": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "875": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "876": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "877": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "878": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "879": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "880": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "881": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.stripedBackground" - }, - "882": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.bodyCell" - }, - "883": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "884": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "885": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "886": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBorderColor" - }, - "887": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.footerCell" - }, - "888": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "889": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "890": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "891": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "892": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "893": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnFooter" - }, - "894": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "895": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "896": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.footer" - }, - "897": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "898": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "899": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "900": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "901": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "902": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "903": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.dropPointColor" - }, - "904": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "905": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.0" - }, - "906": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.1" - }, - "907": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.2" - }, - "908": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.3" - }, - "909": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.4" - }, - "910": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.5" - }, - "911": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.6" - }, - "912": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.7" - }, - "913": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.8" - }, - "914": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.9" - }, - "915": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.10" - }, - "916": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.11" - }, - "917": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.12" - }, - "918": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.13" - }, - "919": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.14" - }, - "920": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.columnResizerWidth" - }, - "921": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "922": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.0" - }, - "923": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.1" - }, - "924": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.2" - }, - "925": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.3" - }, - "926": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.4" - }, - "927": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.5" - }, - "928": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.resizeIndicator" - }, - "929": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "930": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "931": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "932": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.sortIcon" - }, - "933": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "934": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "935": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "936": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.loadingIcon" - }, - "937": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "938": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.size" - }, - "939": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.rowToggleButton" - }, - "940": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "941": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "942": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" - }, - "943": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "944": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "945": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" - }, - "946": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.size" - }, - "947": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "948": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "949": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "950": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.width" - }, - "951": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.style" - }, - "952": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "953": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "954": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "955": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.filter" - }, - "956": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "957": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.inlineGap" - }, - "958": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.overlaySelect" - }, - "959": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "960": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "961": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "962": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "963": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "964": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "965": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.overlayPopover" - }, - "966": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "967": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.background" - }, - "968": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "969": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "970": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "971": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "972": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "973": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "974": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.rule" - }, - "975": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "976": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "977": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.constraintList" - }, - "978": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "979": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "980": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "981": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.constraint" - }, - "982": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "983": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "984": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "985": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "986": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.color" - }, - "987": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "988": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "989": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "990": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.separator" - }, - "991": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "992": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "993": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "994": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "995": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.paginatorTop" - }, - "996": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "997": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "998": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "999": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "DataTableDesignTokens.paginatorBottom" - }, - "1000": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type" - }, - "1001": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1002": { - "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1003": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1004": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1005": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1006": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1007": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "" - }, - "1008": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens" - }, - "1009": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.root" - }, - "1010": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1011": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1012": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1013": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1014": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1015": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.header" - }, - "1016": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1017": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1018": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1019": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1020": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1021": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1022": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1023": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.content" - }, - "1024": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1025": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1026": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1027": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1028": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1029": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1030": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1031": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.footer" - }, - "1032": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1033": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.background" - }, - "1034": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.color" - }, - "1035": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1036": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1037": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1038": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1039": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.paginatorTop" - }, - "1040": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1041": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1042": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1043": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "DataViewDesignTokens.paginatorBottom" - }, - "1044": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type" - }, - "1045": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1046": { - "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1047": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1048": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1049": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1050": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1051": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "" - }, - "1052": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens" - }, - "1053": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.root" - }, - "1054": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1055": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1056": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.panel" - }, - "1057": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1058": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1059": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1060": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1061": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1062": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1063": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1064": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.header" - }, - "1065": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1066": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1067": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1068": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1069": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1070": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1071": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1072": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.title" - }, - "1073": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1074": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1075": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1076": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.dropdown" - }, - "1077": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1078": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1079": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1080": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1081": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "1082": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1083": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1084": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1085": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1086": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "1087": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1088": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1089": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1090": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1091": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1092": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1093": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1094": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1095": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1096": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.inputIcon" - }, - "1097": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1098": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1099": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.selectMonth" - }, - "1100": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1101": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1102": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1103": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1104": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1105": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1106": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.selectYear" - }, - "1107": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1108": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1109": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1110": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1111": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1112": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1113": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.group" - }, - "1114": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1115": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1116": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1117": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.dayView" - }, - "1118": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1119": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1120": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.weekDay" - }, - "1121": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1122": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1123": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1124": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1125": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.date" - }, - "1126": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1127": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1128": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "1129": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.rangeSelectedBackground" - }, - "1130": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1131": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1132": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "1133": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.rangeSelectedColor" - }, - "1134": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1135": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.height" - }, - "1136": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1137": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1138": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1139": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1140": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.width" - }, - "1141": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.style" - }, - "1142": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1143": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1144": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1145": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.monthView" - }, - "1146": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1147": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1148": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.month" - }, - "1149": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1150": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1151": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.yearView" - }, - "1152": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1153": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1154": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.year" - }, - "1155": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1156": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1157": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.buttonbar" - }, - "1158": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1159": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1160": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1161": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.timePicker" - }, - "1162": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1163": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1164": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1165": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1166": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.buttonGap" - }, - "1167": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "DatePickerDesignTokens.today" - }, - "1168": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type" - }, - "1169": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.background" - }, - "1170": { - "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", - "qualifiedName": "__type.color" - }, - "1171": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1172": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1173": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1174": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1175": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "" - }, - "1176": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens" - }, - "1177": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.root" - }, - "1178": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1179": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.background" - }, - "1180": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1181": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "1182": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1183": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1184": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.header" - }, - "1185": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1186": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1187": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1188": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.title" - }, - "1189": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1190": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1191": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1192": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.content" - }, - "1193": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1194": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1195": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "DialogDesignTokens.footer" - }, - "1196": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type" - }, - "1197": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1198": { - "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1199": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1200": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1201": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1202": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1203": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "" - }, - "1204": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens" - }, - "1205": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.root" - }, - "1206": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1207": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1208": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.content" - }, - "1209": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1210": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.background" - }, - "1211": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.color" - }, - "1212": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.horizontal" - }, - "1213": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1214": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1215": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1216": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.content" - }, - "1217": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1218": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1219": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "DividerDesignTokens.vertical" - }, - "1220": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1221": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.margin" - }, - "1222": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1223": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.content" - }, - "1224": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type" - }, - "1225": { - "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1226": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1227": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1228": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1229": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1230": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "" - }, - "1231": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens" - }, - "1232": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens.root" - }, - "1233": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1234": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.background" - }, - "1235": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1236": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1237": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1238": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "DockDesignTokens.item" - }, - "1239": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1240": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1241": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1242": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.size" - }, - "1243": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1244": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type" - }, - "1245": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.width" - }, - "1246": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.style" - }, - "1247": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.color" - }, - "1248": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1249": { - "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1250": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1251": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1252": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1253": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1254": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "" - }, - "1255": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens" - }, - "1256": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.root" - }, - "1257": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1258": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.background" - }, - "1259": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1260": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.color" - }, - "1261": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1262": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1263": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.header" - }, - "1264": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1265": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1266": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.title" - }, - "1267": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1268": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1269": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1270": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "DrawerDesignTokens.content" - }, - "1271": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type" - }, - "1272": { - "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1273": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1274": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1275": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1276": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1277": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "" - }, - "1278": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens" - }, - "1279": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.root" - }, - "1280": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1281": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.background" - }, - "1282": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1283": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.color" - }, - "1284": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1285": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1286": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.header" - }, - "1287": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1288": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1289": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1290": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.title" - }, - "1291": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1292": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1293": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1294": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.content" - }, - "1295": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1296": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1297": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "DynamicDialogDesignTokens.footer" - }, - "1298": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type" - }, - "1299": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1300": { - "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1301": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1302": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1303": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1304": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1305": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "" - }, - "1306": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens" - }, - "1307": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.toolbar" - }, - "1308": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1309": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1310": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1311": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1312": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.toolbarItem" - }, - "1313": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1314": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1315": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1316": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1317": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.overlay" - }, - "1318": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1319": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1320": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1321": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1322": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1323": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1324": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1325": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.overlayOption" - }, - "1326": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1327": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1328": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1329": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1330": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1331": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1332": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "EditorDesignTokens.content" - }, - "1333": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type" - }, - "1334": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.background" - }, - "1335": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1336": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.color" - }, - "1337": { - "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1338": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1339": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1340": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1341": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1342": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "" - }, - "1343": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens" - }, - "1344": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.root" - }, - "1345": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1346": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.background" - }, - "1347": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1348": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1349": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1350": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1351": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1352": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.legend" - }, - "1353": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1354": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.background" - }, - "1355": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1356": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1357": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1358": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1359": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1360": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1361": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1362": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1363": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1364": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1365": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1366": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.width" - }, - "1367": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.style" - }, - "1368": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1369": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1370": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1371": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.toggleIcon" - }, - "1372": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1373": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.color" - }, - "1374": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1375": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "FieldsetDesignTokens.content" - }, - "1376": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type" - }, - "1377": { - "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1378": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1379": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1380": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1381": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1382": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "" - }, - "1383": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens" - }, - "1384": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.root" - }, - "1385": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1386": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.background" - }, - "1387": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1388": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.color" - }, - "1389": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1390": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1391": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.header" - }, - "1392": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1393": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.background" - }, - "1394": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.color" - }, - "1395": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1396": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1397": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1398": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1399": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.content" - }, - "1400": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1401": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.highlightBorderColor" - }, - "1402": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1403": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.file" - }, - "1404": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1405": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1406": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1407": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1408": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.info" - }, - "1409": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1410": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1411": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.progressbar" - }, - "1412": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1413": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.height" - }, - "1414": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "FileUploadDesignTokens.basic" - }, - "1415": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type" - }, - "1416": { - "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1417": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1418": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1419": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1420": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1421": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "" - }, - "1422": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "FloatLabelDesignTokens" - }, - "1423": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "FloatLabelDesignTokens.root" - }, - "1424": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type" - }, - "1425": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.color" - }, - "1426": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1427": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.invalidColor" - }, - "1428": { - "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1429": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1430": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1431": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1432": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1433": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "" - }, - "1434": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens" - }, - "1435": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.root" - }, - "1436": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1437": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1438": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1439": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1440": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1441": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.navButton" - }, - "1442": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1443": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1444": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1445": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1446": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1447": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1448": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1449": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.prev" - }, - "1450": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1451": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1452": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.next" - }, - "1453": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1454": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1455": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1456": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1457": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1458": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1459": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1460": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1461": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1462": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.navIcon" - }, - "1463": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1464": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1465": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailsContent" - }, - "1466": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1467": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1468": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1469": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailNavButton" - }, - "1470": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1471": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1472": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1473": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1474": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1475": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1476": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1477": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1478": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1479": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1480": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1481": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1482": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1483": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1484": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.thumbnailNavButtonIcon" - }, - "1485": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1486": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1487": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.caption" - }, - "1488": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1489": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1490": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1491": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1492": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.indicatorList" - }, - "1493": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1494": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1495": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1496": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.indicatorButton" - }, - "1497": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1498": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1499": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.height" - }, - "1500": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1501": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1502": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1503": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1504": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1505": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1506": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1507": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1508": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1509": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1510": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1511": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.insetIndicatorList" - }, - "1512": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1513": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1514": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.insetIndicatorButton" - }, - "1515": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1516": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1517": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1518": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1519": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.mask" - }, - "1520": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1521": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1522": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1523": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.closeButton" - }, - "1524": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1525": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1526": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "1527": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.background" - }, - "1528": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1529": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1530": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1531": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1532": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1533": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1534": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.width" - }, - "1535": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.style" - }, - "1536": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.color" - }, - "1537": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1538": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1539": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "GalleriaDesignTokens.closeButtonIcon" - }, - "1540": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type" - }, - "1541": { - "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", - "qualifiedName": "__type.size" - }, - "1542": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1543": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1544": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1545": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1546": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "" - }, - "1547": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "IconFieldDesignTokens" - }, - "1548": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "IconFieldDesignTokens.icon" - }, - "1549": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "__type" - }, - "1550": { - "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", - "qualifiedName": "__type.color" - }, - "1551": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1552": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1553": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1554": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1555": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "" - }, - "1556": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens" - }, - "1557": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.root" - }, - "1558": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1559": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1560": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.preview" - }, - "1561": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1562": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.icon" - }, - "1563": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1564": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.size" - }, - "1565": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.mask" - }, - "1566": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1567": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.background" - }, - "1568": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1569": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.toolbar" - }, - "1570": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1571": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.position" - }, - "1572": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1573": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.left" - }, - "1574": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.right" - }, - "1575": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.top" - }, - "1576": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "1577": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.blur" - }, - "1578": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.background" - }, - "1579": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1580": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "1581": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1582": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1583": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1584": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "ImageDesignTokens.action" - }, - "1585": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1586": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1587": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1588": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1589": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.size" - }, - "1590": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.iconSize" - }, - "1591": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1592": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1593": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type" - }, - "1594": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.width" - }, - "1595": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.style" - }, - "1596": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.color" - }, - "1597": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1598": { - "sourceFileName": "src/app/components/themes/types/image/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1599": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1600": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1601": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1602": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1603": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "" - }, - "1604": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken" - }, - "1605": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1606": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1607": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1608": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1609": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.T" - }, - "1610": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken" - }, - "1611": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.50" - }, - "1612": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.100" - }, - "1613": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.200" - }, - "1614": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.300" - }, - "1615": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.400" - }, - "1616": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.500" - }, - "1617": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.600" - }, - "1618": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.700" - }, - "1619": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.800" - }, - "1620": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.900" - }, - "1621": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PaletteDesignToken.950" - }, - "1622": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens" - }, - "1623": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.borderRadius" - }, - "1624": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1625": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.none" - }, - "1626": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.xs" - }, - "1627": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.sm" - }, - "1628": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.md" - }, - "1629": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.lg" - }, - "1630": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.xl" - }, - "1631": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.emerald" - }, - "1632": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.green" - }, - "1633": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.lime" - }, - "1634": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.red" - }, - "1635": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.orange" - }, - "1636": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.amber" - }, - "1637": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.yellow" - }, - "1638": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.teal" - }, - "1639": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.cyan" - }, - "1640": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.sky" - }, - "1641": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.blue" - }, - "1642": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.indigo" - }, - "1643": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.violet" - }, - "1644": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.purple" - }, - "1645": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.fuchsia" - }, - "1646": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.pink" - }, - "1647": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.rose" - }, - "1648": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.slate" - }, - "1649": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.gray" - }, - "1650": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.zinc" - }, - "1651": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.neutral" - }, - "1652": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.stone" - }, - "1653": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "PrimitiveDesignTokens.__index" - }, - "1655": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens" - }, - "1656": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.transitionDuration" - }, - "1657": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.focusRing" - }, - "1658": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1659": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.width" - }, - "1660": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.style" - }, - "1661": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.color" - }, - "1662": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1663": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1664": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.iconSize" - }, - "1665": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.anchorGutter" - }, - "1666": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.primary" - }, - "1667": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.formField" - }, - "1668": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1669": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1670": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1671": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1672": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1673": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1674": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.width" - }, - "1675": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.style" - }, - "1676": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.color" - }, - "1677": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1678": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1679": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "SemanticDesignTokens.__index" - }, - "1681": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "" - }, - "1682": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens" - }, - "1683": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.root" - }, - "1684": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1685": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1686": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1687": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1688": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.text" - }, - "1689": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1690": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1691": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.icon" - }, - "1692": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1693": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.size" - }, - "1694": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.info" - }, - "1695": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1696": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1697": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1698": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1699": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1700": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.success" - }, - "1701": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1702": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1703": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1704": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1705": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1706": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.warn" - }, - "1707": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1708": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1709": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1710": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1711": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1712": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.error" - }, - "1713": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1714": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1715": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1716": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1717": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1718": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.secondary" - }, - "1719": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1720": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1721": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1722": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1723": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1724": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "InlineMessageDesignTokens.contrast" - }, - "1725": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type" - }, - "1726": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.background" - }, - "1727": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1728": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.color" - }, - "1729": { - "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1730": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1731": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1732": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1733": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1734": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "" - }, - "1735": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens" - }, - "1736": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens.root" - }, - "1737": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1738": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1739": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1740": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1741": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1742": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.width" - }, - "1743": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.style" - }, - "1744": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.color" - }, - "1745": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1746": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1747": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1748": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "InplaceDesignTokens.display" - }, - "1749": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type" - }, - "1750": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1751": { - "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1752": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1753": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1754": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1755": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1756": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "" - }, - "1757": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens" - }, - "1758": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens.root" - }, - "1759": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1760": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.background" - }, - "1761": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1762": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "1763": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "1764": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1765": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1766": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1767": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1768": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1769": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1770": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "1771": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1772": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1773": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1774": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1775": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1776": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1777": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.width" - }, - "1778": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.style" - }, - "1779": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1780": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1781": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1782": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1783": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "InputChipsDesignTokens.chip" - }, - "1784": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type" - }, - "1785": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1786": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1787": { - "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", - "qualifiedName": "__type.color" - }, - "1788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1790": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1791": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1792": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "" - }, - "1793": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "InputGroupDesignTokens" - }, - "1794": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "InputGroupDesignTokens.addon" - }, - "1795": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type" - }, - "1796": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.background" - }, - "1797": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1798": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.color" - }, - "1799": { - "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1800": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1801": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1802": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1803": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1804": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "" - }, - "1805": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens" - }, - "1806": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens.root" - }, - "1807": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type" - }, - "1808": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1809": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "InputNumberDesignTokens.button" - }, - "1810": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type" - }, - "1811": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.width" - }, - "1812": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1813": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.verticalPadding" - }, - "1814": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.background" - }, - "1815": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "1816": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1817": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1818": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1819": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "1820": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.color" - }, - "1821": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "1822": { - "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1823": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1824": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1825": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1826": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1827": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "" - }, - "1828": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "InputTextDesignTokens" - }, - "1829": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "InputTextDesignTokens.root" - }, - "1830": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1831": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.background" - }, - "1832": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1833": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "1834": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "1835": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1836": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1837": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1838": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1839": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.color" - }, - "1840": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1841": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "1842": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1843": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1844": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1845": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1846": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1847": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1848": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.width" - }, - "1849": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.style" - }, - "1850": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.color" - }, - "1851": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1852": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1853": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1854": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.sm" - }, - "1855": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1856": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1857": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1858": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1859": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.lg" - }, - "1860": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type" - }, - "1861": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "1862": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "1863": { - "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "1864": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1865": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1866": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1867": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1868": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "" - }, - "1869": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens" - }, - "1870": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.root" - }, - "1871": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1872": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1873": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1874": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1875": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.width" - }, - "1876": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.style" - }, - "1877": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.color" - }, - "1878": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1879": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1880": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.value" - }, - "1881": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1882": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.background" - }, - "1883": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.range" - }, - "1884": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1885": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.background" - }, - "1886": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "KnobDesignTokens.text" - }, - "1887": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type" - }, - "1888": { - "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", - "qualifiedName": "__type.color" - }, - "1889": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1890": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1891": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1892": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1893": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "" - }, - "1894": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens" - }, - "1895": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.root" - }, - "1896": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1897": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "1898": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "1899": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1900": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "1901": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "1902": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "1903": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1904": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "1905": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1906": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1907": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "1908": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1909": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.width" - }, - "1910": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.style" - }, - "1911": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1912": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.offset" - }, - "1913": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1914": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1915": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.list" - }, - "1916": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1917": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1918": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1919": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.header" - }, - "1920": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1921": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1922": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.option" - }, - "1923": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1924": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1925": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "1926": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "1927": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1928": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1929": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "1930": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "1931": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1932": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1933": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.stripedBackground" - }, - "1934": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.optionGroup" - }, - "1935": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1936": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.background" - }, - "1937": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1938": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "1939": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1940": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.checkmark" - }, - "1941": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1942": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.color" - }, - "1943": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gutterStart" - }, - "1944": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.gutterEnd" - }, - "1945": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "ListboxDesignTokens.emptyMessage" - }, - "1946": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type" - }, - "1947": { - "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1948": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "1949": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "1950": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "1951": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "1952": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "" - }, - "1953": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens" - }, - "1954": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.root" - }, - "1955": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1956": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "1957": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1958": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1959": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1960": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1961": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.verticalOrientation" - }, - "1962": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1963": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1964": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1965": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.horizontalOrientation" - }, - "1966": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1967": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1968": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "1969": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.baseItem" - }, - "1970": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1971": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1972": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1973": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.item" - }, - "1974": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1975": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "1976": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "1977": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1978": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1979": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1980": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1981": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1982": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1983": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "1984": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1985": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1986": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "1987": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "1988": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.overlay" - }, - "1989": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1990": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "1991": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "1992": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "1993": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "1994": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "1995": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "1996": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "1997": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenu" - }, - "1998": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "1999": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2000": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2001": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenuLabel" - }, - "2002": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2003": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2004": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2005": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2006": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2007": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.submenuIcon" - }, - "2008": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2009": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "2010": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2011": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2012": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2013": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.separator" - }, - "2014": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2015": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2016": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "MegaMenuDesignTokens.mobileButton" - }, - "2017": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2018": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2019": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "2020": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2021": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2022": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2023": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2024": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type" - }, - "2025": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.width" - }, - "2026": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.style" - }, - "2027": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2028": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2029": { - "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2030": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2031": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2032": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2033": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2034": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "" - }, - "2035": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens" - }, - "2036": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.root" - }, - "2037": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2038": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2039": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2040": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2041": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2042": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2043": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2044": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.list" - }, - "2045": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2046": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2047": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2048": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.item" - }, - "2049": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2050": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2051": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2052": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2053": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2054": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2055": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2056": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2057": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2058": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2059": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2060": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.submenuLabel" - }, - "2061": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2062": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2063": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2064": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2065": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2066": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "MenuDesignTokens.separator" - }, - "2067": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type" - }, - "2068": { - "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2069": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2070": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2071": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2072": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2073": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "" - }, - "2074": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens" - }, - "2075": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.root" - }, - "2076": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2077": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2078": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2079": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2080": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2081": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2082": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2083": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2084": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.baseItem" - }, - "2085": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2086": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2087": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2088": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.item" - }, - "2089": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2090": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2091": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2092": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2093": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2094": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2095": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2096": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2097": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2098": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2099": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2100": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2101": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2102": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2103": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.submenu" - }, - "2104": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2105": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2106": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2107": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2108": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2109": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2110": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2111": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.mobileIndent" - }, - "2112": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.submenuIcon" - }, - "2113": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2114": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.size" - }, - "2115": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2116": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2117": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2118": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.separator" - }, - "2119": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2120": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2121": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "MenubarDesignTokens.mobileButton" - }, - "2122": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2123": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2124": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.size" - }, - "2125": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2126": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2127": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2128": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2129": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type" - }, - "2130": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.width" - }, - "2131": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.style" - }, - "2132": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2133": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2134": { - "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2135": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2136": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2137": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2138": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2139": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "" - }, - "2140": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens" - }, - "2141": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.root" - }, - "2142": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2143": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2144": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2145": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2146": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.content" - }, - "2147": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2148": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2149": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2150": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.text" - }, - "2151": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2152": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2153": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2154": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.icon" - }, - "2155": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2156": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.size" - }, - "2157": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.closeButton" - }, - "2158": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2159": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.width" - }, - "2160": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.height" - }, - "2161": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2162": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2163": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2164": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.width" - }, - "2165": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.style" - }, - "2166": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2167": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.closeIcon" - }, - "2168": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2169": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.size" - }, - "2170": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.info" - }, - "2171": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2172": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2173": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2174": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2175": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2176": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2177": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2178": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2179": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2180": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2181": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2182": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2183": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.success" - }, - "2184": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2185": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2186": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2187": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2188": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2189": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2190": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2191": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2192": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2193": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2194": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2195": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2196": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.warn" - }, - "2197": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2198": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2199": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2200": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2201": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2202": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2203": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2204": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2205": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2206": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2207": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2208": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2209": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.error" - }, - "2210": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2211": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2212": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2213": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2214": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2215": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2216": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2217": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2218": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2219": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2220": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2221": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2222": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.secondary" - }, - "2223": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2224": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2225": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2226": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2227": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2228": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2229": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2230": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2231": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2232": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2233": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2234": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2235": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "MessageDesignTokens.contrast" - }, - "2236": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2237": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.background" - }, - "2238": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2239": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2240": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2241": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "2242": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2243": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2244": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2245": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type" - }, - "2246": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.color" - }, - "2247": { - "sourceFileName": "src/app/components/themes/types/message/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2248": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2249": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2250": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2251": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2252": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "" - }, - "2253": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens" - }, - "2254": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.root" - }, - "2255": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2256": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2257": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2258": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.meters" - }, - "2259": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2260": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.background" - }, - "2261": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2262": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.label" - }, - "2263": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2264": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2265": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelMarker" - }, - "2266": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2267": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2268": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelIcon" - }, - "2269": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2270": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.size" - }, - "2271": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "MeterGroupDesignTokens.labelList" - }, - "2272": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type" - }, - "2273": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.verticalGap" - }, - "2274": { - "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", - "qualifiedName": "__type.horizontalGap" - }, - "2275": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2276": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2277": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2278": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2279": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "" - }, - "2280": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens" - }, - "2281": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.root" - }, - "2282": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2283": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2284": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2285": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2286": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "2287": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2288": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2289": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2290": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2291": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2292": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2293": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "2294": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2295": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "2296": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "2297": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2298": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2299": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2300": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "2301": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "2302": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2303": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2304": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2305": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2306": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.dropdown" - }, - "2307": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2308": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "2309": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2310": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.overlay" - }, - "2311": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2312": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2313": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2314": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2315": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2316": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2317": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.list" - }, - "2318": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2319": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2320": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2321": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.header" - }, - "2322": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2323": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2324": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.option" - }, - "2325": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2326": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2327": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2328": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "2329": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2330": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2331": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2332": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "2333": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2334": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2335": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2336": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.optionGroup" - }, - "2337": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2338": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "2339": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "2340": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2341": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2342": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.chip" - }, - "2343": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2344": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2345": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "MultiSelectDesignTokens.emptyMessage" - }, - "2346": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type" - }, - "2347": { - "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2348": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2349": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2350": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2351": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2352": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "" - }, - "2353": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens" - }, - "2354": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens.root" - }, - "2355": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type" - }, - "2356": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2357": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "OrderListDesignTokens.controls" - }, - "2358": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type" - }, - "2359": { - "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2360": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2361": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2362": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2363": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2364": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "" - }, - "2365": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens" - }, - "2366": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.root" - }, - "2367": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2368": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "2369": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2370": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.node" - }, - "2371": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2372": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.background" - }, - "2373": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2374": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2375": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2376": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2377": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2378": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2379": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2380": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.toggleablePadding" - }, - "2381": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2382": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.nodeToggleButton" - }, - "2383": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2384": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.background" - }, - "2385": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2386": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2387": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2388": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2389": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.size" - }, - "2390": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2391": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2392": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2393": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.width" - }, - "2394": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.style" - }, - "2395": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2396": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2397": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2398": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "OrganizationChartDesignTokens.connector" - }, - "2399": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type" - }, - "2400": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.color" - }, - "2401": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2402": { - "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", - "qualifiedName": "__type.height" - }, - "2403": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2404": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2405": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2406": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2407": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "" - }, - "2408": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "OverlayBadgeDesignTokens" - }, - "2409": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "OverlayBadgeDesignTokens.root" - }, - "2410": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type" - }, - "2411": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.outline" - }, - "2412": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type" - }, - "2413": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.width" - }, - "2414": { - "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", - "qualifiedName": "__type.color" - }, - "2415": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2416": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2417": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2418": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2419": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "" - }, - "2420": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens" - }, - "2421": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.root" - }, - "2422": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2423": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2424": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2425": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2426": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.background" - }, - "2427": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2428": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2429": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.navButton" - }, - "2430": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2431": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.background" - }, - "2432": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2433": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2434": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2435": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2436": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2437": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.width" - }, - "2438": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.height" - }, - "2439": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2440": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2441": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2442": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.width" - }, - "2443": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.style" - }, - "2444": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2445": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2446": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2447": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.currentPageReport" - }, - "2448": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2449": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.color" - }, - "2450": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "PaginatorDesignTokens.jumpToPageInput" - }, - "2451": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type" - }, - "2452": { - "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", - "qualifiedName": "__type.maxWidth" - }, - "2453": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2454": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2455": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2456": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2457": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "" - }, - "2458": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens" - }, - "2459": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.root" - }, - "2460": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2461": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2462": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2463": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2464": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2465": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.header" - }, - "2466": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2467": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2468": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2469": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2470": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2471": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2472": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2473": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.toggleableHeader" - }, - "2474": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2475": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2476": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.title" - }, - "2477": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2478": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2479": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.content" - }, - "2480": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2481": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2482": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.footer" - }, - "2483": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" - }, - "2484": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2485": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2486": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2487": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2488": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2489": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "" - }, - "2490": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens" - }, - "2491": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.root" - }, - "2492": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2493": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2494": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2495": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.panel" - }, - "2496": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2497": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "2498": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2499": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2500": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2501": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2502": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2503": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.first" - }, - "2504": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2505": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2506": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.topBorderRadius" - }, - "2507": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.last" - }, - "2508": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2509": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "2510": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.bottomBorderRadius" - }, - "2511": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.item" - }, - "2512": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2513": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2514": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2515": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2516": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2517": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2518": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2519": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "2520": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2521": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2522": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2523": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.submenu" - }, - "2524": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2525": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.indent" - }, - "2526": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "PanelMenuDesignTokens.submenuIcon" - }, - "2527": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2528": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "2529": { - "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2530": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2531": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2532": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2533": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2534": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "" - }, - "2535": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens" - }, - "2536": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.meter" - }, - "2537": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2538": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.background" - }, - "2539": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2540": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.height" - }, - "2541": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.icon" - }, - "2542": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2543": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.color" - }, - "2544": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.overlay" - }, - "2545": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2546": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.background" - }, - "2547": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2548": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2549": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.color" - }, - "2550": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2551": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2552": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.content" - }, - "2553": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2554": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2555": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "PasswordDesignTokens.strength" - }, - "2556": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type" - }, - "2557": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.weakBackground" - }, - "2558": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.mediumBackground" - }, - "2559": { - "sourceFileName": "src/app/components/themes/types/password/index.d.ts", - "qualifiedName": "__type.strongBackground" - }, - "2560": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2561": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2562": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2563": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2564": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "" - }, - "2565": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens" - }, - "2566": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens.root" - }, - "2567": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type" - }, - "2568": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2569": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "PickListDesignTokens.controls" - }, - "2570": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type" - }, - "2571": { - "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2572": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2573": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2574": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2575": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2576": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "" - }, - "2577": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens" - }, - "2578": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens.root" - }, - "2579": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type" - }, - "2580": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.background" - }, - "2581": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2582": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.color" - }, - "2583": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2584": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2585": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "2586": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.arrowOffset" - }, - "2587": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "PopoverDesignTokens.content" - }, - "2588": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type" - }, - "2589": { - "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2590": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2591": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2592": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2593": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2594": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "" - }, - "2595": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens" - }, - "2596": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.root" - }, - "2597": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2598": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2599": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2600": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.height" - }, - "2601": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.value" - }, - "2602": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2603": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "2604": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "ProgressBarDesignTokens.label" - }, - "2605": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type" - }, - "2606": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.color" - }, - "2607": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2608": { - "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2609": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2610": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2611": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2612": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2613": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "" - }, - "2614": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "ProgressSpinnerDesignTokens" - }, - "2615": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "ProgressSpinnerDesignTokens.root" - }, - "2616": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type" - }, - "2617": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.1" - }, - "2618": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.2" - }, - "2619": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.3" - }, - "2620": { - "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", - "qualifiedName": "__type.color.4" - }, - "2621": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2622": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2623": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2624": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2625": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "" - }, - "2626": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens" - }, - "2627": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens.root" - }, - "2628": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2629": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "2630": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.height" - }, - "2631": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.background" - }, - "2632": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "2633": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "2634": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2635": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2636": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2637": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2638": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2639": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "2640": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "2641": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedFocusBorderColor" - }, - "2642": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedDisabledBorderColor" - }, - "2643": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2644": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2645": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2646": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2647": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "2648": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.style" - }, - "2649": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "2650": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2651": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2652": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2653": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "RadioButtonDesignTokens.icon" - }, - "2654": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type" - }, - "2655": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.size" - }, - "2656": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "2657": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.checkedHoverColor" - }, - "2658": { - "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2659": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2660": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2661": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2662": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2663": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "" - }, - "2664": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens" - }, - "2665": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens.root" - }, - "2666": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type" - }, - "2667": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2668": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2669": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "RatingDesignTokens.icon" - }, - "2670": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type" - }, - "2671": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.size" - }, - "2672": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.color" - }, - "2673": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "2674": { - "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2675": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2676": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2677": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2678": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2679": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "" - }, - "2680": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "RippleDesignTokens" - }, - "2681": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "RippleDesignTokens.root" - }, - "2682": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "__type" - }, - "2683": { - "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", - "qualifiedName": "__type.background" - }, - "2684": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2685": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2686": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2687": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2688": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "" - }, - "2689": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens" - }, - "2690": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens.root" - }, - "2691": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2692": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2693": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "ScrollPanelDesignTokens.bar" - }, - "2694": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2695": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.size" - }, - "2696": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2697": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2698": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type" - }, - "2699": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.width" - }, - "2700": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.style" - }, - "2701": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.color" - }, - "2702": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2703": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2704": { - "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", - "qualifiedName": "__type.background" - }, - "2705": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2706": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2707": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2708": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2709": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "" - }, - "2710": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens" - }, - "2711": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.root" - }, - "2712": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2713": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2714": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "2715": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "2716": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "2717": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2718": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "2719": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "2720": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2721": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2722": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "2723": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "2724": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2725": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "2726": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "2727": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2728": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2729": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2730": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.width" - }, - "2731": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.style" - }, - "2732": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2733": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2734": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2735": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2736": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.dropdown" - }, - "2737": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2738": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.width" - }, - "2739": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2740": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.overlay" - }, - "2741": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2742": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2743": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2744": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2745": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2746": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2747": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.list" - }, - "2748": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2749": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2750": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2751": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.header" - }, - "2752": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2753": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2754": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.option" - }, - "2755": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2756": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "2757": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "2758": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedFocusBackground" - }, - "2759": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2760": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "2761": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "2762": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.selectedFocusColor" - }, - "2763": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2764": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2765": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.optionGroup" - }, - "2766": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2767": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.background" - }, - "2768": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2769": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2770": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2771": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.clearIcon" - }, - "2772": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2773": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2774": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.checkmark" - }, - "2775": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2776": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.color" - }, - "2777": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gutterStart" - }, - "2778": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.gutterEnd" - }, - "2779": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "SelectDesignTokens.emptyMessage" - }, - "2780": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type" - }, - "2781": { - "sourceFileName": "src/app/components/themes/types/select/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2782": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2783": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2784": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2785": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2786": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "" - }, - "2787": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "SelectButtonDesignTokens" - }, - "2788": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "SelectButtonDesignTokens.root" - }, - "2789": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type" - }, - "2790": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2791": { - "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "2792": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2793": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2794": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2795": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2796": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "" - }, - "2797": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "SkeletonDesignTokens" - }, - "2798": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "SkeletonDesignTokens.root" - }, - "2799": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type" - }, - "2800": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2801": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.background" - }, - "2802": { - "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", - "qualifiedName": "__type.animationBackground" - }, - "2803": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2804": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2805": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2806": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2807": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "" - }, - "2808": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens" - }, - "2809": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.root" - }, - "2810": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2811": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2812": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.track" - }, - "2813": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2814": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2815": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2816": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.size" - }, - "2817": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.range" - }, - "2818": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2819": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2820": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "SliderDesignTokens.handle" - }, - "2821": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2822": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2823": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.height" - }, - "2824": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2825": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.background" - }, - "2826": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2827": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.content" - }, - "2828": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2829": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2830": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "2831": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2832": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.height" - }, - "2833": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2834": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2835": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type" - }, - "2836": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.width" - }, - "2837": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.style" - }, - "2838": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.color" - }, - "2839": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2840": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2841": { - "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", - "qualifiedName": "__type.contentBackground" - }, - "2842": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2843": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2844": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2845": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2846": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "" - }, - "2847": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "SpeedDialDesignTokens" - }, - "2848": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "SpeedDialDesignTokens.root" - }, - "2849": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type" - }, - "2850": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2851": { - "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2852": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2853": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2854": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2855": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2856": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "" - }, - "2857": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "SplitButtonDesignTokens" - }, - "2858": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "SplitButtonDesignTokens.root" - }, - "2859": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type" - }, - "2860": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2861": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "2862": { - "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", - "qualifiedName": "__type.raisedShadow" - }, - "2863": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2864": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2865": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2866": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2867": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "" - }, - "2868": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens" - }, - "2869": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.root" - }, - "2870": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2871": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2872": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2873": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.color" - }, - "2874": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2875": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.gutter" - }, - "2876": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2877": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2878": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "SplitterDesignTokens.handle" - }, - "2879": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2880": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.size" - }, - "2881": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.background" - }, - "2882": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2883": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2884": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type" - }, - "2885": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.width" - }, - "2886": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.style" - }, - "2887": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.color" - }, - "2888": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2889": { - "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2890": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2891": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2892": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2893": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2894": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "" - }, - "2895": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens" - }, - "2896": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.root" - }, - "2897": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2898": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2899": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.separator" - }, - "2900": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2901": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2902": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2903": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.margin" - }, - "2904": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.size" - }, - "2905": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.step" - }, - "2906": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2907": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2908": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2909": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepHeader" - }, - "2910": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2911": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2912": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2913": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2914": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2915": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.width" - }, - "2916": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.style" - }, - "2917": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2918": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2919": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2920": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2921": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepTitle" - }, - "2922": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2923": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2924": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2925": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2926": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.stepNumber" - }, - "2927": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2928": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2929": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2930": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2931": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "2932": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2933": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2934": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.size" - }, - "2935": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2936": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2937": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2938": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2939": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.steppanels" - }, - "2940": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2941": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2942": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "StepperDesignTokens.steppanel" - }, - "2943": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type" - }, - "2944": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.background" - }, - "2945": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.color" - }, - "2946": { - "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", - "qualifiedName": "__type.padding" - }, - "2947": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2948": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2949": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2950": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2951": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "" - }, - "2952": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens" - }, - "2953": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.root" - }, - "2954": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2955": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2956": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.separator" - }, - "2957": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2958": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.background" - }, - "2959": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemLink" - }, - "2960": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2961": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2962": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "2963": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2964": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.width" - }, - "2965": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.style" - }, - "2966": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2967": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.offset" - }, - "2968": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2969": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.gap" - }, - "2970": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemLabel" - }, - "2971": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2972": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2973": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2974": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2975": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "StepsDesignTokens.itemNumber" - }, - "2976": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type" - }, - "2977": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.background" - }, - "2978": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "2979": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "2980": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "2981": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.color" - }, - "2982": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "2983": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.size" - }, - "2984": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "2985": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "2986": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "2987": { - "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "2988": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "2989": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "2990": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "2991": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "2992": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "" - }, - "2993": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens" - }, - "2994": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.root" - }, - "2995": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2996": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "2997": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.tablist" - }, - "2998": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "2999": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3000": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3001": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3002": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.item" - }, - "3003": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3004": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3005": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3006": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3007": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3008": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3009": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3010": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3011": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3012": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3013": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3014": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3015": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3016": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3017": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3018": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3019": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3020": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.width" - }, - "3021": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.style" - }, - "3022": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3023": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3024": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3025": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.itemIcon" - }, - "3026": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3027": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3028": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3029": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3030": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "TabmenuDesignTokens.activeBar" - }, - "3031": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3032": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.height" - }, - "3033": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "3034": { - "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3035": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3036": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3037": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3038": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3039": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "" - }, - "3040": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens" - }, - "3041": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.root" - }, - "3042": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3043": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3044": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tablist" - }, - "3045": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3046": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3047": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3048": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3049": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tab" - }, - "3050": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3051": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3052": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3053": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3054": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3055": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3056": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3057": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3058": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3059": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3060": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3061": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3062": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3063": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3064": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3065": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3066": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3067": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3068": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3069": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3070": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3071": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3072": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.tabpanel" - }, - "3073": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3074": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3075": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3076": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3077": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3078": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3079": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3080": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3081": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3082": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3083": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3084": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.navButton" - }, - "3085": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3086": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3087": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3088": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3089": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3090": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3091": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3092": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.width" - }, - "3093": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.style" - }, - "3094": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.color" - }, - "3095": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3096": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3097": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3098": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "TabsDesignTokens.activeBar" - }, - "3099": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type" - }, - "3100": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.height" - }, - "3101": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.bottom" - }, - "3102": { - "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", - "qualifiedName": "__type.background" - }, - "3103": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3104": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3105": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3106": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3107": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "" - }, - "3108": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens" - }, - "3109": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.root" - }, - "3110": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3111": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3112": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tabList" - }, - "3113": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3114": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3115": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3116": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tab" - }, - "3117": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3118": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3119": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.activeBorderColor" - }, - "3120": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3121": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3122": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3123": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.tabPanel" - }, - "3124": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3125": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3126": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3127": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "TabViewDesignTokens.navButton" - }, - "3128": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type" - }, - "3129": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.background" - }, - "3130": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.color" - }, - "3131": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3132": { - "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3133": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3134": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3135": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3136": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3137": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "" - }, - "3138": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens" - }, - "3139": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.root" - }, - "3140": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3141": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3142": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3143": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3144": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3145": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3146": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.roundedBorderRadius" - }, - "3147": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.icon" - }, - "3148": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3149": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.size" - }, - "3150": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.primary" - }, - "3151": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3152": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3153": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3154": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.secondary" - }, - "3155": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3156": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3157": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3158": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.success" - }, - "3159": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3160": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3161": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3162": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.info" - }, - "3163": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3164": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3165": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3166": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.warn" - }, - "3167": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3168": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3169": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3170": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.danger" - }, - "3171": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3172": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3173": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3174": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "TagDesignTokens.contrast" - }, - "3175": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type" - }, - "3176": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.background" - }, - "3177": { - "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", - "qualifiedName": "__type.color" - }, - "3178": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3179": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3180": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3181": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3182": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "" - }, - "3183": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens" - }, - "3184": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.root" - }, - "3185": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3186": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.background" - }, - "3187": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3188": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.color" - }, - "3189": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.height" - }, - "3190": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3191": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3192": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.prompt" - }, - "3193": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3194": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3195": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "TerminalDesignTokens.commandResponse" - }, - "3196": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type" - }, - "3197": { - "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", - "qualifiedName": "__type.margin" - }, - "3198": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3199": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3200": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3201": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3202": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "" - }, - "3203": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "TextareaDesignTokens" - }, - "3204": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "TextareaDesignTokens.root" - }, - "3205": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type" - }, - "3206": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.background" - }, - "3207": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3208": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "3209": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "3210": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3211": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3212": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "3213": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3214": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.color" - }, - "3215": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3216": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "3217": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3218": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.paddingX" - }, - "3219": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.paddingY" - }, - "3220": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3221": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3222": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type" - }, - "3223": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.width" - }, - "3224": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.style" - }, - "3225": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.color" - }, - "3226": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3227": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3228": { - "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3229": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3230": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3231": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3232": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3233": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "" - }, - "3234": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens" - }, - "3235": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.root" - }, - "3236": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3237": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3238": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3239": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3240": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3241": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3242": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3243": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.list" - }, - "3244": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3245": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3246": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3247": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.item" - }, - "3248": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3249": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusBackground" - }, - "3250": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeBackground" - }, - "3251": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3252": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3253": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3254": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3255": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3256": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3257": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.icon" - }, - "3258": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3259": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3260": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3261": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3262": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.submenuLabel" - }, - "3263": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3264": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3265": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3266": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.background" - }, - "3267": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3268": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.submenuIcon" - }, - "3269": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3270": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.size" - }, - "3271": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.color" - }, - "3272": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.focusColor" - }, - "3273": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.activeColor" - }, - "3274": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "TieredMenuDesignTokens.separator" - }, - "3275": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type" - }, - "3276": { - "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3277": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3278": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3279": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3280": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3281": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "" - }, - "3282": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens" - }, - "3283": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.event" - }, - "3284": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3285": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.minHeight" - }, - "3286": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.horizontal" - }, - "3287": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3288": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.eventContent" - }, - "3289": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3290": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3291": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.vertical" - }, - "3292": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3293": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.eventContent" - }, - "3294": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3295": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3296": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.eventMarker" - }, - "3297": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3298": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3299": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3300": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3301": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.background" - }, - "3302": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3303": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.content" - }, - "3304": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3305": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3306": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3307": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.background" - }, - "3308": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.insetShadow" - }, - "3309": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "TimelineDesignTokens.eventConnector" - }, - "3310": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type" - }, - "3311": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.color" - }, - "3312": { - "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", - "qualifiedName": "__type.size" - }, - "3313": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3314": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3315": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3316": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3317": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "" - }, - "3318": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens" - }, - "3319": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.root" - }, - "3320": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3321": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3322": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3323": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3324": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3325": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.icon" - }, - "3326": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3327": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.size" - }, - "3328": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.content" - }, - "3329": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3330": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3331": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3332": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.text" - }, - "3333": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3334": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3335": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.summary" - }, - "3336": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3337": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3338": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3339": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.detail" - }, - "3340": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3341": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3342": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.fontSize" - }, - "3343": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.closeButton" - }, - "3344": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3345": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3346": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.height" - }, - "3347": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3348": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3349": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3350": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.width" - }, - "3351": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.style" - }, - "3352": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3353": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.closeIcon" - }, - "3354": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3355": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.size" - }, - "3356": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.blur" - }, - "3357": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3358": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.0" - }, - "3359": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.1" - }, - "3360": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.2" - }, - "3361": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.3" - }, - "3362": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.4" - }, - "3363": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.info" - }, - "3364": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3365": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3366": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3367": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3368": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3369": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3370": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3371": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3372": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3373": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3374": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3375": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3376": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3377": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.success" - }, - "3378": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3379": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3380": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3381": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3382": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3383": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3384": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3385": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3386": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3387": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3388": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3389": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3390": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3391": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.warn" - }, - "3392": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3393": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3394": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3395": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3396": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3397": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3398": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3399": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3400": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3401": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3402": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3403": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3404": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3405": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.error" - }, - "3406": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3407": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3408": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3409": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3410": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3411": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3412": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3413": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3414": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3415": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3416": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3417": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3418": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3419": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.secondary" - }, - "3420": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3421": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3422": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3423": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3424": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3425": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3426": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3427": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3428": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3429": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3430": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3431": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3432": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3433": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "ToastDesignTokens.contrast" - }, - "3434": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3435": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.background" - }, - "3436": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3437": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3438": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.detailColor" - }, - "3439": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3440": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.closeButton" - }, - "3441": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3442": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3443": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3444": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type" - }, - "3445": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.color" - }, - "3446": { - "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3447": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3448": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3449": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3450": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3451": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "" - }, - "3452": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens" - }, - "3453": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.root" - }, - "3454": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3455": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3456": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3457": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3458": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3459": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3460": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledBorderColor" - }, - "3461": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3462": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3463": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3464": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3465": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.width" - }, - "3466": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.style" - }, - "3467": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3468": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3469": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3470": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3471": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.background" - }, - "3472": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3473": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3474": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3475": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3476": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3477": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "3478": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "3479": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.icon" - }, - "3480": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3481": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3482": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.color" - }, - "3483": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3484": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedColor" - }, - "3485": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "ToggleButtonDesignTokens.content" - }, - "3486": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type" - }, - "3487": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.left" - }, - "3488": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.top" - }, - "3489": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedShadow" - }, - "3490": { - "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3491": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3492": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3493": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3494": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3495": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "" - }, - "3496": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens" - }, - "3497": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens.root" - }, - "3498": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3499": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.width" - }, - "3500": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.height" - }, - "3501": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3502": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3503": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3504": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3505": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3506": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.width" - }, - "3507": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.style" - }, - "3508": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.color" - }, - "3509": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3510": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3511": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3512": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3513": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3514": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBorderColor" - }, - "3515": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBorderColor" - }, - "3516": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3517": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3518": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.slideDuration" - }, - "3519": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3520": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.background" - }, - "3521": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3522": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3523": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "3524": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "ToggleSwitchDesignTokens.handle" - }, - "3525": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type" - }, - "3526": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3527": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.size" - }, - "3528": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3529": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.background" - }, - "3530": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3531": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedBackground" - }, - "3532": { - "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", - "qualifiedName": "__type.checkedHoverBackground" - }, - "3533": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3534": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3535": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3536": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3537": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "" - }, - "3538": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "ToolbarDesignTokens" - }, - "3539": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "ToolbarDesignTokens.root" - }, - "3540": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type" - }, - "3541": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.background" - }, - "3542": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3543": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3544": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.color" - }, - "3545": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3546": { - "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3547": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3548": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3549": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3550": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3551": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "" - }, - "3552": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "TooltipDesignTokens" - }, - "3553": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "TooltipDesignTokens.root" - }, - "3554": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type" - }, - "3555": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.maxWidth" - }, - "3556": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.gutter" - }, - "3557": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3558": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3559": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3560": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.background" - }, - "3561": { - "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", - "qualifiedName": "__type.color" - }, - "3562": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3563": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3564": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3565": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3566": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 57 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L1" + } + ] + } + ], + "groups": [ + { + "title": "Modules", + "children": [ + 1, + 56 + ] + } + ], + "packageName": "primeng", + "packageVersion": "18.0.0-beta.1", + "readme": [ + { + "kind": "text", + "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." + } + ], + "symbolIdMap": { + "1": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "" }, - "3567": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens" + "2": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens" }, - "3568": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.root" + "3": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.root" }, - "3569": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "4": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3570": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.background" - }, - "3571": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3572": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3573": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3574": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.indent" - }, - "3575": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "5": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.transitionDuration" }, - "3576": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.node" - }, - "3577": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" - }, - "3578": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3579": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3580": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3581": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3582": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3583": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3584": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3585": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.focusRing" + "6": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.panel" }, - "3586": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "7": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3587": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.width" - }, - "3588": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.style" - }, - "3589": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" - }, - "3590": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3591": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.shadow" + "8": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3592": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.gap" + "9": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" }, - "3593": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.nodeIcon" + "10": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.header" }, - "3594": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "11": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3595": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "12": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3596": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "13": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.hoverColor" }, - "3597": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedColor" + "14": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" }, - "3598": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.nodeToggleButton" + "15": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" }, - "3599": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" + "16": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.fontWeight" }, - "3600": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "17": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.borderRadius" }, - "3601": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.size" + "18": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3602": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverBackground" + "19": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" }, - "3603": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" + "20": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" }, - "3604": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.color" + "21": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverBackground" }, - "3605": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.hoverColor" + "22": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBackground" }, - "3606": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" + "23": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverBackground" }, - "3607": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "24": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.focusRing" }, - "3608": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "25": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3609": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "26": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.width" }, - "3610": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "27": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.style" }, - "3611": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "28": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3612": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "29": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.offset" }, - "3613": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "30": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.shadow" }, - "3614": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "TreeDesignTokens.loadingIcon" - }, - "3615": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type" - }, - "3616": { - "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", - "qualifiedName": "__type.size" - }, - "3617": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" - }, - "3618": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" - }, - "3619": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3620": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3621": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "" - }, - "3622": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens" - }, - "3623": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.root" + "31": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.toggleIcon" }, - "3624": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "32": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3625": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.background" - }, - "3626": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.disabledBackground" - }, - "3627": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.filledBackground" - }, - "3628": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.filledFocusBackground" - }, - "3629": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3630": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.hoverBorderColor" - }, - "3631": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.focusBorderColor" - }, - "3632": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.invalidBorderColor" - }, - "3633": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "33": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3634": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.disabledColor" - }, - "3635": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.placeholderColor" - }, - "3636": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3637": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.paddingX" + "34": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" }, - "3638": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.paddingY" + "35": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" }, - "3639": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" + "36": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverColor" }, - "3640": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.focusRing" + "37": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.first" }, - "3641": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "38": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3642": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.width" - }, - "3643": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.style" - }, - "3644": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.color" - }, - "3645": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3646": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" + "39": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.topBorderRadius" }, - "3647": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.transitionDuration" + "40": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3648": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.dropdown" + "41": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.last" }, - "3649": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "42": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3650": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.width" + "43": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.bottomBorderRadius" }, - "3651": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.color" + "44": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBottomBorderRadius" }, - "3652": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.overlay" + "45": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.content" }, - "3653": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "46": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type" }, - "3654": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.background" + "47": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" }, - "3655": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "48": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.borderColor" }, - "3656": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" + "49": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" }, - "3657": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "50": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.color" }, - "3658": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3659": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.tree" - }, - "3660": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3661": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3662": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.emptyMessage" - }, - "3663": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3664": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "51": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", "qualifiedName": "__type.padding" }, - "3665": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "TreeSelectDesignTokens.chip" - }, - "3666": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type" - }, - "3667": { - "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3668": { + "52": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "3669": { + "53": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type" }, - "3670": { + "54": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.light" }, - "3671": { + "55": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" }, - "3672": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "56": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "" }, - "3673": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens" - }, - "3674": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.root" - }, - "3675": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3676": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.transitionDuration" - }, - "3677": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3678": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.header" - }, - "3679": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3680": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3681": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3682": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3683": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3684": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3685": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.headerCell" - }, - "3686": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3687": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3688": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3689": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3690": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3691": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3692": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3693": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3694": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3695": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3696": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3697": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3698": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3699": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" - }, - "3700": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3701": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3702": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3703": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnTitle" - }, - "3704": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3705": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.fontWeight" - }, - "3706": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.row" - }, - "3707": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3708": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3709": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3710": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBackground" - }, - "3711": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3712": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3713": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedColor" - }, - "3714": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3715": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3716": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3717": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" - }, - "3718": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3719": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" - }, - "3720": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" - }, - "3721": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.bodyCell" - }, - "3722": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3723": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3724": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3725": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.gap" - }, - "3726": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedBorderColor" - }, - "3727": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.footerCell" - }, - "3728": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3729": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.background" - }, - "3730": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3731": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3732": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3733": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnFooter" - }, - "3734": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3735": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.fontWeight" + "57": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens" }, - "3736": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.footer" + "58": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.root" }, - "3737": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "59": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type" }, - "3738": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "60": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type.background" }, - "3739": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" - }, - "3740": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3741": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" - }, - "3742": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.padding" - }, - "3743": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.columnResizerWidth" - }, - "3744": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3745": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.0" - }, - "3746": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.1" - }, - "3747": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.2" - }, - "3748": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.3" - }, - "3749": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.4" - }, - "3750": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.5" - }, - "3751": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.resizeIndicator" - }, - "3752": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3753": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" - }, - "3754": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3755": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.sortIcon" - }, - "3756": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3757": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3758": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3759": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.loadingIcon" - }, - "3760": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3761": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.size" - }, - "3762": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.nodeToggleButton" - }, - "3763": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" - }, - "3764": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverBackground" - }, - "3765": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedHoverBackground" - }, - "3766": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" - }, - "3767": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.hoverColor" - }, - "3768": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.selectedHoverColor" - }, - "3769": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.size" - }, - "3770": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderRadius" - }, - "3771": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.focusRing" - }, - "3772": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "61": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "3773": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.width" + "62": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" }, - "3774": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.style" + "63": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" }, - "3775": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.color" + "64": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.header" }, - "3776": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.offset" + "65": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3777": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.shadow" + "66": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" }, - "3778": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.paginatorTop" + "67": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" }, - "3779": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "68": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3780": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" + "69": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "3781": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" + "70": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderWidth" }, - "3782": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "TreeTableDesignTokens.paginatorBottom" + "71": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" }, - "3783": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type" + "72": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.toggleableHeader" }, - "3784": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderColor" + "73": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3785": { - "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", - "qualifiedName": "__type.borderWidth" + "74": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3786": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "75": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.title" }, - "3787": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", + "76": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", "qualifiedName": "__type" }, - "3788": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" - }, - "3789": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.dark" - }, - "3790": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "" - }, - "3791": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens" - }, - "3792": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens.loaderMask" + "77": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.fontWeight" }, - "3793": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type" + "78": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.content" }, - "3794": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.background" + "79": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3795": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.color" + "80": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3796": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "VirtualScrollerDesignTokens.loaderIcon" + "81": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.footer" }, - "3797": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type" + "82": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" }, - "3798": { - "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", - "qualifiedName": "__type.size" + "83": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" }, - "3799": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "84": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "3800": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" + "85": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" }, - "3801": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" + "86": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" }, - "3802": { + "87": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index d80688e8a9a..77eb5348e3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.2", + "version": "18.0.0-beta.1", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", @@ -17,8 +17,7 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-themedoc.ts", - "build:docs": "npm run apidoc && npm run themedoc" + "themedoc": "node ./api-generator/build-theming.ts" }, "repository": { "type": "git", @@ -89,7 +88,7 @@ "@angular/ssr": "^18.0.1", "@docsearch/js": "^3.3.4", "esbuild": "^0.19.8", - "@primeuix/styled": "0.1.3", + "@primeuix/styled": "0.0.6", "@algolia/client-search": "^4.19.1" }, "dependencies": { @@ -98,4 +97,4 @@ "tailwindcss": "^3.4.10", "tailwindcss-primeui": "^0.3.4" } -} +} \ No newline at end of file diff --git a/src/app/components/table/style/tablestyle.ts b/src/app/components/table/style/tablestyle.ts index 1dc20325348..92fb0dc5435 100644 --- a/src/app/components/table/style/tablestyle.ts +++ b/src/app/components/table/style/tablestyle.ts @@ -698,6 +698,7 @@ const inlineStyles = { thead: { position: 'sticky' }, tfoot: { position: 'sticky' }, }; + @Injectable() export class TableStyle extends BaseStyle { name = 'datatable'; diff --git a/src/app/showcase/layout/topbar/app.topbar.component.html b/src/app/showcase/layout/topbar/app.topbar.component.html index fb133099645..45c02a4e79f 100644 --- a/src/app/showcase/layout/topbar/app.topbar.component.html +++ b/src/app/showcase/layout/topbar/app.topbar.component.html @@ -123,14 +123,14 @@
  • -
  • - \ No newline at end of file + diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 858409f2714..086648609b7 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription, debounceTime } from 'rxjs'; +import { Subscription } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -759,13 +759,13 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "Achieve sophistication and subtlety with Verona's minimalistic, content-focused design.", + text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' }, { title: 'Freya', link: 'https://primevue.org/templates/freya/', image: 'https://primefaces.org/cdn/primevue/images/layouts/freya-vue.png', - text: "Give your application a sleek, updated look with Freya's chic and modern premium template.", + text: 'Give your application a sleek, updated look with Freya\'s chic and modern premium template.', }, ]; @@ -815,7 +815,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { name: 'Jacob Jones', time: '12.23.2023', title: 'Optimized Workflow Revolution ', - text: "Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it's efficiency like never before. Let's get in touch for a brief demo!", + text: 'Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it\'s efficiency like never before. Let\'s get in touch for a brief demo!', }, { image: 'https://www.primefaces.org/cdn/primevue/images/landing/apps/avatar8.png', diff --git a/src/assets/showcase/styles/layout/_templates.scss b/src/assets/showcase/styles/layout/_templates.scss index 3b56e1e4a40..762d730b9f4 100644 --- a/src/assets/showcase/styles/layout/_templates.scss +++ b/src/assets/showcase/styles/layout/_templates.scss @@ -26,12 +26,12 @@ @keyframes p-features-order-animation { 0% { clip-path: polygon(0% 100%, 15% 100%, 32% 100%, 54% 100%, 70% 100%, 84% 100%, 100% 100%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 20% { clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 40% { @@ -45,4 +45,4 @@ 100% { clip-path: polygon(0 0, 18% 0, 39% 0, 53% 0, 62% 0, 87% 0, 100% 0, 100% 100%, 0 100%); } -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_dark.scss b/src/assets/showcase/styles/layout/variables/landing/_dark.scss index 22932c59cc9..ec442774e80 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_dark.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_dark.scss @@ -18,29 +18,29 @@ --home-blocks-border-left:5px solid #1f2937; --home-blocks-border-bottom:7px solid #1f2937; --home-blocks-border:1px solid #424b57; - --home-blocks-sidebar-bg:var(--p-surface-900); - --home-blocks-list-bg:var(--p-surface-800); - --home-blocks-main-bg:var(--p-surface-950); + --home-blocks-sidebar-bg: var(--p-surface-900); + --home-blocks-list-bg: var(--p-surface-800); + --home-blocks-main-bg: var(--p-surface-950); --home-blocks-main-border:1px solid #424b57; - --home-blocks-item-bg:var(--p-surface-900); - --home-blocks-image-bg:var(--p-surface-800); - --home-blocks-text-color:var(--p-surface-600); + --home-blocks-item-bg: var(--p-surface-900); + --home-blocks-image-bg: var(--p-surface-800); + --home-blocks-text-color: var(--p-surface-600); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, 0.25); --home-blocks-active-border-top:1px solid #424b57; --home-blocks-active-border-right:1px solid #424b57; --home-blocks-active-border-bottom:6px solid #424b57; --home-blocks-active-border-left:4px solid #424b57; --home-blocks-animation-shadow:0px 30px 50px 20px rgba(0, 0, 0, 0.25); - --home-blocks-tablebar-bg:var(--p-surface-700); - --home-blocks-bar-bg:var(--p-surface-700); - --home-blocks-bar-button-bg:var(--p-surface-700); - --home-blocks-circle-bg:var(--p-surface-800); + --home-blocks-tablebar-bg: var(--p-surface-700); + --home-blocks-bar-bg: var(--p-surface-700); + --home-blocks-bar-button-bg: var(--p-surface-700); + --home-blocks-circle-bg: var(--p-surface-800); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0, 0, 0, 0.25); --home-templates-block-border-left:5px solid #424b57; --home-templates-block-border-bottom:7px solid #424b57; --home-templates-line:rgba(255,255,255,.1); - --home-templates-block-hover-bg:var(--p-mask-background); + --home-templates-block-hover-bg: var(--p-mask-background); --home-templates-btn-bg:#1f2937; --home-templates-btn-text-color:#ffffff; --home-templates-btn-shadow:0px 10px 15px 0px rgba(0, 0, 0, 0.25); @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid #424b57; --home-features-card-shadow: none; --home-box-ring-color: color-mix(in srgb, var(--primary-color), transparent 70%); -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_light.scss b/src/assets/showcase/styles/layout/variables/landing/_light.scss index ba546d11cdc..c84929681a6 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_light.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_light.scss @@ -18,23 +18,23 @@ --home-blocks-border-left:5px solid rgba(0,0,0,.1); --home-blocks-border-bottom:7px solid rgba(0,0,0,.1); --home-blocks-border:1px solid rgba(0,0,0,.1); - --home-blocks-sidebar-bg:var(--p-surface-100); - --home-blocks-list-bg:var(--p-surface-50); - --home-blocks-main-bg:var(--p-surface-0); + --home-blocks-sidebar-bg: var(--p-surface-100); + --home-blocks-list-bg: var(--p-surface-50); + --home-blocks-main-bg: var(--p-surface-0); --home-blocks-main-border:1px solid rgba(0,0,0,.1); - --home-blocks-item-bg:var(--p-surface-100); - --home-blocks-image-bg:var(--p-surface-200); - --home-blocks-text-color:var(--p-surface-300); + --home-blocks-item-bg: var(--p-surface-100); + --home-blocks-image-bg: var(--p-surface-200); + --home-blocks-text-color: var(--p-surface-300); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, .1); --home-blocks-active-border-top:1px solid rgba(0,0,0,.07); --home-blocks-active-border-right:1px solid rgba(0,0,0,.07); --home-blocks-active-border-bottom:4px solid rgba(0,0,0,.07); --home-blocks-active-border-left:4px solid rgba(0,0,0,.07); --home-blocks-animation-shadow:0px 30px 50px 10px rgba(0, 0, 0, .2); - --home-blocks-tablebar-bg:var(--p-surface-300); - --home-blocks-bar-bg:var(--p-surface-300); - --home-blocks-bar-button-bg:var(--p-surface-0); - --home-blocks-circle-bg:var(--p-surface-300); + --home-blocks-tablebar-bg: var(--p-surface-300); + --home-blocks-bar-bg: var(--p-surface-300); + --home-blocks-bar-button-bg: var(--p-surface-0); + --home-blocks-circle-bg: var(--p-surface-300); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0,0,0,.1); --home-templates-block-border-left:5px solid #d1d5db; @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid rgba(0,0,0,.1); --home-features-card-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.02), 0px 28px 28px 0px rgba(0, 0, 0, 0.02), 0px 63px 38px 0px rgba(0, 0, 0, 0.01); --home-box-ring-color: var(--p-primary-200); -} \ No newline at end of file +} From 11ba849279305b291531cf3b222bce32f3ea25e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:58:35 +0300 Subject: [PATCH 11/49] Update version --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 77eb5348e3f..2ce34c6edb9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.1", + "version": "18.0.0-beta.2", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", @@ -17,7 +17,8 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-theming.ts" + "themedoc": "node ./api-generator/build-theming.ts", + "build:docs": "npm run apidoc && npm run themedoc" }, "repository": { "type": "git", @@ -97,4 +98,4 @@ "tailwindcss": "^3.4.10", "tailwindcss-primeui": "^0.3.4" } -} \ No newline at end of file +} From 535028c4a8c245c01b3e2a9b5520f8fb20a1ac63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:07:03 +0300 Subject: [PATCH 12/49] Fix typo --- .../pages/landing/herosection.component.ts | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 086648609b7..32c26682ed8 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription } from 'rxjs'; +import { Subscription, debounceTime } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -199,14 +199,14 @@ import { KnobModule } from 'primeng/knob'; hidden: isSlimMenu, 'font-medium leading-8': !isSlimMenu, }" - >・・ {{ navItem.title }}{{ navItem.title }} @@ -227,7 +227,7 @@ import { KnobModule } from 'primeng/knob'; 'w-full': !isSlimMenu, }" > - + ・ Slim Mode @@ -676,7 +676,9 @@ export class HeroSectionComponent implements OnInit, OnDestroy { { icon: 'pi pi-user', title: 'Customers' }, { icon: 'pi pi-video', title: 'Movies' }, ]; - this.sampleAppsSidebarNavsMore = [{ icon: 'pi pi-cog', title: 'Settings' }]; + this.sampleAppsSidebarNavsMore = [ + { icon: 'pi pi-cog', title: 'Settings' }, + ]; this.selectedSampleAppsSidebarNav = 'Overview'; this.selectButtonValue = { label: 'Styled', value: 1 }; @@ -759,13 +761,13 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' + text: "Achieve sophistication and subtlety with Verona's minimalistic, content-focused design.", }, { title: 'Freya', link: 'https://primevue.org/templates/freya/', image: 'https://primefaces.org/cdn/primevue/images/layouts/freya-vue.png', - text: 'Give your application a sleek, updated look with Freya\'s chic and modern premium template.', + text: "Give your application a sleek, updated look with Freya's chic and modern premium template.", }, ]; @@ -815,7 +817,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { name: 'Jacob Jones', time: '12.23.2023', title: 'Optimized Workflow Revolution ', - text: 'Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it\'s efficiency like never before. Let\'s get in touch for a brief demo!', + text: "Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it's efficiency like never before. Let's get in touch for a brief demo!", }, { image: 'https://www.primefaces.org/cdn/primevue/images/landing/apps/avatar8.png', From 1fd42d2d6bd83c871996db194e723b4883f60843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:24:53 +0300 Subject: [PATCH 13/49] fix conflict --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2ce34c6edb9..d80688e8a9a 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "build:check": "npm run format:check && npm run security:check", "security:check": "npm audit --production --audit-level high", "apidoc": "node ./api-generator/build-apidoc.ts", - "themedoc": "node ./api-generator/build-theming.ts", + "themedoc": "node ./api-generator/build-themedoc.ts", "build:docs": "npm run apidoc && npm run themedoc" }, "repository": { @@ -89,7 +89,7 @@ "@angular/ssr": "^18.0.1", "@docsearch/js": "^3.3.4", "esbuild": "^0.19.8", - "@primeuix/styled": "0.0.6", + "@primeuix/styled": "0.1.3", "@algolia/client-search": "^4.19.1" }, "dependencies": { From 625e2411a3ede76f8dd319015bbf340aa698c9d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:26:43 +0300 Subject: [PATCH 14/49] Fix conflict --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index d80688e8a9a..a53f0a88039 100644 --- a/package.json +++ b/package.json @@ -99,3 +99,4 @@ "tailwindcss-primeui": "^0.3.4" } } + From 3b2c82b722ead5ef6e99811f7bac23b155dd5773 Mon Sep 17 00:00:00 2001 From: Enrico Messall Date: Thu, 10 Oct 2024 16:05:55 +0200 Subject: [PATCH 15/49] Fixes primeng#16511 + Adjusted panelmenu + Changed itemTemplate to TemplateRef as it is in the Panel Menu itself + Corrected item toggle to recreate the items with expand state and keep state correctly --- src/app/components/panelmenu/panelmenu.ts | 26 +++++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/src/app/components/panelmenu/panelmenu.ts b/src/app/components/panelmenu/panelmenu.ts index b8c03297e7b..4dbcb2503a6 100644 --- a/src/app/components/panelmenu/panelmenu.ts +++ b/src/app/components/panelmenu/panelmenu.ts @@ -360,7 +360,7 @@ export class PanelMenuList implements OnChanges { @Input() items: any[]; - @Input() itemTemplate: HTMLElement | undefined; + @Input() itemTemplate: TemplateRef | undefined; @Input({ transform: booleanAttribute }) parentExpanded: boolean | undefined; @@ -571,13 +571,25 @@ export class PanelMenuList implements OnChanges { onItemToggle(event) { const { processedItem, expanded } = event; - processedItem.expanded = !processedItem.expanded; - const activeItemPath = this.activeItemPath().filter((p) => p.parentKey !== processedItem.parentKey); - expanded && activeItemPath.push(processedItem); + // Update the original item object's 'expanded' property + if (processedItem.item) { + processedItem.item.expanded = !processedItem.item.expanded; + } + + // Recreate processedItems with updated 'expanded' states + this.processedItems.set( + this.createProcessedItems(this.items || [], 0, {}, '') + ); + // Update activeItemPath + const activeItemPath = this.activeItemPath().filter((p) => p.parentKey !== processedItem.parentKey); + if (expanded) { + activeItemPath.push(processedItem); + } this.activeItemPath.set(activeItemPath); - this.processedItems.update((value) => value.map((i) => (i === processedItem ? processedItem : i))); + + // Update focusedItem this.focusedItem.set(processedItem); } @@ -916,7 +928,7 @@ export class PanelMenuList implements OnChanges { [ngClass]="{ 'p-panelmenu-expanded': isItemActive(item) }" >
    - + >
    From 16c99c8ca63c9abd54594e50c1897daf57dcc6dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Mon, 14 Oct 2024 12:55:35 +0300 Subject: [PATCH 16/49] Add missing theming exports, fixes #16509 --- src/app/components/accordion/public_api.ts | 1 + src/app/components/autocomplete/public_api.ts | 1 + src/app/components/avatar/public_api.ts | 1 + src/app/components/avatargroup/public_api.ts | 1 + src/app/components/badge/public_api.ts | 1 + src/app/components/blockui/public_api.ts | 1 + src/app/components/breadcrumb/public_api.ts | 1 + src/app/components/button/public_api.ts | 1 + src/app/components/buttongroup/public_api.ts | 1 + src/app/components/calendar/public_api.ts | 1 + src/app/components/card/public_api.ts | 1 + src/app/components/carousel/public_api.ts | 1 + src/app/components/cascadeselect/public_api.ts | 1 + src/app/components/chart/public_api.ts | 1 + src/app/components/checkbox/public_api.ts | 1 + src/app/components/chip/public_api.ts | 1 + src/app/components/colorpicker/public_api.ts | 1 + src/app/components/confirmdialog/public_api.ts | 1 + src/app/components/confirmpopup/public_api.ts | 1 + src/app/components/contextmenu/public_api.ts | 1 + src/app/components/dataview/public_api.ts | 1 + src/app/components/datepicker/public_api.ts | 1 + src/app/components/dock/public_api.ts | 1 + src/app/components/drawer/public_api.ts | 1 + src/app/components/dropdown/public_api.ts | 1 + src/app/components/dynamicdialog/public_api.ts | 1 + src/app/components/editor/public_api.ts | 1 + src/app/components/fieldset/public_api.ts | 1 + src/app/components/fileupload/public_api.ts | 1 + src/app/components/floatlabel/public_api.ts | 1 + src/app/components/fluid/public_api.ts | 1 + src/app/components/galleria/public_api.ts | 1 + src/app/components/iconfield/public_api.ts | 1 + src/app/components/iftalabel/public_api.ts | 1 + src/app/components/image/public_api.ts | 1 + src/app/components/inplace/public_api.ts | 1 + src/app/components/inputgroup/public_api.ts | 1 + src/app/components/inputgroupaddon/public_api.ts | 1 + src/app/components/inputicon/public_api.ts | 1 + src/app/components/inputmask/public_api.ts | 1 + src/app/components/inputnumber/public_api.ts | 1 + src/app/components/inputotp/public_api.ts | 1 + src/app/components/inputswitch/public_api.ts | 1 + src/app/components/inputtext/public_api.ts | 1 + src/app/components/inputtextarea/public_api.ts | 1 + src/app/components/knob/public_api.ts | 1 + src/app/components/listbox/public_api.ts | 1 + src/app/components/megamenu/public_api.ts | 1 + src/app/components/menu/public_api.ts | 1 + src/app/components/menubar/public_api.ts | 1 + src/app/components/messages/public_api.ts | 1 + src/app/components/metergroup/public_api.ts | 1 + src/app/components/multiselect/public_api.ts | 1 + src/app/components/orderlist/public_api.ts | 1 + src/app/components/organizationchart/public_api.ts | 1 + src/app/components/overlay/public_api.ts | 1 + src/app/components/overlaybadge/public_api.ts | 1 + src/app/components/overlaypanel/public_api.ts | 1 + src/app/components/paginator/public_api.ts | 1 + src/app/components/panelmenu/public_api.ts | 1 + src/app/components/password/public_api.ts | 1 + src/app/components/picklist/public_api.ts | 1 + src/app/components/popover/public_api.ts | 1 + src/app/components/progressbar/public_api.ts | 1 + src/app/components/progressspinner/public_api.ts | 1 + src/app/components/radiobutton/public_api.ts | 1 + src/app/components/rating/public_api.ts | 1 + src/app/components/ripple/public_api.ts | 1 + src/app/components/scroller/public_api.ts | 1 + src/app/components/scrollpanel/public_api.ts | 1 + src/app/components/scrolltop/public_api.ts | 1 + src/app/components/selectbutton/public_api.ts | 1 + src/app/components/sidebar/public_api.ts | 1 + src/app/components/skeleton/public_api.ts | 1 + src/app/components/slider/public_api.ts | 1 + src/app/components/speeddial/public_api.ts | 1 + src/app/components/splitbutton/public_api.ts | 1 + src/app/components/splitter/public_api.ts | 1 + src/app/components/stepper/public_api.ts | 1 + src/app/components/steps/public_api.ts | 1 + src/app/components/table/public_api.ts | 1 + src/app/components/tabmenu/public_api.ts | 1 + src/app/components/tabs/public_api.ts | 1 + src/app/components/tabview/public_api.ts | 1 + src/app/components/tag/public_api.ts | 1 + src/app/components/terminal/public_api.ts | 1 + src/app/components/textarea/public_api.ts | 1 + src/app/components/tieredmenu/public_api.ts | 1 + src/app/components/timeline/public_api.ts | 1 + src/app/components/toast/public_api.ts | 1 + src/app/components/togglebutton/public_api.ts | 1 + src/app/components/toggleswitch/public_api.ts | 1 + src/app/components/toolbar/public_api.ts | 1 + src/app/components/tooltip/public_api.ts | 1 + src/app/components/tree/public_api.ts | 1 + src/app/components/treeselect/public_api.ts | 1 + src/app/components/treetable/public_api.ts | 1 + 97 files changed, 97 insertions(+) diff --git a/src/app/components/accordion/public_api.ts b/src/app/components/accordion/public_api.ts index ce956fe2ebe..24bc260826c 100644 --- a/src/app/components/accordion/public_api.ts +++ b/src/app/components/accordion/public_api.ts @@ -1 +1,2 @@ export * from './accordion'; +export * from './style/accordionstyle'; diff --git a/src/app/components/autocomplete/public_api.ts b/src/app/components/autocomplete/public_api.ts index 181a837966c..f28df87b77c 100644 --- a/src/app/components/autocomplete/public_api.ts +++ b/src/app/components/autocomplete/public_api.ts @@ -1,2 +1,3 @@ export * from './autocomplete'; export * from './autocomplete.interface'; +export * from './style/autocompletestyle'; diff --git a/src/app/components/avatar/public_api.ts b/src/app/components/avatar/public_api.ts index a7424ca3117..3a10af67b0e 100644 --- a/src/app/components/avatar/public_api.ts +++ b/src/app/components/avatar/public_api.ts @@ -1 +1,2 @@ export * from './avatar'; +export * from './style/avatarstyle'; diff --git a/src/app/components/avatargroup/public_api.ts b/src/app/components/avatargroup/public_api.ts index 2260b1ae894..933b37ae343 100644 --- a/src/app/components/avatargroup/public_api.ts +++ b/src/app/components/avatargroup/public_api.ts @@ -1 +1,2 @@ export * from './avatargroup'; +export * from './style/avatargroupstyle'; diff --git a/src/app/components/badge/public_api.ts b/src/app/components/badge/public_api.ts index 1566eee0060..833eaaf427b 100644 --- a/src/app/components/badge/public_api.ts +++ b/src/app/components/badge/public_api.ts @@ -1 +1,2 @@ export * from './badge'; +export * from './style/badgestyle'; diff --git a/src/app/components/blockui/public_api.ts b/src/app/components/blockui/public_api.ts index 7ac2afa28d8..8ca468a8eb0 100644 --- a/src/app/components/blockui/public_api.ts +++ b/src/app/components/blockui/public_api.ts @@ -1,2 +1,3 @@ export * from './blockui'; export * from './blockui.interface'; +export * from './style/blockuistyle'; diff --git a/src/app/components/breadcrumb/public_api.ts b/src/app/components/breadcrumb/public_api.ts index c739721aefd..0757f2f8cf8 100644 --- a/src/app/components/breadcrumb/public_api.ts +++ b/src/app/components/breadcrumb/public_api.ts @@ -1,2 +1,3 @@ export * from './breadcrumb'; export * from './breadcrumb.interface'; +export * from './style/breadcrumbstyle'; diff --git a/src/app/components/button/public_api.ts b/src/app/components/button/public_api.ts index 260c882a342..1e12f5f0711 100644 --- a/src/app/components/button/public_api.ts +++ b/src/app/components/button/public_api.ts @@ -1,2 +1,3 @@ export * from './button'; +export * from './style/buttonstyle'; export * from './button.interface'; diff --git a/src/app/components/buttongroup/public_api.ts b/src/app/components/buttongroup/public_api.ts index 68b8e614797..71a809a516e 100644 --- a/src/app/components/buttongroup/public_api.ts +++ b/src/app/components/buttongroup/public_api.ts @@ -1 +1,2 @@ export * from './buttongroup'; +export * from './style/buttongroupstyle'; diff --git a/src/app/components/calendar/public_api.ts b/src/app/components/calendar/public_api.ts index 21390c935e4..821c9aebc70 100644 --- a/src/app/components/calendar/public_api.ts +++ b/src/app/components/calendar/public_api.ts @@ -1,2 +1,3 @@ export * from './calendar'; +export * from './style/calendarstyle'; export * from './calendar.interface'; diff --git a/src/app/components/card/public_api.ts b/src/app/components/card/public_api.ts index 23d03b7ad84..a888c29c193 100644 --- a/src/app/components/card/public_api.ts +++ b/src/app/components/card/public_api.ts @@ -1,2 +1,3 @@ export * from './card'; export * from './card.interface'; +export * from './style/cardstyle'; diff --git a/src/app/components/carousel/public_api.ts b/src/app/components/carousel/public_api.ts index 5187fe0226f..8cb7d58c44b 100644 --- a/src/app/components/carousel/public_api.ts +++ b/src/app/components/carousel/public_api.ts @@ -1,2 +1,3 @@ export * from './carousel'; export * from './carousel.interface'; +export * from './style/carouselstyle'; diff --git a/src/app/components/cascadeselect/public_api.ts b/src/app/components/cascadeselect/public_api.ts index f5ed704dba3..f38dbc34998 100644 --- a/src/app/components/cascadeselect/public_api.ts +++ b/src/app/components/cascadeselect/public_api.ts @@ -1,2 +1,3 @@ export * from './cascadeselect'; export * from './cascadeselect.interface'; +export * from './style/cascadeselectstyle'; diff --git a/src/app/components/chart/public_api.ts b/src/app/components/chart/public_api.ts index 88eac5df844..bcd544acd12 100644 --- a/src/app/components/chart/public_api.ts +++ b/src/app/components/chart/public_api.ts @@ -1 +1,2 @@ export * from './chart'; +export * from './style/chartstyle'; diff --git a/src/app/components/checkbox/public_api.ts b/src/app/components/checkbox/public_api.ts index 17699d3d574..7ac8a3f8d59 100644 --- a/src/app/components/checkbox/public_api.ts +++ b/src/app/components/checkbox/public_api.ts @@ -1,2 +1,3 @@ export * from './checkbox'; export * from './checkbox.interface'; +export * from './style/checkboxstyle'; diff --git a/src/app/components/chip/public_api.ts b/src/app/components/chip/public_api.ts index 3724e4eaa87..ab2a52208b7 100644 --- a/src/app/components/chip/public_api.ts +++ b/src/app/components/chip/public_api.ts @@ -1,2 +1,3 @@ export * from './chip'; export * from './chip.interface'; +export * from './style/chipstyle'; diff --git a/src/app/components/colorpicker/public_api.ts b/src/app/components/colorpicker/public_api.ts index dcc50f8f70d..1154fa10828 100644 --- a/src/app/components/colorpicker/public_api.ts +++ b/src/app/components/colorpicker/public_api.ts @@ -1,2 +1,3 @@ export * from './colorpicker'; export * from './colorpicker.interface'; +export * from './style/colorpickerstyle'; diff --git a/src/app/components/confirmdialog/public_api.ts b/src/app/components/confirmdialog/public_api.ts index fc3f9cf9c3a..d0c281ebb74 100644 --- a/src/app/components/confirmdialog/public_api.ts +++ b/src/app/components/confirmdialog/public_api.ts @@ -1,2 +1,3 @@ export * from './confirmdialog'; export * from './confirmdialog.interface'; +export * from './style/confirmdialogstyle'; diff --git a/src/app/components/confirmpopup/public_api.ts b/src/app/components/confirmpopup/public_api.ts index 78e92920113..22756392b07 100644 --- a/src/app/components/confirmpopup/public_api.ts +++ b/src/app/components/confirmpopup/public_api.ts @@ -1,2 +1,3 @@ export * from './confirmpopup'; export * from './confirmpopup.interface'; +export * from './style/confirmpopupstyle'; diff --git a/src/app/components/contextmenu/public_api.ts b/src/app/components/contextmenu/public_api.ts index 1cc7565170e..faceebed635 100644 --- a/src/app/components/contextmenu/public_api.ts +++ b/src/app/components/contextmenu/public_api.ts @@ -1 +1,2 @@ export * from './contextmenu'; +export * from './style/contextmenustyle'; diff --git a/src/app/components/dataview/public_api.ts b/src/app/components/dataview/public_api.ts index 6dcdf10d234..234489ff76d 100644 --- a/src/app/components/dataview/public_api.ts +++ b/src/app/components/dataview/public_api.ts @@ -1,2 +1,3 @@ export * from './dataview'; export * from './dataview.interface'; +export * from './style/dataviewstyle'; diff --git a/src/app/components/datepicker/public_api.ts b/src/app/components/datepicker/public_api.ts index acaeb85ea63..747bef4415e 100644 --- a/src/app/components/datepicker/public_api.ts +++ b/src/app/components/datepicker/public_api.ts @@ -1,2 +1,3 @@ export * from './datepicker'; export * from './datepicker.interface'; +export * from './style/datepickerstyle'; diff --git a/src/app/components/dock/public_api.ts b/src/app/components/dock/public_api.ts index cc755e46d6e..94fc46bb485 100644 --- a/src/app/components/dock/public_api.ts +++ b/src/app/components/dock/public_api.ts @@ -1,2 +1,3 @@ export * from './dock'; export * from './dock.interface'; +export * from './style/dockstyle'; diff --git a/src/app/components/drawer/public_api.ts b/src/app/components/drawer/public_api.ts index 61a5a858beb..7da22085517 100644 --- a/src/app/components/drawer/public_api.ts +++ b/src/app/components/drawer/public_api.ts @@ -1,2 +1,3 @@ export * from './drawer'; export * from './drawer.interface'; +export * from './style/drawerstyle'; diff --git a/src/app/components/dropdown/public_api.ts b/src/app/components/dropdown/public_api.ts index f974c925740..56a24c86a7d 100644 --- a/src/app/components/dropdown/public_api.ts +++ b/src/app/components/dropdown/public_api.ts @@ -1,2 +1,3 @@ export * from './dropdown'; export * from './dropdown.interface'; +export * from './style/dropdownstyle'; diff --git a/src/app/components/dynamicdialog/public_api.ts b/src/app/components/dynamicdialog/public_api.ts index 9c70784e7a4..c68441429e4 100644 --- a/src/app/components/dynamicdialog/public_api.ts +++ b/src/app/components/dynamicdialog/public_api.ts @@ -4,3 +4,4 @@ export * from './dynamicdialog-config'; export * from './dynamicdialog-injector'; export * from './dynamicdialog-ref'; export * from './dynamicdialog'; +export * from './style/dynamicdialogstyle'; diff --git a/src/app/components/editor/public_api.ts b/src/app/components/editor/public_api.ts index 0067e48bef2..3ac208f6a32 100644 --- a/src/app/components/editor/public_api.ts +++ b/src/app/components/editor/public_api.ts @@ -1,2 +1,3 @@ export * from './editor'; export * from './editor.interface'; +export * from './style/editorstyle'; diff --git a/src/app/components/fieldset/public_api.ts b/src/app/components/fieldset/public_api.ts index eb374b0ea77..7fce9b45f73 100644 --- a/src/app/components/fieldset/public_api.ts +++ b/src/app/components/fieldset/public_api.ts @@ -1,2 +1,3 @@ export * from './fieldset'; export * from './fieldset.interface'; +export * from './style/fieldsetstyle'; diff --git a/src/app/components/fileupload/public_api.ts b/src/app/components/fileupload/public_api.ts index 7f1ca7c58e9..0728d9519fc 100644 --- a/src/app/components/fileupload/public_api.ts +++ b/src/app/components/fileupload/public_api.ts @@ -1,2 +1,3 @@ export * from './fileupload'; export * from './fileupload.interface'; +export * from './style/fileuploadstyle'; diff --git a/src/app/components/floatlabel/public_api.ts b/src/app/components/floatlabel/public_api.ts index b05926f72c3..33b58b7cff9 100644 --- a/src/app/components/floatlabel/public_api.ts +++ b/src/app/components/floatlabel/public_api.ts @@ -1 +1,2 @@ export * from './floatlabel'; +export * from './style/floatlabelstyle'; diff --git a/src/app/components/fluid/public_api.ts b/src/app/components/fluid/public_api.ts index 8e7c76798f7..5eb726f7f0a 100644 --- a/src/app/components/fluid/public_api.ts +++ b/src/app/components/fluid/public_api.ts @@ -1 +1,2 @@ export * from './fluid'; +export * from './style/fluidstyle'; diff --git a/src/app/components/galleria/public_api.ts b/src/app/components/galleria/public_api.ts index 3bebb60f844..5837194e4fb 100644 --- a/src/app/components/galleria/public_api.ts +++ b/src/app/components/galleria/public_api.ts @@ -1,2 +1,3 @@ export * from './galleria'; export * from './galleria.interface'; +export * from './style/galleriastyle'; diff --git a/src/app/components/iconfield/public_api.ts b/src/app/components/iconfield/public_api.ts index ae79cc76e51..cad59cb4b88 100644 --- a/src/app/components/iconfield/public_api.ts +++ b/src/app/components/iconfield/public_api.ts @@ -1 +1,2 @@ export * from './iconfield'; +export * from './style/iconfieldstyle'; diff --git a/src/app/components/iftalabel/public_api.ts b/src/app/components/iftalabel/public_api.ts index 7daae5a8bb5..e0e5ae202ee 100644 --- a/src/app/components/iftalabel/public_api.ts +++ b/src/app/components/iftalabel/public_api.ts @@ -1 +1,2 @@ export * from './iftalabel'; +export * from './style/iftalabelstyle'; diff --git a/src/app/components/image/public_api.ts b/src/app/components/image/public_api.ts index 31401f63654..81cd5de7172 100644 --- a/src/app/components/image/public_api.ts +++ b/src/app/components/image/public_api.ts @@ -1,2 +1,3 @@ export * from './image'; export * from './image.interface'; +export * from './style/imagestyle'; diff --git a/src/app/components/inplace/public_api.ts b/src/app/components/inplace/public_api.ts index bfb1889768d..45da28de6f1 100644 --- a/src/app/components/inplace/public_api.ts +++ b/src/app/components/inplace/public_api.ts @@ -1,2 +1,3 @@ export * from './inplace'; export * from './inplace.interface'; +export * from './style/inplacestyle'; diff --git a/src/app/components/inputgroup/public_api.ts b/src/app/components/inputgroup/public_api.ts index d806323197d..d25083d7b3f 100644 --- a/src/app/components/inputgroup/public_api.ts +++ b/src/app/components/inputgroup/public_api.ts @@ -1 +1,2 @@ export * from './inputgroup'; +export * from './style/inputgroupstyle'; diff --git a/src/app/components/inputgroupaddon/public_api.ts b/src/app/components/inputgroupaddon/public_api.ts index 41e11c64546..2832547ba7b 100644 --- a/src/app/components/inputgroupaddon/public_api.ts +++ b/src/app/components/inputgroupaddon/public_api.ts @@ -1 +1,2 @@ export * from './inputgroupaddon'; +export * from './style/inputgroupaddonstyle'; diff --git a/src/app/components/inputicon/public_api.ts b/src/app/components/inputicon/public_api.ts index ca6c47fe6fb..0714de7a99e 100644 --- a/src/app/components/inputicon/public_api.ts +++ b/src/app/components/inputicon/public_api.ts @@ -1 +1,2 @@ export * from './inputicon'; +export * from './style/inputiconstyle'; diff --git a/src/app/components/inputmask/public_api.ts b/src/app/components/inputmask/public_api.ts index d9e429ce14f..828dba8d772 100644 --- a/src/app/components/inputmask/public_api.ts +++ b/src/app/components/inputmask/public_api.ts @@ -1,2 +1,3 @@ export * from './inputmask'; export * from './inputmask.interface'; +export * from './style/inputmaskstyle'; diff --git a/src/app/components/inputnumber/public_api.ts b/src/app/components/inputnumber/public_api.ts index 63bf7f14000..3ae30b86aa5 100644 --- a/src/app/components/inputnumber/public_api.ts +++ b/src/app/components/inputnumber/public_api.ts @@ -1,2 +1,3 @@ export * from './inputnumber'; export * from './inputnumber.interface'; +export * from './style/inputnumberstyle'; diff --git a/src/app/components/inputotp/public_api.ts b/src/app/components/inputotp/public_api.ts index 870efe9ad12..21cbce3898c 100644 --- a/src/app/components/inputotp/public_api.ts +++ b/src/app/components/inputotp/public_api.ts @@ -1,2 +1,3 @@ export * from './inputotp'; export * from './inputotp.interface'; +export * from './style/inputotpstyle'; diff --git a/src/app/components/inputswitch/public_api.ts b/src/app/components/inputswitch/public_api.ts index a0a1f1bfbf0..8163d340551 100644 --- a/src/app/components/inputswitch/public_api.ts +++ b/src/app/components/inputswitch/public_api.ts @@ -1,2 +1,3 @@ export * from './inputswitch'; export * from './inputswitch.interface'; +export * from './style/inputswitchstyle'; diff --git a/src/app/components/inputtext/public_api.ts b/src/app/components/inputtext/public_api.ts index 394fe80bc04..36bc8604dd0 100644 --- a/src/app/components/inputtext/public_api.ts +++ b/src/app/components/inputtext/public_api.ts @@ -1 +1,2 @@ export * from './inputtext'; +export * from './style/inputtextstyle'; diff --git a/src/app/components/inputtextarea/public_api.ts b/src/app/components/inputtextarea/public_api.ts index d2a1b3bff9c..1e6d42ae06b 100644 --- a/src/app/components/inputtextarea/public_api.ts +++ b/src/app/components/inputtextarea/public_api.ts @@ -1 +1,2 @@ export * from './inputtextarea'; +export * from './style/textareastyle'; diff --git a/src/app/components/knob/public_api.ts b/src/app/components/knob/public_api.ts index b092f9c7851..2a2996957bf 100644 --- a/src/app/components/knob/public_api.ts +++ b/src/app/components/knob/public_api.ts @@ -1 +1,2 @@ export * from './knob'; +export * from './style/knobstyle'; diff --git a/src/app/components/listbox/public_api.ts b/src/app/components/listbox/public_api.ts index 343d2221e89..e8de0e8d595 100644 --- a/src/app/components/listbox/public_api.ts +++ b/src/app/components/listbox/public_api.ts @@ -1,2 +1,3 @@ export * from './listbox'; export * from './listbox.interface'; +export * from './style/listboxstyle'; diff --git a/src/app/components/megamenu/public_api.ts b/src/app/components/megamenu/public_api.ts index ec146c3c467..1ef17aa9956 100644 --- a/src/app/components/megamenu/public_api.ts +++ b/src/app/components/megamenu/public_api.ts @@ -1,2 +1,3 @@ export * from './megamenu'; export * from './megamenu.interface'; +export * from './style/megamenustyle'; diff --git a/src/app/components/menu/public_api.ts b/src/app/components/menu/public_api.ts index 8267df70b37..dcad79d2379 100644 --- a/src/app/components/menu/public_api.ts +++ b/src/app/components/menu/public_api.ts @@ -1 +1,2 @@ export * from './menu'; +export * from './style/menustyle'; diff --git a/src/app/components/menubar/public_api.ts b/src/app/components/menubar/public_api.ts index 0de74c435f4..861fa3b1d3c 100644 --- a/src/app/components/menubar/public_api.ts +++ b/src/app/components/menubar/public_api.ts @@ -1,2 +1,3 @@ export * from './menubar'; export * from './menubar.interface'; +export * from './style/menubarstyle'; diff --git a/src/app/components/messages/public_api.ts b/src/app/components/messages/public_api.ts index 90dbcbc556f..a3af2749998 100644 --- a/src/app/components/messages/public_api.ts +++ b/src/app/components/messages/public_api.ts @@ -1,2 +1,3 @@ export * from './messages'; export * from './messages.interface'; +export * from './style/messagesstyle'; diff --git a/src/app/components/metergroup/public_api.ts b/src/app/components/metergroup/public_api.ts index 10134e99107..61e474b7b51 100644 --- a/src/app/components/metergroup/public_api.ts +++ b/src/app/components/metergroup/public_api.ts @@ -1,2 +1,3 @@ export * from './metergroup'; export * from './metergroup.interface'; +export * from './style/metergroupstyle'; diff --git a/src/app/components/multiselect/public_api.ts b/src/app/components/multiselect/public_api.ts index 5fa9e23f9cd..9a864e078e5 100644 --- a/src/app/components/multiselect/public_api.ts +++ b/src/app/components/multiselect/public_api.ts @@ -1,2 +1,3 @@ export * from './multiselect'; export * from './multiselect.interface'; +export * from './style/multiselectstyle'; diff --git a/src/app/components/orderlist/public_api.ts b/src/app/components/orderlist/public_api.ts index 01fb1339717..6c89630af25 100644 --- a/src/app/components/orderlist/public_api.ts +++ b/src/app/components/orderlist/public_api.ts @@ -1,2 +1,3 @@ export * from './orderlist'; export * from './orderlist.interface'; +export * from './style/orderliststyle'; diff --git a/src/app/components/organizationchart/public_api.ts b/src/app/components/organizationchart/public_api.ts index 54473958a39..a30195321b0 100644 --- a/src/app/components/organizationchart/public_api.ts +++ b/src/app/components/organizationchart/public_api.ts @@ -1,2 +1,3 @@ export * from './organizationchart'; export * from './organizationchart.interface'; +export * from './style/organizationchartstyle'; diff --git a/src/app/components/overlay/public_api.ts b/src/app/components/overlay/public_api.ts index 40adbf0f47f..cafbe49ab43 100644 --- a/src/app/components/overlay/public_api.ts +++ b/src/app/components/overlay/public_api.ts @@ -1 +1,2 @@ export * from './overlay'; +export * from './style/overlaystyle'; diff --git a/src/app/components/overlaybadge/public_api.ts b/src/app/components/overlaybadge/public_api.ts index ff411c21b94..ae33580085c 100644 --- a/src/app/components/overlaybadge/public_api.ts +++ b/src/app/components/overlaybadge/public_api.ts @@ -1 +1,2 @@ export * from './overlaybadge'; +export * from './style/overlaybadgestyle'; diff --git a/src/app/components/overlaypanel/public_api.ts b/src/app/components/overlaypanel/public_api.ts index 74f9a9ac29b..c95a11dad78 100644 --- a/src/app/components/overlaypanel/public_api.ts +++ b/src/app/components/overlaypanel/public_api.ts @@ -1 +1,2 @@ export * from './overlaypanel'; +export * from './style/popoverstyle'; diff --git a/src/app/components/paginator/public_api.ts b/src/app/components/paginator/public_api.ts index 35f80203534..ababb9dda9f 100644 --- a/src/app/components/paginator/public_api.ts +++ b/src/app/components/paginator/public_api.ts @@ -1,2 +1,3 @@ export * from './paginator'; export * from './paginator.interface'; +export * from './style/paginatorstyle'; diff --git a/src/app/components/panelmenu/public_api.ts b/src/app/components/panelmenu/public_api.ts index e02f242b85c..a9794b5e4ee 100644 --- a/src/app/components/panelmenu/public_api.ts +++ b/src/app/components/panelmenu/public_api.ts @@ -1,2 +1,3 @@ export * from './panelmenu'; export * from './panelmenu.interface'; +export * from './style/panelmenustyle'; diff --git a/src/app/components/password/public_api.ts b/src/app/components/password/public_api.ts index 47b7e7a2635..bdc6743b606 100644 --- a/src/app/components/password/public_api.ts +++ b/src/app/components/password/public_api.ts @@ -1 +1,2 @@ export * from './password'; +export * from './style/passwordstyle'; diff --git a/src/app/components/picklist/public_api.ts b/src/app/components/picklist/public_api.ts index b8352d14fc4..464c5f80fd0 100644 --- a/src/app/components/picklist/public_api.ts +++ b/src/app/components/picklist/public_api.ts @@ -1,2 +1,3 @@ export * from './picklist'; export * from './picklist.interface'; +export * from './style/pickliststyle'; diff --git a/src/app/components/popover/public_api.ts b/src/app/components/popover/public_api.ts index 1f4904cff9b..17b45270a59 100644 --- a/src/app/components/popover/public_api.ts +++ b/src/app/components/popover/public_api.ts @@ -1 +1,2 @@ export * from './popover'; +export * from './style/popoverstyle'; diff --git a/src/app/components/progressbar/public_api.ts b/src/app/components/progressbar/public_api.ts index 50fbb2fa67c..cedaa0e5635 100644 --- a/src/app/components/progressbar/public_api.ts +++ b/src/app/components/progressbar/public_api.ts @@ -1 +1,2 @@ export * from './progressbar'; +export * from './style/progressbarstyle'; diff --git a/src/app/components/progressspinner/public_api.ts b/src/app/components/progressspinner/public_api.ts index 94abc70eaba..c4f6c1cd5bc 100644 --- a/src/app/components/progressspinner/public_api.ts +++ b/src/app/components/progressspinner/public_api.ts @@ -1 +1,2 @@ export * from './progressspinner'; +export * from './style/progressspinnerstyle'; diff --git a/src/app/components/radiobutton/public_api.ts b/src/app/components/radiobutton/public_api.ts index 807207f2f92..e873f6407c5 100644 --- a/src/app/components/radiobutton/public_api.ts +++ b/src/app/components/radiobutton/public_api.ts @@ -1,2 +1,3 @@ export * from './radiobutton'; export * from './radiobutton.interface'; +export * from './style/radiobuttonstyle'; diff --git a/src/app/components/rating/public_api.ts b/src/app/components/rating/public_api.ts index cba13162301..1e98f7b9188 100644 --- a/src/app/components/rating/public_api.ts +++ b/src/app/components/rating/public_api.ts @@ -1,2 +1,3 @@ export * from './rating'; export * from './rating.interface'; +export * from './style/ratingstyle'; diff --git a/src/app/components/ripple/public_api.ts b/src/app/components/ripple/public_api.ts index cf97c6397aa..0c2d9d30711 100644 --- a/src/app/components/ripple/public_api.ts +++ b/src/app/components/ripple/public_api.ts @@ -1 +1,2 @@ export * from './ripple'; +export * from './style/ripplestyle'; diff --git a/src/app/components/scroller/public_api.ts b/src/app/components/scroller/public_api.ts index 7cda143b6e3..108319744a3 100644 --- a/src/app/components/scroller/public_api.ts +++ b/src/app/components/scroller/public_api.ts @@ -1,2 +1,3 @@ export * from './scroller'; export * from './scroller.interface'; +export * from './style/scrollerstyle'; diff --git a/src/app/components/scrollpanel/public_api.ts b/src/app/components/scrollpanel/public_api.ts index dd661a81438..65387f9d97e 100644 --- a/src/app/components/scrollpanel/public_api.ts +++ b/src/app/components/scrollpanel/public_api.ts @@ -1,2 +1,3 @@ export * from './scrollpanel'; export * from './scrollpanel.interface'; +export * from './style/scrollpanelstyle'; diff --git a/src/app/components/scrolltop/public_api.ts b/src/app/components/scrolltop/public_api.ts index 7b64e3692f4..c5d2178d7d9 100644 --- a/src/app/components/scrolltop/public_api.ts +++ b/src/app/components/scrolltop/public_api.ts @@ -1,2 +1,3 @@ export * from './scrolltop'; export * from './scrolltop.interface'; +export * from './style/scrolltopstyle'; diff --git a/src/app/components/selectbutton/public_api.ts b/src/app/components/selectbutton/public_api.ts index b130621bab3..b9f0eeda0a2 100644 --- a/src/app/components/selectbutton/public_api.ts +++ b/src/app/components/selectbutton/public_api.ts @@ -1,2 +1,3 @@ export * from './selectbutton'; export * from './selectbutton.interface'; +export * from './style/selectbuttonstyle'; diff --git a/src/app/components/sidebar/public_api.ts b/src/app/components/sidebar/public_api.ts index f12ef6c557d..28e3c490e21 100644 --- a/src/app/components/sidebar/public_api.ts +++ b/src/app/components/sidebar/public_api.ts @@ -1,2 +1,3 @@ export * from './sidebar'; export * from './sidebar.interface'; +export * from './style/drawerstyle'; diff --git a/src/app/components/skeleton/public_api.ts b/src/app/components/skeleton/public_api.ts index 25c51ad04a6..43e5909cd80 100644 --- a/src/app/components/skeleton/public_api.ts +++ b/src/app/components/skeleton/public_api.ts @@ -1 +1,2 @@ export * from './skeleton'; +export * from './style/skeletonstyle'; diff --git a/src/app/components/slider/public_api.ts b/src/app/components/slider/public_api.ts index f29e3dadb96..1ba13252a26 100644 --- a/src/app/components/slider/public_api.ts +++ b/src/app/components/slider/public_api.ts @@ -1,2 +1,3 @@ export * from './slider'; export * from './slider.interface'; +export * from './style/sliderstyle'; diff --git a/src/app/components/speeddial/public_api.ts b/src/app/components/speeddial/public_api.ts index b616f971912..a9e38b7f495 100644 --- a/src/app/components/speeddial/public_api.ts +++ b/src/app/components/speeddial/public_api.ts @@ -1,2 +1,3 @@ export * from './speeddial'; export * from './speeddial.interface'; +export * from './style/speeddialstyle'; diff --git a/src/app/components/splitbutton/public_api.ts b/src/app/components/splitbutton/public_api.ts index e3edbb32040..61293d59ffd 100644 --- a/src/app/components/splitbutton/public_api.ts +++ b/src/app/components/splitbutton/public_api.ts @@ -1,2 +1,3 @@ export * from './splitbutton'; export * from './splitbutton.interface'; +export * from './style/splitbuttonstyle'; diff --git a/src/app/components/splitter/public_api.ts b/src/app/components/splitter/public_api.ts index e46d8ef622e..c6a353308e7 100644 --- a/src/app/components/splitter/public_api.ts +++ b/src/app/components/splitter/public_api.ts @@ -1,2 +1,3 @@ export * from './splitter'; export * from './splitter.interface'; +export * from './style/splitterstyle'; diff --git a/src/app/components/stepper/public_api.ts b/src/app/components/stepper/public_api.ts index ef1c3dd0278..b998ba86319 100644 --- a/src/app/components/stepper/public_api.ts +++ b/src/app/components/stepper/public_api.ts @@ -1 +1,2 @@ export * from './stepper'; +export * from './style/stepperstyle'; diff --git a/src/app/components/steps/public_api.ts b/src/app/components/steps/public_api.ts index 9487d6700a7..22b361c78d5 100644 --- a/src/app/components/steps/public_api.ts +++ b/src/app/components/steps/public_api.ts @@ -1 +1,2 @@ export * from './steps'; +export * from './style/stepsstyle'; diff --git a/src/app/components/table/public_api.ts b/src/app/components/table/public_api.ts index 7c5e2a070d5..9799f92b4ed 100644 --- a/src/app/components/table/public_api.ts +++ b/src/app/components/table/public_api.ts @@ -1,3 +1,4 @@ export * from './table'; export * from './table.interface'; export * from './columnfilter.interface'; +export * from './style/tablestyle'; diff --git a/src/app/components/tabmenu/public_api.ts b/src/app/components/tabmenu/public_api.ts index c65e7b99f9e..fadc59c658b 100644 --- a/src/app/components/tabmenu/public_api.ts +++ b/src/app/components/tabmenu/public_api.ts @@ -1,2 +1,3 @@ export * from './tabmenu'; export * from './tabmenu.interface'; +export * from './style/tabmenustyle'; diff --git a/src/app/components/tabs/public_api.ts b/src/app/components/tabs/public_api.ts index c2d1b4e91b2..5e8a0b1cfd4 100644 --- a/src/app/components/tabs/public_api.ts +++ b/src/app/components/tabs/public_api.ts @@ -1 +1,2 @@ export * from './tabs'; +export * from './style/tabsstyle'; diff --git a/src/app/components/tabview/public_api.ts b/src/app/components/tabview/public_api.ts index ac7d8f43463..9033b390c88 100644 --- a/src/app/components/tabview/public_api.ts +++ b/src/app/components/tabview/public_api.ts @@ -1,2 +1,3 @@ export * from './tabview'; export * from './tabview.interface'; +export * from './style/tabsstyle'; diff --git a/src/app/components/tag/public_api.ts b/src/app/components/tag/public_api.ts index 3fcf04c1617..4e615ec165c 100644 --- a/src/app/components/tag/public_api.ts +++ b/src/app/components/tag/public_api.ts @@ -1,2 +1,3 @@ export * from './tag'; export * from './tag.interface'; +export * from './style/tagstyle'; diff --git a/src/app/components/terminal/public_api.ts b/src/app/components/terminal/public_api.ts index 7a0ce8ba37d..43708e82803 100644 --- a/src/app/components/terminal/public_api.ts +++ b/src/app/components/terminal/public_api.ts @@ -1,2 +1,3 @@ export * from './terminal'; export * from './terminalservice'; +export * from './style/terminalstyle'; diff --git a/src/app/components/textarea/public_api.ts b/src/app/components/textarea/public_api.ts index ac29789fc26..919611dacc5 100644 --- a/src/app/components/textarea/public_api.ts +++ b/src/app/components/textarea/public_api.ts @@ -1 +1,2 @@ export * from './textarea'; +export * from './style/textareastyle'; diff --git a/src/app/components/tieredmenu/public_api.ts b/src/app/components/tieredmenu/public_api.ts index d2e949d641a..c2f65bc7db9 100644 --- a/src/app/components/tieredmenu/public_api.ts +++ b/src/app/components/tieredmenu/public_api.ts @@ -1,2 +1,3 @@ export * from './tieredmenu'; export * from './tieredmenu.interface'; +export * from './style/tieredmenustyle'; diff --git a/src/app/components/timeline/public_api.ts b/src/app/components/timeline/public_api.ts index 69fe2f01966..6abe5e16d38 100644 --- a/src/app/components/timeline/public_api.ts +++ b/src/app/components/timeline/public_api.ts @@ -1,2 +1,3 @@ export * from './timeline'; export * from './timeline.interface'; +export * from './style/timelinestyle'; diff --git a/src/app/components/toast/public_api.ts b/src/app/components/toast/public_api.ts index 24d9baa0af8..fd25772a4ed 100644 --- a/src/app/components/toast/public_api.ts +++ b/src/app/components/toast/public_api.ts @@ -1,2 +1,3 @@ export * from './toast'; export * from './toast.interface'; +export * from './style/toaststyle'; diff --git a/src/app/components/togglebutton/public_api.ts b/src/app/components/togglebutton/public_api.ts index cc75c9c1ed0..a4f69cae559 100644 --- a/src/app/components/togglebutton/public_api.ts +++ b/src/app/components/togglebutton/public_api.ts @@ -1 +1,2 @@ export * from './togglebutton'; +export * from './style/togglebuttonstyle'; diff --git a/src/app/components/toggleswitch/public_api.ts b/src/app/components/toggleswitch/public_api.ts index 37fd111e61c..ab5edbd01f7 100644 --- a/src/app/components/toggleswitch/public_api.ts +++ b/src/app/components/toggleswitch/public_api.ts @@ -1,2 +1,3 @@ export * from './toggleswitch'; export * from './toggleswitch.interface'; +export * from './style/toggleswitchstyle'; diff --git a/src/app/components/toolbar/public_api.ts b/src/app/components/toolbar/public_api.ts index 632020ed6da..450050e61b7 100644 --- a/src/app/components/toolbar/public_api.ts +++ b/src/app/components/toolbar/public_api.ts @@ -1,2 +1,3 @@ export * from './toolbar'; export * from './toolbar.interface'; +export * from './style/toolbarstyle'; diff --git a/src/app/components/tooltip/public_api.ts b/src/app/components/tooltip/public_api.ts index ed8326d5e7c..4a7a51384e0 100644 --- a/src/app/components/tooltip/public_api.ts +++ b/src/app/components/tooltip/public_api.ts @@ -1 +1,2 @@ export * from './tooltip'; +export * from './style/tooltipstyle'; diff --git a/src/app/components/tree/public_api.ts b/src/app/components/tree/public_api.ts index 06765af7604..071f2cbf246 100644 --- a/src/app/components/tree/public_api.ts +++ b/src/app/components/tree/public_api.ts @@ -1,2 +1,3 @@ export * from './tree'; export * from './tree.interface'; +export * from './style/treestyle'; diff --git a/src/app/components/treeselect/public_api.ts b/src/app/components/treeselect/public_api.ts index c12e06d8825..d100a801698 100644 --- a/src/app/components/treeselect/public_api.ts +++ b/src/app/components/treeselect/public_api.ts @@ -1,2 +1,3 @@ export * from './treeselect'; export * from './treeselect.interface'; +export * from './style/treeselectstyle'; diff --git a/src/app/components/treetable/public_api.ts b/src/app/components/treetable/public_api.ts index 8936987b7c3..4347ec64fea 100644 --- a/src/app/components/treetable/public_api.ts +++ b/src/app/components/treetable/public_api.ts @@ -1,2 +1,3 @@ export * from './treetable'; export * from './treetable.interface'; +export * from './style/treetablestyle'; From da14c6b940e71297fb42c3c98ee08285c1149b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:44:31 +0300 Subject: [PATCH 17/49] Update primeuix version --- package-lock.json | 16 ++++++++-------- package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 446e7509a94..7904816c217 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,7 +35,7 @@ "@angular/router": "^18.0.1", "@angular/ssr": "^18.0.1", "@docsearch/js": "^3.3.4", - "@primeuix/styled": "0.1.3", + "@primeuix/styled": "0.2.0", "@stackblitz/sdk": "1.9.0", "@types/express": "^4.17.17", "@types/jasmine": "~4.3.1", @@ -6482,21 +6482,21 @@ } }, "node_modules/@primeuix/styled": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@primeuix/styled/-/styled-0.1.3.tgz", - "integrity": "sha512-BT54htCUz5KgngwfOAUg5UqYT9WbaBmIbWa5QSHu6mFyLWqzgM+1mk+SeEzco9uoocnGYiVeCdZ4Z7PB75fWtg==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@primeuix/styled/-/styled-0.2.0.tgz", + "integrity": "sha512-3Q6bDrmwTW88tzJsFIFenC0VyXLj0+/wYw+TZnJ/4CCDfehR4WfTs4EZdpuFtYqvmbpJ6zWXAiwSCNdSYTZkyA==", "dev": true, "dependencies": { - "@primeuix/utils": "^0.1.3" + "@primeuix/utils": "^0.2.0" }, "engines": { "node": ">=12.11.0" } }, "node_modules/@primeuix/utils": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@primeuix/utils/-/utils-0.1.3.tgz", - "integrity": "sha512-l6z7BOtdib9ef7dOl+Gf/n7wSGBTuq64uXF6Z0fcOUppynzeOjgHHmV2b3ksp/Ls8+paw1OYBLTI8qJzgWANew==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@primeuix/utils/-/utils-0.2.0.tgz", + "integrity": "sha512-AaDIeRFlsbkVTk2s0mlEjnGSLi31X669NVwo+n+AVAnBdDiQznjipNTpHbOobVBtjOKZize74PChK6uoaSBRUw==", "dev": true, "engines": { "node": ">=12.11.0" diff --git a/package.json b/package.json index d80688e8a9a..736376bc0ef 100644 --- a/package.json +++ b/package.json @@ -89,7 +89,7 @@ "@angular/ssr": "^18.0.1", "@docsearch/js": "^3.3.4", "esbuild": "^0.19.8", - "@primeuix/styled": "0.1.3", + "@primeuix/styled": "0.2.0", "@algolia/client-search": "^4.19.1" }, "dependencies": { From 0dd6e8fc80ef331956929b21691e4f13127dd334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:44:57 +0300 Subject: [PATCH 18/49] Update primeuix version for lib --- src/app/components/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/package.json b/src/app/components/package.json index 3aa05a142a4..099a887c449 100644 --- a/src/app/components/package.json +++ b/src/app/components/package.json @@ -16,7 +16,7 @@ "./resources/": "./resources/" }, "dependencies": { - "@primeuix/styled": "0.0.6" + "@primeuix/styled": "0.2.0" }, "module": "primeng.js", "typings": "primeng.d.ts", From f74ccaf67e4d93f993df4ca7450794d4743b5bc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 15 Oct 2024 12:42:50 +0300 Subject: [PATCH 19/49] Fix type error and typo --- src/app/components/badge/badge.ts | 13 +++++++++---- src/app/components/overlaybadge/overlaybadge.ts | 4 ++-- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/src/app/components/badge/badge.ts b/src/app/components/badge/badge.ts index 83b845cae51..77aafca6667 100755 --- a/src/app/components/badge/badge.ts +++ b/src/app/components/badge/badge.ts @@ -1,18 +1,18 @@ import { NgClass, NgStyle } from '@angular/common'; import { AfterViewInit, + booleanAttribute, ChangeDetectionStrategy, Component, + computed, Directive, + inject, Input, + input, NgModule, OnChanges, SimpleChanges, ViewEncapsulation, - booleanAttribute, - inject, - input, - computed, } from '@angular/core'; import { SharedModule } from 'primeng/api'; import { DomHandler } from 'primeng/dom'; @@ -250,6 +250,11 @@ export class Badge extends BaseComponent { * @group Props */ badgeSize = input<'small' | 'large' | 'xlarge' | null>(); + /** + * Size of the badge, valid options are "large" and "xlarge". + * @group Props + */ + size = input<'small' | 'large' | 'xlarge' | null>(); /** * Severity type of the badge. * @group Props diff --git a/src/app/components/overlaybadge/overlaybadge.ts b/src/app/components/overlaybadge/overlaybadge.ts index ee43eda95ed..ac10e8c899f 100755 --- a/src/app/components/overlaybadge/overlaybadge.ts +++ b/src/app/components/overlaybadge/overlaybadge.ts @@ -4,6 +4,7 @@ import { SharedModule } from 'primeng/api'; import { OverlayBadgeStyle } from './style/overlaybadgestyle'; import { BaseComponent } from 'primeng/basecomponent'; import { BadgeModule } from 'primeng/badge'; + /** * OverlayPanel is a container component positioned as connected to its target. * @group Components @@ -20,7 +21,6 @@ import { BadgeModule } from 'primeng/badge'; [severity]="severity" [value]="value" [badgeDisabled]="badgeDisabled" - [size]="size" /> `, @@ -48,7 +48,7 @@ export class OverlayBadge extends BaseComponent { * Severity type of the badge. * @group Props */ - @Input() severity: 'success' | 'info' | 'warning' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined; + @Input() severity: 'success' | 'info' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | 'warn' | null | undefined; /** * Value to display inside the badge. * @group Props From aba2fa5677349beed6e81fe84a3548a209084b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:05:54 +0300 Subject: [PATCH 20/49] Refactor dom structure, fixes #16482 --- .../components/toggleswitch/toggleswitch.ts | 52 +++++++++---------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/src/app/components/toggleswitch/toggleswitch.ts b/src/app/components/toggleswitch/toggleswitch.ts index c18e8f11a26..5a634858be2 100755 --- a/src/app/components/toggleswitch/toggleswitch.ts +++ b/src/app/components/toggleswitch/toggleswitch.ts @@ -1,18 +1,18 @@ import { CommonModule } from '@angular/common'; import { + booleanAttribute, ChangeDetectionStrategy, Component, ElementRef, EventEmitter, + forwardRef, + inject, Input, NgModule, + numberAttribute, Output, ViewChild, ViewEncapsulation, - booleanAttribute, - forwardRef, - inject, - numberAttribute, } from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; import { AutoFocusModule } from 'primeng/autofocus'; @@ -34,34 +34,32 @@ export const TOGGLESWITCH_VALUE_ACCESSOR: any = { template: `
    -
    - -
    +
    `, From 745417851b6fb63180527cc186ae6b0ef2d98ae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:39:08 +0300 Subject: [PATCH 21/49] Update exports --- src/app/components/tabs/public_api.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/components/tabs/public_api.ts b/src/app/components/tabs/public_api.ts index 5e8a0b1cfd4..9fe99636cb4 100644 --- a/src/app/components/tabs/public_api.ts +++ b/src/app/components/tabs/public_api.ts @@ -1,2 +1,6 @@ export * from './tabs'; +export * from './tablist'; +export * from './tab'; +export * from './tabpanel'; +export * from './tabpanels'; export * from './style/tabsstyle'; From c2ff86c15496c61f7ece165b9d91b2ea9a9edcf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:39:39 +0300 Subject: [PATCH 22/49] Fix wrong token --- .../dropdown/style/dropdownstyle.ts | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/components/dropdown/style/dropdownstyle.ts b/src/app/components/dropdown/style/dropdownstyle.ts index a0e513268e2..da07878d378 100644 --- a/src/app/components/dropdown/style/dropdownstyle.ts +++ b/src/app/components/dropdown/style/dropdownstyle.ts @@ -1,5 +1,15 @@ import { Injectable } from '@angular/core'; import { BaseStyle } from 'primeng/base'; +/** + * + * Dropdown also known as Select, is used to choose an item from a collection of options. + * + * [Live Demo](https://www.primeng.org/select/) + * + * @module dropdownstyle + * + */ +import type { SelectStyle } from 'primeng/select'; const theme = ({ dt }) => ` .p-select { @@ -197,7 +207,7 @@ input.p-select-label { .p-dropdown.ng-invalid.ng-dirty, .p-select.ng-invalid.ng-dirty { - outline: 1px solid ${dt('selectbutton.invalid.border.color')}; + outline: 1px solid ${dt('select.invalid.border.color')}; outline-offset: 0; } @@ -258,17 +268,6 @@ export class DropdownStyle extends BaseStyle { classes = classes; } -/** - * - * Dropdown also known as Select, is used to choose an item from a collection of options. - * - * [Live Demo](https://www.primeng.org/select/) - * - * @module dropdownstyle - * - */ -import type { SelectStyle } from 'primeng/select'; - export enum DropdownClasses {} export interface DropdownStyle extends SelectStyle {} From c9d9cb029c8d7096008b426419f50731620e6daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 12:53:41 +0300 Subject: [PATCH 23/49] Update template structure, fixes #16478 --- src/app/components/breadcrumb/breadcrumb.ts | 112 +++++++++----------- 1 file changed, 49 insertions(+), 63 deletions(-) diff --git a/src/app/components/breadcrumb/breadcrumb.ts b/src/app/components/breadcrumb/breadcrumb.ts index c0e73c09736..989197c9b81 100755 --- a/src/app/components/breadcrumb/breadcrumb.ts +++ b/src/app/components/breadcrumb/breadcrumb.ts @@ -21,6 +21,7 @@ import { TooltipModule } from 'primeng/tooltip'; import { BreadcrumbItemClickEvent } from './breadcrumb.interface'; import { BreadCrumbStyle } from './style/breadcrumbstyle'; import { BaseComponent } from 'primeng/basecomponent'; + /** * Breadcrumb provides contextual information about page hierarchy. * @group Components @@ -55,9 +56,8 @@ import { BaseComponent } from 'primeng/basecomponent'; [target]="home.target" [attr.title]="home.title" [attr.tabindex]="home.disabled ? null : '0'" - [attr.ariaCurrentWhenActive]="isCurrentUrl(home)" > - + {{ home.label }} @@ -75,7 +75,6 @@ import { BaseComponent } from 'primeng/basecomponent'; [target]="home.target" [attr.title]="home.title" [attr.tabindex]="home.disabled ? null : '0'" - [attr.ariaCurrentWhenActive]="isCurrentUrl(home)" [fragment]="home.fragment" [queryParamsHandling]="home.queryParamsHandling" [preserveFragment]="home.preserveFragment" @@ -109,55 +108,52 @@ import { BaseComponent } from 'primeng/basecomponent'; [tooltipOptions]="item.tooltipOptions" [attr.data-pc-section]="'menuitem'" > -
    - - - - {{ - item.label - }} - + @if (itemTemplate) { + + } @else { + + + + + {{ + item.label + }} + + - - - - - - - + + - - - - - + + }
  • @@ -281,13 +274,6 @@ export class Breadcrumb extends BaseComponent implements AfterContentInit { } }); } - - isCurrentUrl(item) { - const { routerLink } = item; - const lastPath = this.router ? this.router.url : ''; - - return routerLink === lastPath ? 'page' : undefined; - } } @NgModule({ From 4643662ba4b0cde9da4c00679f1e67e0b585baf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 12:54:04 +0300 Subject: [PATCH 24/49] code format --- src/app/components/menu/menu.ts | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/src/app/components/menu/menu.ts b/src/app/components/menu/menu.ts index 5a7a8886562..76b6d21ba5b 100755 --- a/src/app/components/menu/menu.ts +++ b/src/app/components/menu/menu.ts @@ -1,37 +1,34 @@ -import { AnimationEvent, animate, style, transition, trigger } from '@angular/animations'; -import { CommonModule, DOCUMENT, isPlatformBrowser } from '@angular/common'; +import { animate, AnimationEvent, style, transition, trigger } from '@angular/animations'; +import { CommonModule, isPlatformBrowser } from '@angular/common'; import { + booleanAttribute, ChangeDetectionStrategy, - ChangeDetectorRef, Component, + computed, ContentChildren, ElementRef, EventEmitter, + forwardRef, Inject, + inject, Input, NgModule, + numberAttribute, OnDestroy, Output, - PLATFORM_ID, Pipe, PipeTransform, + PLATFORM_ID, QueryList, - Renderer2, + signal, TemplateRef, ViewChild, ViewEncapsulation, ViewRef, - booleanAttribute, - computed, - effect, - forwardRef, - inject, - numberAttribute, - signal, } from '@angular/core'; import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; import { RouterModule } from '@angular/router'; -import { MenuItem, OverlayService, PrimeNGConfig, PrimeTemplate } from 'primeng/api'; +import { MenuItem, OverlayService, PrimeTemplate } from 'primeng/api'; import { ConnectedOverlayScrollHandler, DomHandler } from 'primeng/dom'; import { RippleModule } from 'primeng/ripple'; import { TooltipModule } from 'primeng/tooltip'; @@ -190,6 +187,7 @@ export class MenuItemContent { [ngClass]="{ 'p-hidden': submenu.visible === false }" role="separator" >
  • +
  • Date: Wed, 16 Oct 2024 13:09:32 +0300 Subject: [PATCH 25/49] Refactor selector, fixes #16481 --- src/app/components/picklist/picklist.ts | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/components/picklist/picklist.ts b/src/app/components/picklist/picklist.ts index e7d7d66af74..5b6d11d134d 100755 --- a/src/app/components/picklist/picklist.ts +++ b/src/app/components/picklist/picklist.ts @@ -1,23 +1,23 @@ import { CDK_DRAG_CONFIG, CdkDragDrop, DragDropModule, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop'; -import { CommonModule, DOCUMENT, isPlatformBrowser } from '@angular/common'; +import { CommonModule, isPlatformBrowser } from '@angular/common'; import { AfterContentInit, AfterViewChecked, + booleanAttribute, ChangeDetectionStrategy, Component, ContentChildren, ElementRef, EventEmitter, + inject, Input, NgModule, + numberAttribute, Output, QueryList, TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - inject, - numberAttribute, } from '@angular/core'; import { FilterService, PrimeTemplate, SharedModule } from 'primeng/api'; import { ButtonModule, ButtonProps } from 'primeng/button'; @@ -52,6 +52,7 @@ import { PickListStyle } from './style/pickliststyle'; import { BaseComponent } from 'primeng/basecomponent'; import { Listbox, ListboxModule } from 'primeng/listbox'; import { FormsModule } from '@angular/forms'; + /** * PickList is used to reorder items between different lists. * @group Components @@ -1796,15 +1797,13 @@ export class PickList extends BaseComponent implements AfterViewChecked, AfterCo let innerHTML = ` @media screen and (max-width: ${this.breakpoint}) { - .p-picklist[${this.id}] { + .p-picklist[${this.attrSelector}] { flex-direction: column; } - .p-picklist[${this.id}] .p-picklist-controls { + .p-picklist[${this.attrSelector}] .p-picklist-controls { flex-direction: row; } - - }`; this.renderer.setProperty(this.styleElement, 'innerHTML', innerHTML); From d020eb0e2d8af9d6100aac40c77a314d7fd9afb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:11:02 +0300 Subject: [PATCH 26/49] fix wrong type --- src/app/components/picklist/picklist.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/components/picklist/picklist.ts b/src/app/components/picklist/picklist.ts index 5b6d11d134d..6787ad6cc90 100755 --- a/src/app/components/picklist/picklist.ts +++ b/src/app/components/picklist/picklist.ts @@ -1179,7 +1179,7 @@ export class PickList extends BaseComponent implements AfterViewChecked, AfterCo this.listViewTargetChild.cd.markForCheck(); } - moveUp(listElement: HTMLElement, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { + moveUp(listElement: any, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { if (selectedItems && selectedItems.length) { selectedItems = this.sortByIndexInList(selectedItems, list); for (let i = 0; i < selectedItems.length; i++) { @@ -1209,7 +1209,7 @@ export class PickList extends BaseComponent implements AfterViewChecked, AfterCo } } - moveTop(listElement: HTMLElement, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { + moveTop(listElement: any, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { if (selectedItems && selectedItems.length) { selectedItems = this.sortByIndexInList(selectedItems, list); for (let i = 0; i < selectedItems.length; i++) { @@ -1236,7 +1236,7 @@ export class PickList extends BaseComponent implements AfterViewChecked, AfterCo } } - moveDown(listElement: HTMLElement, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { + moveDown(listElement: any, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { if (selectedItems && selectedItems.length) { selectedItems = this.sortByIndexInList(selectedItems, list); for (let i = selectedItems.length - 1; i >= 0; i--) { @@ -1266,7 +1266,7 @@ export class PickList extends BaseComponent implements AfterViewChecked, AfterCo } } - moveBottom(listElement: HTMLElement, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { + moveBottom(listElement: any, list: any[], selectedItems: any[], callback: EventEmitter, listType: number) { if (selectedItems && selectedItems.length) { selectedItems = this.sortByIndexInList(selectedItems, list); for (let i = selectedItems.length - 1; i >= 0; i--) { From 4ea915f5b719ae6200573b19c0d6a15cd3a8c408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:26:01 +0300 Subject: [PATCH 27/49] update routes --- routes.txt | 3 +-- src/assets/showcase/data/menu.json | 6 +----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/routes.txt b/routes.txt index e6327a66ec4..b5cca683705 100644 --- a/routes.txt +++ b/routes.txt @@ -100,7 +100,6 @@ /styleclass /support /table -/tabmenu /tabs /tag /team @@ -125,4 +124,4 @@ /tree /treeselect /treetable -/uikit \ No newline at end of file +/uikit diff --git a/src/assets/showcase/data/menu.json b/src/assets/showcase/data/menu.json index d1bc89cfaeb..fbde449bdc0 100644 --- a/src/assets/showcase/data/menu.json +++ b/src/assets/showcase/data/menu.json @@ -330,10 +330,6 @@ "name": "Steps", "routerLink": "/steps" }, - { - "name": "TabMenu", - "routerLink": "/tabmenu" - }, { "name": "TieredMenu", "routerLink": "/tieredmenu" @@ -599,4 +595,4 @@ ] } ] -} \ No newline at end of file +} From e86e14878fb926e864313e51153c3f14e3686a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:34:38 +0300 Subject: [PATCH 28/49] Refactor for firefox, fixes #16471 --- src/app/showcase/service/appconfigservice.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/app/showcase/service/appconfigservice.ts b/src/app/showcase/service/appconfigservice.ts index 50f80a2df09..d5e496803b1 100644 --- a/src/app/showcase/service/appconfigservice.ts +++ b/src/app/showcase/service/appconfigservice.ts @@ -30,13 +30,11 @@ export class AppConfigService { const state = this.appState(); if (isPlatformBrowser(this.platformId)) { - (document as any).startViewTransition(() => { - if (state.darkTheme) { - this.document.documentElement.classList.add('p-dark'); - } else { - this.document.documentElement.classList.remove('p-dark'); - } - }); + if (state.darkTheme) { + this.document.documentElement.classList.add('p-dark'); + } else { + this.document.documentElement.classList.remove('p-dark'); + } } }); } From c66a1457f631eebc8ea58c6b8542d506f870b75c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:09:36 +0300 Subject: [PATCH 29/49] Fix disabled state, fixes #16393 --- src/app/components/password/password.ts | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/app/components/password/password.ts b/src/app/components/password/password.ts index 6ce324a7694..24f701e9e24 100644 --- a/src/app/components/password/password.ts +++ b/src/app/components/password/password.ts @@ -1,38 +1,34 @@ -import { AnimationEvent, animate, style, transition, trigger } from '@angular/animations'; -import { CommonModule, DOCUMENT, isPlatformBrowser } from '@angular/common'; +import { animate, AnimationEvent, style, transition, trigger } from '@angular/animations'; +import { CommonModule, isPlatformBrowser } from '@angular/common'; import { AfterContentInit, + booleanAttribute, ChangeDetectionStrategy, - ChangeDetectorRef, Component, ContentChildren, Directive, DoCheck, ElementRef, EventEmitter, + forwardRef, HostListener, - Inject, + inject, Input, NgModule, NgZone, + numberAttribute, OnDestroy, OnInit, Output, - PLATFORM_ID, Pipe, PipeTransform, QueryList, - Renderer2, TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - forwardRef, - inject, - numberAttribute, } from '@angular/core'; import { NG_VALUE_ACCESSOR } from '@angular/forms'; -import { OverlayService, PrimeNGConfig, PrimeTemplate, SharedModule, TranslationKeys } from 'primeng/api'; +import { OverlayService, PrimeTemplate, SharedModule, TranslationKeys } from 'primeng/api'; import { ConnectedOverlayScrollHandler, DomHandler } from 'primeng/dom'; import { EyeIcon } from 'primeng/icons/eye'; import { EyeSlashIcon } from 'primeng/icons/eyeslash'; @@ -377,6 +373,7 @@ export const Password_VALUE_ACCESSOR: any = { [attr.aria-labelledBy]="ariaLabelledBy" [attr.id]="inputId" pInputText + [disabled]="disabled" [ngClass]="disabled | mapper: inputFieldClass" [ngStyle]="inputStyle" [class]="inputStyleClass" From 1cb1f4317cfa54167856a00b7fbd1b6efc9f043c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:50:17 +0300 Subject: [PATCH 30/49] Update style and classes, fixes #16413 --- .../components/dynamicdialog/dynamicdialog.ts | 55 +++++++++++++++---- 1 file changed, 43 insertions(+), 12 deletions(-) diff --git a/src/app/components/dynamicdialog/dynamicdialog.ts b/src/app/components/dynamicdialog/dynamicdialog.ts index 62f7c984564..0f80566b715 100755 --- a/src/app/components/dynamicdialog/dynamicdialog.ts +++ b/src/app/components/dynamicdialog/dynamicdialog.ts @@ -43,12 +43,37 @@ const hideAnimation = animation([animate('{{transition}}', style({ transform: '{ @Component({ selector: 'p-dynamicDialog', template: ` -
    +
    -
    -
    +
    +
    - {{ ddconfig.header }} -
    + {{ ddconfig.header }} +
    -
    +
    -
    +
    {{ ddconfig.footer }} @@ -331,7 +361,7 @@ export class DynamicDialogComponent extends BaseComponent implements AfterViewIn for (let breakpoint in this.breakpoints) { innerHTML += ` @media screen and (max-width: ${breakpoint}) { - .p-dialog[${this.id}]:not(.p-dialog-maximized) { + .p-dialog[${this.attrSelector}]:not(.p-dialog-maximized) { width: ${this.breakpoints[breakpoint]} !important; } } @@ -351,6 +381,7 @@ export class DynamicDialogComponent extends BaseComponent implements AfterViewIn } ngAfterViewInit() { + super.ngAfterViewInit(); this.loadChildComponent(this.childComponentType!); this.ariaLabelledBy = this.getAriaLabelledBy(); this.cd.detectChanges(); From d0a9c02391485d3e1cb4458f19dc749ca4a209af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 18:19:25 +0300 Subject: [PATCH 31/49] Update overlay style fixed #16416 --- src/app/components/treetable/style/treetablestyle.ts | 2 +- src/app/components/treetable/treetable.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/components/treetable/style/treetablestyle.ts b/src/app/components/treetable/style/treetablestyle.ts index 80beaf7dc13..fef624adfc9 100644 --- a/src/app/components/treetable/style/treetablestyle.ts +++ b/src/app/components/treetable/style/treetablestyle.ts @@ -173,7 +173,7 @@ const theme = ({ dt }) => ` /* Loader */ .p-treetable-mask { - position: absolute; + position: absolute !important; display: flex; align-items: center; justify-content: center; diff --git a/src/app/components/treetable/treetable.ts b/src/app/components/treetable/treetable.ts index 2a81b75c5e5..1ef95b5eff8 100755 --- a/src/app/components/treetable/treetable.ts +++ b/src/app/components/treetable/treetable.ts @@ -2,6 +2,7 @@ import { CommonModule, DOCUMENT, isPlatformBrowser } from '@angular/common'; import { AfterContentInit, AfterViewInit, + booleanAttribute, ChangeDetectionStrategy, ChangeDetectorRef, Component, @@ -11,10 +12,12 @@ import { EventEmitter, HostListener, Inject, + inject, Injectable, Input, NgModule, NgZone, + numberAttribute, OnChanges, OnDestroy, OnInit, @@ -26,9 +29,6 @@ import { TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - inject, - numberAttribute, } from '@angular/core'; import { BlockableUI, @@ -136,7 +136,7 @@ export class TreeTableService { }" >
    -
    +
    From da1be35e0214c6fd5454cbeb85d2c48ac2df8db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 18:27:34 +0300 Subject: [PATCH 32/49] Set new version & code format --- api-generator/themedoc.json | 7600 ++++++++--------- package.json | 2 +- src/app/components/editor/editor.ts | 21 +- .../floatlabel/style/floatlabelstyle.ts | 4 +- .../iftalabel/style/iftalabelstyle.ts | 2 +- src/app/components/image/image.ts | 18 +- src/app/components/inputicon/inputicon.ts | 4 +- src/app/components/orderlist/orderlist.ts | 15 +- src/app/components/package.json | 2 +- src/app/components/panelmenu/panelmenu.ts | 16 +- src/app/components/rating/rating.ts | 4 +- src/app/components/speeddial/speeddial.ts | 10 +- src/app/components/themes/aura/aura.ts | 1 - .../themes/aura/floatlabel/index.ts | 20 +- .../components/themes/aura/iftalabel/index.ts | 6 +- .../themes/lara/floatlabel/index.ts | 18 +- .../components/themes/lara/iftalabel/index.ts | 6 +- .../themes/nora/floatlabel/index.ts | 18 +- .../components/themes/nora/iftalabel/index.ts | 6 +- src/app/showcase/data/versions.json | 2 +- src/app/showcase/doc/Image/templatedoc.ts | 7 +- src/app/showcase/doc/apidoc/index.json | 37 +- .../showcase/doc/autocomplete/dropdowndoc.ts | 7 +- .../doc/autocomplete/forceselectiondoc.ts | 8 +- .../showcase/doc/autocomplete/objectsdoc.ts | 7 +- .../doc/autocomplete/reactiveformsdoc.ts | 11 +- .../doc/autocomplete/virtualscrolldoc.ts | 10 +- .../showcase/doc/avatar/avatardoc.module.ts | 2 +- .../cascadeselect/cascasdeselectdoc.module.ts | 3 +- .../showcase/doc/cascadeselect/templatedoc.ts | 9 +- .../doc/datepicker/datetemplatedoc.ts | 4 +- src/app/showcase/doc/dialog/templatedoc.ts | 2 +- .../doc/focustrap/focustrapdoc.module.ts | 2 +- src/app/showcase/doc/galleria/advanceddoc.ts | 6 +- src/app/showcase/doc/galleria/autoplaydoc.ts | 6 +- src/app/showcase/doc/galleria/basicdoc.ts | 6 +- .../doc/galleria/indicator/clickeventdoc.ts | 7 +- .../galleria/navigator/itemthumbnailsdoc.ts | 6 +- .../navigator/itemwithoutthumbnailsdoc.ts | 8 +- .../showcase/doc/iconfield/floatlabeldoc.ts | 3 - src/app/showcase/doc/inplace/inputdoc.ts | 2 +- src/app/showcase/doc/inputgroup/basicdoc.ts | 7 +- .../doc/inputmask/inputmaskdoc.module.ts | 2 +- .../showcase/doc/inputnumber/iftalabeldoc.ts | 5 +- .../doc/inputnumber/inputnumberdoc.module.ts | 2 +- src/app/showcase/doc/inputtext/disableddoc.ts | 2 +- .../doc/inputtext/inputtextdoc.module.ts | 2 +- src/app/showcase/doc/inputtext/invaliddoc.ts | 2 +- .../showcase/doc/listbox/listboxdoc.module.ts | 2 +- .../doc/multiselect/reactiveformsdoc.ts | 20 +- src/app/showcase/doc/orderlist/filterdoc.ts | 7 +- .../doc/orderlist/orderlistdoc.module.ts | 2 +- src/app/showcase/doc/password/iftalabeldoc.ts | 2 +- .../doc/password/passworddoc.module.ts | 2 +- src/app/showcase/doc/rating/readonlydoc.ts | 2 +- .../showcase/doc/rating/withoutcanceldoc.ts | 2 +- src/app/showcase/doc/scroller/delaydoc.ts | 18 +- src/app/showcase/doc/scroller/griddoc.ts | 6 +- src/app/showcase/doc/scroller/lazyloaddoc.ts | 8 +- src/app/showcase/doc/scroller/loaderdoc.ts | 18 +- .../showcase/doc/scroller/programmaticdoc.ts | 8 +- src/app/showcase/doc/scrollpanel/customdoc.ts | 2 +- src/app/showcase/doc/select/basicdoc.ts | 1 - src/app/showcase/doc/select/clearicondoc.ts | 9 +- src/app/showcase/doc/select/editabledoc.ts | 9 +- src/app/showcase/doc/select/filleddoc.ts | 9 +- src/app/showcase/doc/select/groupdoc.ts | 8 +- .../showcase/doc/select/loadingstatedoc.ts | 9 +- src/app/showcase/doc/selectbutton/basicdoc.ts | 2 +- .../showcase/doc/slider/sliderdoc.module.ts | 12 +- src/app/showcase/doc/slider/verticaldoc.ts | 2 +- src/app/showcase/doc/speeddial/lineardoc.ts | 1 - src/app/showcase/doc/table/filterbasic.ts | 2 +- src/app/showcase/doc/table/rowexpansiondoc.ts | 2 +- src/app/showcase/doc/table/tabledoc.module.ts | 2 +- .../doc/textarea/texteareadoc.module.ts | 4 +- src/app/showcase/doc/tree/contextmenudoc.ts | 8 +- src/app/showcase/doc/tree/virtualscrolldoc.ts | 8 +- .../doc/treeselect/treeselectdoc.module.ts | 2 +- src/app/showcase/pages/iconfield/index.ts | 2 +- src/app/showcase/pages/iftalabel/index.ts | 2 +- .../pages/landing/herosection.component.ts | 4 +- src/app/showcase/pages/listbox/index.ts | 2 +- src/app/showcase/pages/message/index.ts | 3 +- src/app/showcase/pages/toolbar/index.ts | 2 +- src/app/showcase/pages/treeselect/index.ts | 2 +- 86 files changed, 4131 insertions(+), 4025 deletions(-) diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json index 2d69f6dc228..0475e46e4f5 100644 --- a/api-generator/themedoc.json +++ b/api-generator/themedoc.json @@ -48,7 +48,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L17" } ], "type": { @@ -92,7 +92,7 @@ "fileName": "accordion/index.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L23" } ], "type": { @@ -114,7 +114,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L17" } ] } @@ -141,7 +141,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L28" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "accordion/index.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L34" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "accordion/index.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L40" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L28" } ] } @@ -275,7 +275,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L45" } ], "type": { @@ -319,7 +319,7 @@ "fileName": "accordion/index.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L51" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "accordion/index.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L57" } ], "type": { @@ -399,7 +399,7 @@ "fileName": "accordion/index.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L63" } ], "type": { @@ -439,7 +439,7 @@ "fileName": "accordion/index.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L69" } ], "type": { @@ -479,7 +479,7 @@ "fileName": "accordion/index.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L75" } ], "type": { @@ -519,7 +519,7 @@ "fileName": "accordion/index.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L81" } ], "type": { @@ -559,7 +559,7 @@ "fileName": "accordion/index.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L87" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "accordion/index.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L93" } ], "type": { @@ -639,7 +639,7 @@ "fileName": "accordion/index.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L99" } ], "type": { @@ -679,7 +679,7 @@ "fileName": "accordion/index.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L105" } ], "type": { @@ -719,7 +719,7 @@ "fileName": "accordion/index.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L111" } ], "type": { @@ -759,7 +759,7 @@ "fileName": "accordion/index.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L117" } ], "type": { @@ -788,7 +788,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L121" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "accordion/index.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L127" } ], "type": { @@ -872,7 +872,7 @@ "fileName": "accordion/index.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L133" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "accordion/index.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L139" } ], "type": { @@ -952,7 +952,7 @@ "fileName": "accordion/index.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L145" } ], "type": { @@ -992,7 +992,7 @@ "fileName": "accordion/index.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L151" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L121" } ] } @@ -1045,7 +1045,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L156" } ], "type": { @@ -1089,7 +1089,7 @@ "fileName": "accordion/index.ts", "line": 162, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L162" } ], "type": { @@ -1129,7 +1129,7 @@ "fileName": "accordion/index.ts", "line": 168, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L168" } ], "type": { @@ -1169,7 +1169,7 @@ "fileName": "accordion/index.ts", "line": 174, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L174" } ], "type": { @@ -1209,7 +1209,7 @@ "fileName": "accordion/index.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L180" } ], "type": { @@ -1234,7 +1234,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L156" } ] } @@ -1261,7 +1261,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L185" } ], "type": { @@ -1305,7 +1305,7 @@ "fileName": "accordion/index.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L191" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "accordion/index.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L197" } ], "type": { @@ -1368,7 +1368,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L185" } ] } @@ -1395,7 +1395,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L202" } ], "type": { @@ -1439,7 +1439,7 @@ "fileName": "accordion/index.ts", "line": 208, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L208" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L208" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "accordion/index.ts", "line": 214, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L214" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L202" } ] } @@ -1537,7 +1537,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L45" } ] } @@ -1564,7 +1564,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L220" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "accordion/index.ts", "line": 226, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L226" } ], "type": { @@ -1648,7 +1648,7 @@ "fileName": "accordion/index.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L232" } ], "type": { @@ -1688,7 +1688,7 @@ "fileName": "accordion/index.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L238" } ], "type": { @@ -1728,7 +1728,7 @@ "fileName": "accordion/index.ts", "line": 244, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L244" } ], "type": { @@ -1768,7 +1768,7 @@ "fileName": "accordion/index.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L250" } ], "type": { @@ -1794,7 +1794,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L220" } ] } @@ -1813,7 +1813,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -1838,7 +1838,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -1876,7 +1876,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -1916,7 +1916,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -1945,7 +1945,7 @@ "fileName": "accordion/index.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L13" } ], "extendedTypes": [ @@ -1979,7 +1979,7 @@ "fileName": "accordion/index.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/accordion/index.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/accordion/index.ts#L1" } ] }, @@ -2026,7 +2026,7 @@ "fileName": "autocomplete/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L17" } ], "type": { @@ -2070,7 +2070,7 @@ "fileName": "autocomplete/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L23" } ], "type": { @@ -2110,7 +2110,7 @@ "fileName": "autocomplete/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L29" } ], "type": { @@ -2150,7 +2150,7 @@ "fileName": "autocomplete/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L35" } ], "type": { @@ -2190,7 +2190,7 @@ "fileName": "autocomplete/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L41" } ], "type": { @@ -2230,7 +2230,7 @@ "fileName": "autocomplete/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L47" } ], "type": { @@ -2270,7 +2270,7 @@ "fileName": "autocomplete/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L53" } ], "type": { @@ -2310,7 +2310,7 @@ "fileName": "autocomplete/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L59" } ], "type": { @@ -2350,7 +2350,7 @@ "fileName": "autocomplete/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L65" } ], "type": { @@ -2390,7 +2390,7 @@ "fileName": "autocomplete/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L71" } ], "type": { @@ -2430,7 +2430,7 @@ "fileName": "autocomplete/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L77" } ], "type": { @@ -2470,7 +2470,7 @@ "fileName": "autocomplete/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L83" } ], "type": { @@ -2510,7 +2510,7 @@ "fileName": "autocomplete/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L89" } ], "type": { @@ -2550,7 +2550,7 @@ "fileName": "autocomplete/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L95" } ], "type": { @@ -2590,7 +2590,7 @@ "fileName": "autocomplete/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L101" } ], "type": { @@ -2630,7 +2630,7 @@ "fileName": "autocomplete/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L107" } ], "type": { @@ -2659,7 +2659,7 @@ "fileName": "autocomplete/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L111" } ], "type": { @@ -2703,7 +2703,7 @@ "fileName": "autocomplete/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L117" } ], "type": { @@ -2743,7 +2743,7 @@ "fileName": "autocomplete/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L123" } ], "type": { @@ -2783,7 +2783,7 @@ "fileName": "autocomplete/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L129" } ], "type": { @@ -2823,7 +2823,7 @@ "fileName": "autocomplete/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L135" } ], "type": { @@ -2863,7 +2863,7 @@ "fileName": "autocomplete/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L141" } ], "type": { @@ -2889,7 +2889,7 @@ "fileName": "autocomplete/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L111" } ] } @@ -2927,7 +2927,7 @@ "fileName": "autocomplete/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L148" } ], "type": { @@ -2965,7 +2965,7 @@ "fileName": "autocomplete/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L17" } ] } @@ -2992,7 +2992,7 @@ "fileName": "autocomplete/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L153" } ], "type": { @@ -3036,7 +3036,7 @@ "fileName": "autocomplete/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L159" } ], "type": { @@ -3076,7 +3076,7 @@ "fileName": "autocomplete/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L165" } ], "type": { @@ -3116,7 +3116,7 @@ "fileName": "autocomplete/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L171" } ], "type": { @@ -3156,7 +3156,7 @@ "fileName": "autocomplete/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L177" } ], "type": { @@ -3196,7 +3196,7 @@ "fileName": "autocomplete/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L183" } ], "type": { @@ -3222,7 +3222,7 @@ "fileName": "autocomplete/index.d.ts", "line": 153, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L153" } ] } @@ -3249,7 +3249,7 @@ "fileName": "autocomplete/index.d.ts", "line": 188, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L188" } ], "type": { @@ -3293,7 +3293,7 @@ "fileName": "autocomplete/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L194" } ], "type": { @@ -3333,7 +3333,7 @@ "fileName": "autocomplete/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L200" } ], "type": { @@ -3356,7 +3356,7 @@ "fileName": "autocomplete/index.d.ts", "line": 188, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L188" } ] } @@ -3383,7 +3383,7 @@ "fileName": "autocomplete/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L205" } ], "type": { @@ -3427,7 +3427,7 @@ "fileName": "autocomplete/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L211" } ], "type": { @@ -3467,7 +3467,7 @@ "fileName": "autocomplete/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L217" } ], "type": { @@ -3507,7 +3507,7 @@ "fileName": "autocomplete/index.d.ts", "line": 223, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L223" } ], "type": { @@ -3547,7 +3547,7 @@ "fileName": "autocomplete/index.d.ts", "line": 229, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L229" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L229" } ], "type": { @@ -3587,7 +3587,7 @@ "fileName": "autocomplete/index.d.ts", "line": 235, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L235" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L235" } ], "type": { @@ -3627,7 +3627,7 @@ "fileName": "autocomplete/index.d.ts", "line": 241, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L241" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L241" } ], "type": { @@ -3667,7 +3667,7 @@ "fileName": "autocomplete/index.d.ts", "line": 247, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L247" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L247" } ], "type": { @@ -3707,7 +3707,7 @@ "fileName": "autocomplete/index.d.ts", "line": 253, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L253" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L253" } ], "type": { @@ -3747,7 +3747,7 @@ "fileName": "autocomplete/index.d.ts", "line": 259, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L259" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L259" } ], "type": { @@ -3777,7 +3777,7 @@ "fileName": "autocomplete/index.d.ts", "line": 205, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L205" } ] } @@ -3804,7 +3804,7 @@ "fileName": "autocomplete/index.d.ts", "line": 264, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L264" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L264" } ], "type": { @@ -3848,7 +3848,7 @@ "fileName": "autocomplete/index.d.ts", "line": 270, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L270" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L270" } ], "type": { @@ -3888,7 +3888,7 @@ "fileName": "autocomplete/index.d.ts", "line": 276, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L276" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L276" } ], "type": { @@ -3928,7 +3928,7 @@ "fileName": "autocomplete/index.d.ts", "line": 282, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L282" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L282" } ], "type": { @@ -3968,7 +3968,7 @@ "fileName": "autocomplete/index.d.ts", "line": 288, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L288" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L288" } ], "type": { @@ -3993,7 +3993,7 @@ "fileName": "autocomplete/index.d.ts", "line": 264, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L264" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L264" } ] } @@ -4020,7 +4020,7 @@ "fileName": "autocomplete/index.d.ts", "line": 293, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L293" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L293" } ], "type": { @@ -4064,7 +4064,7 @@ "fileName": "autocomplete/index.d.ts", "line": 299, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L299" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L299" } ], "type": { @@ -4104,7 +4104,7 @@ "fileName": "autocomplete/index.d.ts", "line": 305, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L305" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L305" } ], "type": { @@ -4144,7 +4144,7 @@ "fileName": "autocomplete/index.d.ts", "line": 311, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L311" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L311" } ], "type": { @@ -4184,7 +4184,7 @@ "fileName": "autocomplete/index.d.ts", "line": 317, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L317" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L317" } ], "type": { @@ -4224,7 +4224,7 @@ "fileName": "autocomplete/index.d.ts", "line": 323, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L323" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L323" } ], "type": { @@ -4253,7 +4253,7 @@ "fileName": "autocomplete/index.d.ts", "line": 327, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L327" } ], "type": { @@ -4297,7 +4297,7 @@ "fileName": "autocomplete/index.d.ts", "line": 333, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L333" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L333" } ], "type": { @@ -4337,7 +4337,7 @@ "fileName": "autocomplete/index.d.ts", "line": 339, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L339" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L339" } ], "type": { @@ -4377,7 +4377,7 @@ "fileName": "autocomplete/index.d.ts", "line": 345, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L345" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L345" } ], "type": { @@ -4417,7 +4417,7 @@ "fileName": "autocomplete/index.d.ts", "line": 351, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L351" } ], "type": { @@ -4457,7 +4457,7 @@ "fileName": "autocomplete/index.d.ts", "line": 357, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L357" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L357" } ], "type": { @@ -4483,7 +4483,7 @@ "fileName": "autocomplete/index.d.ts", "line": 327, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L327" } ] } @@ -4521,7 +4521,7 @@ "fileName": "autocomplete/index.d.ts", "line": 364, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L364" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L364" } ], "type": { @@ -4561,7 +4561,7 @@ "fileName": "autocomplete/index.d.ts", "line": 370, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L370" } ], "type": { @@ -4601,7 +4601,7 @@ "fileName": "autocomplete/index.d.ts", "line": 376, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L376" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L376" } ], "type": { @@ -4641,7 +4641,7 @@ "fileName": "autocomplete/index.d.ts", "line": 382, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L382" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L382" } ], "type": { @@ -4681,7 +4681,7 @@ "fileName": "autocomplete/index.d.ts", "line": 388, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L388" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L388" } ], "type": { @@ -4721,7 +4721,7 @@ "fileName": "autocomplete/index.d.ts", "line": 394, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L394" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L394" } ], "type": { @@ -4754,7 +4754,7 @@ "fileName": "autocomplete/index.d.ts", "line": 293, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L293" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L293" } ] } @@ -4781,7 +4781,7 @@ "fileName": "autocomplete/index.d.ts", "line": 399, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L399" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L399" } ], "type": { @@ -4825,7 +4825,7 @@ "fileName": "autocomplete/index.d.ts", "line": 405, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L405" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L405" } ], "type": { @@ -4847,7 +4847,7 @@ "fileName": "autocomplete/index.d.ts", "line": 399, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L399" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L399" } ] } @@ -4874,7 +4874,7 @@ "fileName": "autocomplete/index.d.ts", "line": 410, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L410" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L410" } ], "type": { @@ -4918,7 +4918,7 @@ "fileName": "autocomplete/index.d.ts", "line": 416, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L416" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L416" } ], "type": { @@ -4940,7 +4940,7 @@ "fileName": "autocomplete/index.d.ts", "line": 410, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L410" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L410" } ] } @@ -4959,7 +4959,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -4984,7 +4984,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -5022,7 +5022,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -5062,7 +5062,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -5095,7 +5095,7 @@ "fileName": "autocomplete/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L13" } ], "extendedTypes": [ @@ -5129,7 +5129,7 @@ "fileName": "autocomplete/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/autocomplete/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/autocomplete/index.d.ts#L1" } ] }, @@ -5176,7 +5176,7 @@ "fileName": "avatar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L17" } ], "type": { @@ -5220,7 +5220,7 @@ "fileName": "avatar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L23" } ], "type": { @@ -5260,7 +5260,7 @@ "fileName": "avatar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L29" } ], "type": { @@ -5300,7 +5300,7 @@ "fileName": "avatar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L35" } ], "type": { @@ -5340,7 +5340,7 @@ "fileName": "avatar/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L41" } ], "type": { @@ -5380,7 +5380,7 @@ "fileName": "avatar/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L47" } ], "type": { @@ -5406,7 +5406,7 @@ "fileName": "avatar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L17" } ] } @@ -5433,7 +5433,7 @@ "fileName": "avatar/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L52" } ], "type": { @@ -5477,7 +5477,7 @@ "fileName": "avatar/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L58" } ], "type": { @@ -5517,7 +5517,7 @@ "fileName": "avatar/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L64" } ], "type": { @@ -5540,7 +5540,7 @@ "fileName": "avatar/index.d.ts", "line": 52, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L52" } ] } @@ -5567,7 +5567,7 @@ "fileName": "avatar/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L69" } ], "type": { @@ -5611,7 +5611,7 @@ "fileName": "avatar/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L75" } ], "type": { @@ -5651,7 +5651,7 @@ "fileName": "avatar/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L81" } ], "type": { @@ -5691,7 +5691,7 @@ "fileName": "avatar/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L87" } ], "type": { @@ -5715,7 +5715,7 @@ "fileName": "avatar/index.d.ts", "line": 69, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L69" } ] } @@ -5742,7 +5742,7 @@ "fileName": "avatar/index.d.ts", "line": 92, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L92" } ], "type": { @@ -5786,7 +5786,7 @@ "fileName": "avatar/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L98" } ], "type": { @@ -5826,7 +5826,7 @@ "fileName": "avatar/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L104" } ], "type": { @@ -5866,7 +5866,7 @@ "fileName": "avatar/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L110" } ], "type": { @@ -5890,7 +5890,7 @@ "fileName": "avatar/index.d.ts", "line": 92, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L92" } ] } @@ -5909,7 +5909,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -5934,7 +5934,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -5972,7 +5972,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -6012,7 +6012,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -6041,7 +6041,7 @@ "fileName": "avatar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L13" } ], "extendedTypes": [ @@ -6075,7 +6075,7 @@ "fileName": "avatar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/avatar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/avatar/index.d.ts#L1" } ] }, @@ -6122,7 +6122,7 @@ "fileName": "badge/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L17" } ], "type": { @@ -6166,7 +6166,7 @@ "fileName": "badge/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L23" } ], "type": { @@ -6206,7 +6206,7 @@ "fileName": "badge/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L29" } ], "type": { @@ -6246,7 +6246,7 @@ "fileName": "badge/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L35" } ], "type": { @@ -6286,7 +6286,7 @@ "fileName": "badge/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L41" } ], "type": { @@ -6326,7 +6326,7 @@ "fileName": "badge/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L47" } ], "type": { @@ -6366,7 +6366,7 @@ "fileName": "badge/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L53" } ], "type": { @@ -6393,7 +6393,7 @@ "fileName": "badge/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L17" } ] } @@ -6420,7 +6420,7 @@ "fileName": "badge/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L58" } ], "type": { @@ -6464,7 +6464,7 @@ "fileName": "badge/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L64" } ], "type": { @@ -6486,7 +6486,7 @@ "fileName": "badge/index.d.ts", "line": 58, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L58" } ] } @@ -6513,7 +6513,7 @@ "fileName": "badge/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L69" } ], "type": { @@ -6557,7 +6557,7 @@ "fileName": "badge/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L75" } ], "type": { @@ -6597,7 +6597,7 @@ "fileName": "badge/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L81" } ], "type": { @@ -6637,7 +6637,7 @@ "fileName": "badge/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L87" } ], "type": { @@ -6661,7 +6661,7 @@ "fileName": "badge/index.d.ts", "line": 69, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L69" } ] } @@ -6688,7 +6688,7 @@ "fileName": "badge/index.d.ts", "line": 92, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L92" } ], "type": { @@ -6732,7 +6732,7 @@ "fileName": "badge/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L98" } ], "type": { @@ -6772,7 +6772,7 @@ "fileName": "badge/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L104" } ], "type": { @@ -6812,7 +6812,7 @@ "fileName": "badge/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L110" } ], "type": { @@ -6836,7 +6836,7 @@ "fileName": "badge/index.d.ts", "line": 92, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L92" } ] } @@ -6863,7 +6863,7 @@ "fileName": "badge/index.d.ts", "line": 115, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L115" } ], "type": { @@ -6907,7 +6907,7 @@ "fileName": "badge/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L121" } ], "type": { @@ -6947,7 +6947,7 @@ "fileName": "badge/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L127" } ], "type": { @@ -6987,7 +6987,7 @@ "fileName": "badge/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L133" } ], "type": { @@ -7011,7 +7011,7 @@ "fileName": "badge/index.d.ts", "line": 115, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L115" } ] } @@ -7038,7 +7038,7 @@ "fileName": "badge/index.d.ts", "line": 138, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L138" } ], "type": { @@ -7082,7 +7082,7 @@ "fileName": "badge/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L144" } ], "type": { @@ -7122,7 +7122,7 @@ "fileName": "badge/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L150" } ], "type": { @@ -7145,7 +7145,7 @@ "fileName": "badge/index.d.ts", "line": 138, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L138" } ] } @@ -7172,7 +7172,7 @@ "fileName": "badge/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L155" } ], "type": { @@ -7216,7 +7216,7 @@ "fileName": "badge/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L161" } ], "type": { @@ -7256,7 +7256,7 @@ "fileName": "badge/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L167" } ], "type": { @@ -7279,7 +7279,7 @@ "fileName": "badge/index.d.ts", "line": 155, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L155" } ] } @@ -7306,7 +7306,7 @@ "fileName": "badge/index.d.ts", "line": 172, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L172" } ], "type": { @@ -7350,7 +7350,7 @@ "fileName": "badge/index.d.ts", "line": 178, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L178" } ], "type": { @@ -7390,7 +7390,7 @@ "fileName": "badge/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L184" } ], "type": { @@ -7413,7 +7413,7 @@ "fileName": "badge/index.d.ts", "line": 172, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L172" } ] } @@ -7440,7 +7440,7 @@ "fileName": "badge/index.d.ts", "line": 189, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L189" } ], "type": { @@ -7484,7 +7484,7 @@ "fileName": "badge/index.d.ts", "line": 195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L195" } ], "type": { @@ -7524,7 +7524,7 @@ "fileName": "badge/index.d.ts", "line": 201, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L201" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L201" } ], "type": { @@ -7547,7 +7547,7 @@ "fileName": "badge/index.d.ts", "line": 189, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L189" } ] } @@ -7574,7 +7574,7 @@ "fileName": "badge/index.d.ts", "line": 206, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L206" } ], "type": { @@ -7618,7 +7618,7 @@ "fileName": "badge/index.d.ts", "line": 212, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L212" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L212" } ], "type": { @@ -7658,7 +7658,7 @@ "fileName": "badge/index.d.ts", "line": 218, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L218" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L218" } ], "type": { @@ -7681,7 +7681,7 @@ "fileName": "badge/index.d.ts", "line": 206, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L206" } ] } @@ -7708,7 +7708,7 @@ "fileName": "badge/index.d.ts", "line": 223, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L223" } ], "type": { @@ -7752,7 +7752,7 @@ "fileName": "badge/index.d.ts", "line": 229, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L229" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L229" } ], "type": { @@ -7792,7 +7792,7 @@ "fileName": "badge/index.d.ts", "line": 235, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L235" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L235" } ], "type": { @@ -7815,7 +7815,7 @@ "fileName": "badge/index.d.ts", "line": 223, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L223" } ] } @@ -7842,7 +7842,7 @@ "fileName": "badge/index.d.ts", "line": 240, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L240" } ], "type": { @@ -7886,7 +7886,7 @@ "fileName": "badge/index.d.ts", "line": 246, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L246" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L246" } ], "type": { @@ -7926,7 +7926,7 @@ "fileName": "badge/index.d.ts", "line": 252, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L252" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L252" } ], "type": { @@ -7949,7 +7949,7 @@ "fileName": "badge/index.d.ts", "line": 240, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L240" } ] } @@ -7968,7 +7968,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -7993,7 +7993,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -8031,7 +8031,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -8071,7 +8071,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -8108,7 +8108,7 @@ "fileName": "badge/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L13" } ], "extendedTypes": [ @@ -8142,7 +8142,7 @@ "fileName": "badge/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/badge/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/badge/index.d.ts#L1" } ] }, @@ -8189,7 +8189,7 @@ "fileName": "blockui/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/blockui/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/blockui/index.d.ts#L17" } ], "type": { @@ -8233,7 +8233,7 @@ "fileName": "blockui/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/blockui/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/blockui/index.d.ts#L23" } ], "type": { @@ -8255,7 +8255,7 @@ "fileName": "blockui/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/blockui/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/blockui/index.d.ts#L17" } ] } @@ -8274,7 +8274,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -8299,7 +8299,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -8337,7 +8337,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -8377,7 +8377,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -8403,7 +8403,7 @@ "fileName": "blockui/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/blockui/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/blockui/index.d.ts#L13" } ], "extendedTypes": [ @@ -8437,7 +8437,7 @@ "fileName": "blockui/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/blockui/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/blockui/index.d.ts#L1" } ] }, @@ -8484,7 +8484,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L17" } ], "type": { @@ -8528,7 +8528,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L23" } ], "type": { @@ -8568,7 +8568,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L29" } ], "type": { @@ -8608,7 +8608,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L35" } ], "type": { @@ -8648,7 +8648,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L41" } ], "type": { @@ -8673,7 +8673,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L17" } ] } @@ -8700,7 +8700,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L46" } ], "type": { @@ -8744,7 +8744,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L52" } ], "type": { @@ -8784,7 +8784,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L58" } ], "type": { @@ -8824,7 +8824,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L64" } ], "type": { @@ -8864,7 +8864,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L70" } ], "type": { @@ -8893,7 +8893,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L74" } ], "type": { @@ -8937,7 +8937,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L80" } ], "type": { @@ -8977,7 +8977,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L86" } ], "type": { @@ -9000,7 +9000,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 74, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L74" } ] } @@ -9027,7 +9027,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L91" } ], "type": { @@ -9071,7 +9071,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 97, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L97" } ], "type": { @@ -9111,7 +9111,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L103" } ], "type": { @@ -9151,7 +9151,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L109" } ], "type": { @@ -9191,7 +9191,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 115, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L115" } ], "type": { @@ -9231,7 +9231,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 121, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L121" } ], "type": { @@ -9257,7 +9257,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 91, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L91" } ] } @@ -9282,7 +9282,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L46" } ] } @@ -9309,7 +9309,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 127, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L127" } ], "type": { @@ -9353,7 +9353,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L133" } ], "type": { @@ -9375,7 +9375,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 127, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L127" } ] } @@ -9394,7 +9394,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -9419,7 +9419,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -9457,7 +9457,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -9497,7 +9497,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -9525,7 +9525,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L13" } ], "extendedTypes": [ @@ -9559,7 +9559,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/breadcrumb/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/breadcrumb/index.d.ts#L1" } ] }, @@ -9606,7 +9606,7 @@ "fileName": "button/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L17" } ], "type": { @@ -9650,7 +9650,7 @@ "fileName": "button/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L23" } ], "type": { @@ -9690,7 +9690,7 @@ "fileName": "button/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L29" } ], "type": { @@ -9730,7 +9730,7 @@ "fileName": "button/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L35" } ], "type": { @@ -9770,7 +9770,7 @@ "fileName": "button/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L41" } ], "type": { @@ -9810,7 +9810,7 @@ "fileName": "button/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L47" } ], "type": { @@ -9850,7 +9850,7 @@ "fileName": "button/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L53" } ], "type": { @@ -9879,7 +9879,7 @@ "fileName": "button/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L57" } ], "type": { @@ -9923,7 +9923,7 @@ "fileName": "button/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L63" } ], "type": { @@ -9963,7 +9963,7 @@ "fileName": "button/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L69" } ], "type": { @@ -10003,7 +10003,7 @@ "fileName": "button/index.d.ts", "line": 75, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L75" } ], "type": { @@ -10027,7 +10027,7 @@ "fileName": "button/index.d.ts", "line": 57, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L57" } ] } @@ -10054,7 +10054,7 @@ "fileName": "button/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L80" } ], "type": { @@ -10098,7 +10098,7 @@ "fileName": "button/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L86" } ], "type": { @@ -10138,7 +10138,7 @@ "fileName": "button/index.d.ts", "line": 92, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L92" } ], "type": { @@ -10178,7 +10178,7 @@ "fileName": "button/index.d.ts", "line": 98, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L98" } ], "type": { @@ -10202,7 +10202,7 @@ "fileName": "button/index.d.ts", "line": 80, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L80" } ] } @@ -10229,7 +10229,7 @@ "fileName": "button/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L103" } ], "type": { @@ -10273,7 +10273,7 @@ "fileName": "button/index.d.ts", "line": 109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L109" } ], "type": { @@ -10295,7 +10295,7 @@ "fileName": "button/index.d.ts", "line": 103, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L103" } ] } @@ -10333,7 +10333,7 @@ "fileName": "button/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L116" } ], "type": { @@ -10362,7 +10362,7 @@ "fileName": "button/index.d.ts", "line": 120, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L120" } ], "type": { @@ -10406,7 +10406,7 @@ "fileName": "button/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L126" } ], "type": { @@ -10446,7 +10446,7 @@ "fileName": "button/index.d.ts", "line": 132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L132" } ], "type": { @@ -10486,7 +10486,7 @@ "fileName": "button/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L138" } ], "type": { @@ -10510,7 +10510,7 @@ "fileName": "button/index.d.ts", "line": 120, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L120" } ] } @@ -10548,7 +10548,7 @@ "fileName": "button/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L145" } ], "type": { @@ -10588,7 +10588,7 @@ "fileName": "button/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L151" } ], "type": { @@ -10617,7 +10617,7 @@ "fileName": "button/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L155" } ], "type": { @@ -10661,7 +10661,7 @@ "fileName": "button/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L161" } ], "type": { @@ -10701,7 +10701,7 @@ "fileName": "button/index.d.ts", "line": 167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L167" } ], "type": { @@ -10741,7 +10741,7 @@ "fileName": "button/index.d.ts", "line": 173, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L173" } ], "type": { @@ -10781,7 +10781,7 @@ "fileName": "button/index.d.ts", "line": 179, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L179" } ], "type": { @@ -10821,7 +10821,7 @@ "fileName": "button/index.d.ts", "line": 185, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L185" } ], "type": { @@ -10861,7 +10861,7 @@ "fileName": "button/index.d.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L191" } ], "type": { @@ -10901,7 +10901,7 @@ "fileName": "button/index.d.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L197" } ], "type": { @@ -10941,7 +10941,7 @@ "fileName": "button/index.d.ts", "line": 203, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L203" } ], "type": { @@ -10981,7 +10981,7 @@ "fileName": "button/index.d.ts", "line": 209, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L209" } ], "type": { @@ -11010,7 +11010,7 @@ "fileName": "button/index.d.ts", "line": 213, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L213" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L213" } ], "type": { @@ -11054,7 +11054,7 @@ "fileName": "button/index.d.ts", "line": 219, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L219" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L219" } ], "type": { @@ -11094,7 +11094,7 @@ "fileName": "button/index.d.ts", "line": 225, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L225" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L225" } ], "type": { @@ -11117,7 +11117,7 @@ "fileName": "button/index.d.ts", "line": 213, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L213" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L213" } ] } @@ -11146,7 +11146,7 @@ "fileName": "button/index.d.ts", "line": 155, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L155" } ] } @@ -11173,7 +11173,7 @@ "fileName": "button/index.d.ts", "line": 231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L231" } ], "type": { @@ -11217,7 +11217,7 @@ "fileName": "button/index.d.ts", "line": 237, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L237" } ], "type": { @@ -11257,7 +11257,7 @@ "fileName": "button/index.d.ts", "line": 243, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L243" } ], "type": { @@ -11297,7 +11297,7 @@ "fileName": "button/index.d.ts", "line": 249, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L249" } ], "type": { @@ -11337,7 +11337,7 @@ "fileName": "button/index.d.ts", "line": 255, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L255" } ], "type": { @@ -11377,7 +11377,7 @@ "fileName": "button/index.d.ts", "line": 261, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L261" } ], "type": { @@ -11417,7 +11417,7 @@ "fileName": "button/index.d.ts", "line": 267, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L267" } ], "type": { @@ -11457,7 +11457,7 @@ "fileName": "button/index.d.ts", "line": 273, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L273" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L273" } ], "type": { @@ -11497,7 +11497,7 @@ "fileName": "button/index.d.ts", "line": 279, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L279" } ], "type": { @@ -11537,7 +11537,7 @@ "fileName": "button/index.d.ts", "line": 285, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L285" } ], "type": { @@ -11566,7 +11566,7 @@ "fileName": "button/index.d.ts", "line": 289, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L289" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L289" } ], "type": { @@ -11610,7 +11610,7 @@ "fileName": "button/index.d.ts", "line": 295, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L295" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L295" } ], "type": { @@ -11650,7 +11650,7 @@ "fileName": "button/index.d.ts", "line": 301, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L301" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L301" } ], "type": { @@ -11673,7 +11673,7 @@ "fileName": "button/index.d.ts", "line": 289, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L289" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L289" } ] } @@ -11702,7 +11702,7 @@ "fileName": "button/index.d.ts", "line": 231, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L231" } ] } @@ -11729,7 +11729,7 @@ "fileName": "button/index.d.ts", "line": 307, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L307" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L307" } ], "type": { @@ -11773,7 +11773,7 @@ "fileName": "button/index.d.ts", "line": 313, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L313" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L313" } ], "type": { @@ -11813,7 +11813,7 @@ "fileName": "button/index.d.ts", "line": 319, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L319" } ], "type": { @@ -11853,7 +11853,7 @@ "fileName": "button/index.d.ts", "line": 325, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L325" } ], "type": { @@ -11893,7 +11893,7 @@ "fileName": "button/index.d.ts", "line": 331, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L331" } ], "type": { @@ -11933,7 +11933,7 @@ "fileName": "button/index.d.ts", "line": 337, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L337" } ], "type": { @@ -11973,7 +11973,7 @@ "fileName": "button/index.d.ts", "line": 343, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L343" } ], "type": { @@ -12013,7 +12013,7 @@ "fileName": "button/index.d.ts", "line": 349, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L349" } ], "type": { @@ -12053,7 +12053,7 @@ "fileName": "button/index.d.ts", "line": 355, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L355" } ], "type": { @@ -12093,7 +12093,7 @@ "fileName": "button/index.d.ts", "line": 361, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L361" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L361" } ], "type": { @@ -12122,7 +12122,7 @@ "fileName": "button/index.d.ts", "line": 365, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L365" } ], "type": { @@ -12166,7 +12166,7 @@ "fileName": "button/index.d.ts", "line": 371, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L371" } ], "type": { @@ -12206,7 +12206,7 @@ "fileName": "button/index.d.ts", "line": 377, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L377" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L377" } ], "type": { @@ -12229,7 +12229,7 @@ "fileName": "button/index.d.ts", "line": 365, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L365" } ] } @@ -12258,7 +12258,7 @@ "fileName": "button/index.d.ts", "line": 307, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L307" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L307" } ] } @@ -12285,7 +12285,7 @@ "fileName": "button/index.d.ts", "line": 383, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L383" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L383" } ], "type": { @@ -12329,7 +12329,7 @@ "fileName": "button/index.d.ts", "line": 389, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L389" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L389" } ], "type": { @@ -12369,7 +12369,7 @@ "fileName": "button/index.d.ts", "line": 395, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L395" } ], "type": { @@ -12409,7 +12409,7 @@ "fileName": "button/index.d.ts", "line": 401, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L401" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L401" } ], "type": { @@ -12449,7 +12449,7 @@ "fileName": "button/index.d.ts", "line": 407, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L407" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L407" } ], "type": { @@ -12489,7 +12489,7 @@ "fileName": "button/index.d.ts", "line": 413, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L413" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L413" } ], "type": { @@ -12529,7 +12529,7 @@ "fileName": "button/index.d.ts", "line": 419, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L419" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L419" } ], "type": { @@ -12569,7 +12569,7 @@ "fileName": "button/index.d.ts", "line": 425, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L425" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L425" } ], "type": { @@ -12609,7 +12609,7 @@ "fileName": "button/index.d.ts", "line": 431, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L431" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L431" } ], "type": { @@ -12649,7 +12649,7 @@ "fileName": "button/index.d.ts", "line": 437, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L437" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L437" } ], "type": { @@ -12678,7 +12678,7 @@ "fileName": "button/index.d.ts", "line": 441, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L441" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L441" } ], "type": { @@ -12722,7 +12722,7 @@ "fileName": "button/index.d.ts", "line": 447, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L447" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L447" } ], "type": { @@ -12762,7 +12762,7 @@ "fileName": "button/index.d.ts", "line": 453, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L453" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L453" } ], "type": { @@ -12785,7 +12785,7 @@ "fileName": "button/index.d.ts", "line": 441, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L441" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L441" } ] } @@ -12814,7 +12814,7 @@ "fileName": "button/index.d.ts", "line": 383, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L383" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L383" } ] } @@ -12841,7 +12841,7 @@ "fileName": "button/index.d.ts", "line": 459, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L459" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L459" } ], "type": { @@ -12885,7 +12885,7 @@ "fileName": "button/index.d.ts", "line": 465, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L465" } ], "type": { @@ -12925,7 +12925,7 @@ "fileName": "button/index.d.ts", "line": 471, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L471" } ], "type": { @@ -12965,7 +12965,7 @@ "fileName": "button/index.d.ts", "line": 477, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L477" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L477" } ], "type": { @@ -13005,7 +13005,7 @@ "fileName": "button/index.d.ts", "line": 483, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L483" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L483" } ], "type": { @@ -13045,7 +13045,7 @@ "fileName": "button/index.d.ts", "line": 489, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L489" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L489" } ], "type": { @@ -13085,7 +13085,7 @@ "fileName": "button/index.d.ts", "line": 495, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L495" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L495" } ], "type": { @@ -13125,7 +13125,7 @@ "fileName": "button/index.d.ts", "line": 501, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L501" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L501" } ], "type": { @@ -13165,7 +13165,7 @@ "fileName": "button/index.d.ts", "line": 507, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L507" } ], "type": { @@ -13205,7 +13205,7 @@ "fileName": "button/index.d.ts", "line": 513, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L513" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L513" } ], "type": { @@ -13234,7 +13234,7 @@ "fileName": "button/index.d.ts", "line": 517, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L517" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L517" } ], "type": { @@ -13278,7 +13278,7 @@ "fileName": "button/index.d.ts", "line": 523, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L523" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L523" } ], "type": { @@ -13318,7 +13318,7 @@ "fileName": "button/index.d.ts", "line": 529, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L529" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L529" } ], "type": { @@ -13341,7 +13341,7 @@ "fileName": "button/index.d.ts", "line": 517, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L517" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L517" } ] } @@ -13370,7 +13370,7 @@ "fileName": "button/index.d.ts", "line": 459, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L459" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L459" } ] } @@ -13397,7 +13397,7 @@ "fileName": "button/index.d.ts", "line": 535, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L535" } ], "type": { @@ -13441,7 +13441,7 @@ "fileName": "button/index.d.ts", "line": 541, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L541" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L541" } ], "type": { @@ -13481,7 +13481,7 @@ "fileName": "button/index.d.ts", "line": 547, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L547" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L547" } ], "type": { @@ -13521,7 +13521,7 @@ "fileName": "button/index.d.ts", "line": 553, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L553" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L553" } ], "type": { @@ -13561,7 +13561,7 @@ "fileName": "button/index.d.ts", "line": 559, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L559" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L559" } ], "type": { @@ -13601,7 +13601,7 @@ "fileName": "button/index.d.ts", "line": 565, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L565" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L565" } ], "type": { @@ -13641,7 +13641,7 @@ "fileName": "button/index.d.ts", "line": 571, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L571" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L571" } ], "type": { @@ -13681,7 +13681,7 @@ "fileName": "button/index.d.ts", "line": 577, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L577" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L577" } ], "type": { @@ -13721,7 +13721,7 @@ "fileName": "button/index.d.ts", "line": 583, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L583" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L583" } ], "type": { @@ -13761,7 +13761,7 @@ "fileName": "button/index.d.ts", "line": 589, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L589" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L589" } ], "type": { @@ -13790,7 +13790,7 @@ "fileName": "button/index.d.ts", "line": 593, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L593" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L593" } ], "type": { @@ -13834,7 +13834,7 @@ "fileName": "button/index.d.ts", "line": 599, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L599" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L599" } ], "type": { @@ -13874,7 +13874,7 @@ "fileName": "button/index.d.ts", "line": 605, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L605" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L605" } ], "type": { @@ -13897,7 +13897,7 @@ "fileName": "button/index.d.ts", "line": 593, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L593" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L593" } ] } @@ -13926,7 +13926,7 @@ "fileName": "button/index.d.ts", "line": 535, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L535" } ] } @@ -13953,7 +13953,7 @@ "fileName": "button/index.d.ts", "line": 611, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L611" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L611" } ], "type": { @@ -13997,7 +13997,7 @@ "fileName": "button/index.d.ts", "line": 617, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L617" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L617" } ], "type": { @@ -14037,7 +14037,7 @@ "fileName": "button/index.d.ts", "line": 623, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L623" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L623" } ], "type": { @@ -14077,7 +14077,7 @@ "fileName": "button/index.d.ts", "line": 629, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L629" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L629" } ], "type": { @@ -14117,7 +14117,7 @@ "fileName": "button/index.d.ts", "line": 635, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L635" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L635" } ], "type": { @@ -14157,7 +14157,7 @@ "fileName": "button/index.d.ts", "line": 641, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L641" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L641" } ], "type": { @@ -14197,7 +14197,7 @@ "fileName": "button/index.d.ts", "line": 647, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L647" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L647" } ], "type": { @@ -14237,7 +14237,7 @@ "fileName": "button/index.d.ts", "line": 653, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L653" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L653" } ], "type": { @@ -14277,7 +14277,7 @@ "fileName": "button/index.d.ts", "line": 659, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L659" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L659" } ], "type": { @@ -14317,7 +14317,7 @@ "fileName": "button/index.d.ts", "line": 665, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L665" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L665" } ], "type": { @@ -14346,7 +14346,7 @@ "fileName": "button/index.d.ts", "line": 669, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L669" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L669" } ], "type": { @@ -14390,7 +14390,7 @@ "fileName": "button/index.d.ts", "line": 675, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L675" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L675" } ], "type": { @@ -14430,7 +14430,7 @@ "fileName": "button/index.d.ts", "line": 681, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L681" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L681" } ], "type": { @@ -14453,7 +14453,7 @@ "fileName": "button/index.d.ts", "line": 669, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L669" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L669" } ] } @@ -14482,7 +14482,7 @@ "fileName": "button/index.d.ts", "line": 611, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L611" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L611" } ] } @@ -14509,7 +14509,7 @@ "fileName": "button/index.d.ts", "line": 687, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L687" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L687" } ], "type": { @@ -14553,7 +14553,7 @@ "fileName": "button/index.d.ts", "line": 693, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L693" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L693" } ], "type": { @@ -14593,7 +14593,7 @@ "fileName": "button/index.d.ts", "line": 699, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L699" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L699" } ], "type": { @@ -14633,7 +14633,7 @@ "fileName": "button/index.d.ts", "line": 705, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L705" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L705" } ], "type": { @@ -14673,7 +14673,7 @@ "fileName": "button/index.d.ts", "line": 711, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L711" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L711" } ], "type": { @@ -14713,7 +14713,7 @@ "fileName": "button/index.d.ts", "line": 717, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L717" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L717" } ], "type": { @@ -14753,7 +14753,7 @@ "fileName": "button/index.d.ts", "line": 723, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L723" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L723" } ], "type": { @@ -14793,7 +14793,7 @@ "fileName": "button/index.d.ts", "line": 729, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L729" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L729" } ], "type": { @@ -14833,7 +14833,7 @@ "fileName": "button/index.d.ts", "line": 735, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L735" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L735" } ], "type": { @@ -14873,7 +14873,7 @@ "fileName": "button/index.d.ts", "line": 741, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L741" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L741" } ], "type": { @@ -14902,7 +14902,7 @@ "fileName": "button/index.d.ts", "line": 745, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L745" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L745" } ], "type": { @@ -14946,7 +14946,7 @@ "fileName": "button/index.d.ts", "line": 751, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L751" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L751" } ], "type": { @@ -14986,7 +14986,7 @@ "fileName": "button/index.d.ts", "line": 757, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L757" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L757" } ], "type": { @@ -15009,7 +15009,7 @@ "fileName": "button/index.d.ts", "line": 745, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L745" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L745" } ] } @@ -15038,7 +15038,7 @@ "fileName": "button/index.d.ts", "line": 687, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L687" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L687" } ] } @@ -15078,7 +15078,7 @@ "fileName": "button/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L17" } ] } @@ -15105,7 +15105,7 @@ "fileName": "button/index.d.ts", "line": 764, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L764" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L764" } ], "type": { @@ -15138,7 +15138,7 @@ "fileName": "button/index.d.ts", "line": 768, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L768" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L768" } ], "type": { @@ -15182,7 +15182,7 @@ "fileName": "button/index.d.ts", "line": 774, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L774" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L774" } ], "type": { @@ -15222,7 +15222,7 @@ "fileName": "button/index.d.ts", "line": 780, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L780" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L780" } ], "type": { @@ -15262,7 +15262,7 @@ "fileName": "button/index.d.ts", "line": 786, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L786" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L786" } ], "type": { @@ -15302,7 +15302,7 @@ "fileName": "button/index.d.ts", "line": 792, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L792" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L792" } ], "type": { @@ -15327,7 +15327,7 @@ "fileName": "button/index.d.ts", "line": 768, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L768" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L768" } ] } @@ -15354,7 +15354,7 @@ "fileName": "button/index.d.ts", "line": 797, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L797" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L797" } ], "type": { @@ -15398,7 +15398,7 @@ "fileName": "button/index.d.ts", "line": 803, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L803" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L803" } ], "type": { @@ -15438,7 +15438,7 @@ "fileName": "button/index.d.ts", "line": 809, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L809" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L809" } ], "type": { @@ -15478,7 +15478,7 @@ "fileName": "button/index.d.ts", "line": 815, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L815" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L815" } ], "type": { @@ -15518,7 +15518,7 @@ "fileName": "button/index.d.ts", "line": 821, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L821" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L821" } ], "type": { @@ -15543,7 +15543,7 @@ "fileName": "button/index.d.ts", "line": 797, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L797" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L797" } ] } @@ -15570,7 +15570,7 @@ "fileName": "button/index.d.ts", "line": 826, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L826" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L826" } ], "type": { @@ -15614,7 +15614,7 @@ "fileName": "button/index.d.ts", "line": 832, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L832" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L832" } ], "type": { @@ -15654,7 +15654,7 @@ "fileName": "button/index.d.ts", "line": 838, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L838" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L838" } ], "type": { @@ -15694,7 +15694,7 @@ "fileName": "button/index.d.ts", "line": 844, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L844" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L844" } ], "type": { @@ -15734,7 +15734,7 @@ "fileName": "button/index.d.ts", "line": 850, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L850" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L850" } ], "type": { @@ -15759,7 +15759,7 @@ "fileName": "button/index.d.ts", "line": 826, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L826" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L826" } ] } @@ -15786,7 +15786,7 @@ "fileName": "button/index.d.ts", "line": 855, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L855" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L855" } ], "type": { @@ -15830,7 +15830,7 @@ "fileName": "button/index.d.ts", "line": 861, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L861" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L861" } ], "type": { @@ -15870,7 +15870,7 @@ "fileName": "button/index.d.ts", "line": 867, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L867" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L867" } ], "type": { @@ -15910,7 +15910,7 @@ "fileName": "button/index.d.ts", "line": 873, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L873" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L873" } ], "type": { @@ -15950,7 +15950,7 @@ "fileName": "button/index.d.ts", "line": 879, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L879" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L879" } ], "type": { @@ -15975,7 +15975,7 @@ "fileName": "button/index.d.ts", "line": 855, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L855" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L855" } ] } @@ -16002,7 +16002,7 @@ "fileName": "button/index.d.ts", "line": 884, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L884" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L884" } ], "type": { @@ -16046,7 +16046,7 @@ "fileName": "button/index.d.ts", "line": 890, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L890" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L890" } ], "type": { @@ -16086,7 +16086,7 @@ "fileName": "button/index.d.ts", "line": 896, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L896" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L896" } ], "type": { @@ -16126,7 +16126,7 @@ "fileName": "button/index.d.ts", "line": 902, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L902" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L902" } ], "type": { @@ -16166,7 +16166,7 @@ "fileName": "button/index.d.ts", "line": 908, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L908" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L908" } ], "type": { @@ -16191,7 +16191,7 @@ "fileName": "button/index.d.ts", "line": 884, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L884" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L884" } ] } @@ -16218,7 +16218,7 @@ "fileName": "button/index.d.ts", "line": 913, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L913" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L913" } ], "type": { @@ -16262,7 +16262,7 @@ "fileName": "button/index.d.ts", "line": 919, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L919" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L919" } ], "type": { @@ -16302,7 +16302,7 @@ "fileName": "button/index.d.ts", "line": 925, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L925" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L925" } ], "type": { @@ -16342,7 +16342,7 @@ "fileName": "button/index.d.ts", "line": 931, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L931" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L931" } ], "type": { @@ -16382,7 +16382,7 @@ "fileName": "button/index.d.ts", "line": 937, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L937" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L937" } ], "type": { @@ -16407,7 +16407,7 @@ "fileName": "button/index.d.ts", "line": 913, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L913" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L913" } ] } @@ -16434,7 +16434,7 @@ "fileName": "button/index.d.ts", "line": 942, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L942" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L942" } ], "type": { @@ -16478,7 +16478,7 @@ "fileName": "button/index.d.ts", "line": 948, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L948" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L948" } ], "type": { @@ -16518,7 +16518,7 @@ "fileName": "button/index.d.ts", "line": 954, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L954" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L954" } ], "type": { @@ -16558,7 +16558,7 @@ "fileName": "button/index.d.ts", "line": 960, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L960" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L960" } ], "type": { @@ -16598,7 +16598,7 @@ "fileName": "button/index.d.ts", "line": 966, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L966" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L966" } ], "type": { @@ -16623,7 +16623,7 @@ "fileName": "button/index.d.ts", "line": 942, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L942" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L942" } ] } @@ -16650,7 +16650,7 @@ "fileName": "button/index.d.ts", "line": 971, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L971" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L971" } ], "type": { @@ -16694,7 +16694,7 @@ "fileName": "button/index.d.ts", "line": 977, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L977" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L977" } ], "type": { @@ -16734,7 +16734,7 @@ "fileName": "button/index.d.ts", "line": 983, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L983" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L983" } ], "type": { @@ -16774,7 +16774,7 @@ "fileName": "button/index.d.ts", "line": 989, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L989" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L989" } ], "type": { @@ -16814,7 +16814,7 @@ "fileName": "button/index.d.ts", "line": 995, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L995" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L995" } ], "type": { @@ -16839,7 +16839,7 @@ "fileName": "button/index.d.ts", "line": 971, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L971" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L971" } ] } @@ -16866,7 +16866,7 @@ "fileName": "button/index.d.ts", "line": 1000, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1000" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1000" } ], "type": { @@ -16910,7 +16910,7 @@ "fileName": "button/index.d.ts", "line": 1006, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1006" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1006" } ], "type": { @@ -16950,7 +16950,7 @@ "fileName": "button/index.d.ts", "line": 1012, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1012" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1012" } ], "type": { @@ -16990,7 +16990,7 @@ "fileName": "button/index.d.ts", "line": 1018, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1018" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1018" } ], "type": { @@ -17030,7 +17030,7 @@ "fileName": "button/index.d.ts", "line": 1024, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1024" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1024" } ], "type": { @@ -17055,7 +17055,7 @@ "fileName": "button/index.d.ts", "line": 1000, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1000" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1000" } ] } @@ -17083,7 +17083,7 @@ "fileName": "button/index.d.ts", "line": 764, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L764" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L764" } ] } @@ -17110,7 +17110,7 @@ "fileName": "button/index.d.ts", "line": 1030, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1030" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1030" } ], "type": { @@ -17143,7 +17143,7 @@ "fileName": "button/index.d.ts", "line": 1034, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1034" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1034" } ], "type": { @@ -17187,7 +17187,7 @@ "fileName": "button/index.d.ts", "line": 1040, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1040" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1040" } ], "type": { @@ -17227,7 +17227,7 @@ "fileName": "button/index.d.ts", "line": 1046, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1046" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1046" } ], "type": { @@ -17267,7 +17267,7 @@ "fileName": "button/index.d.ts", "line": 1052, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1052" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1052" } ], "type": { @@ -17291,7 +17291,7 @@ "fileName": "button/index.d.ts", "line": 1034, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1034" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1034" } ] } @@ -17318,7 +17318,7 @@ "fileName": "button/index.d.ts", "line": 1057, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1057" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1057" } ], "type": { @@ -17362,7 +17362,7 @@ "fileName": "button/index.d.ts", "line": 1063, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1063" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1063" } ], "type": { @@ -17402,7 +17402,7 @@ "fileName": "button/index.d.ts", "line": 1069, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1069" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1069" } ], "type": { @@ -17442,7 +17442,7 @@ "fileName": "button/index.d.ts", "line": 1075, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1075" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1075" } ], "type": { @@ -17466,7 +17466,7 @@ "fileName": "button/index.d.ts", "line": 1057, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1057" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1057" } ] } @@ -17493,7 +17493,7 @@ "fileName": "button/index.d.ts", "line": 1080, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1080" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1080" } ], "type": { @@ -17537,7 +17537,7 @@ "fileName": "button/index.d.ts", "line": 1086, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1086" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1086" } ], "type": { @@ -17577,7 +17577,7 @@ "fileName": "button/index.d.ts", "line": 1092, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1092" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1092" } ], "type": { @@ -17617,7 +17617,7 @@ "fileName": "button/index.d.ts", "line": 1098, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1098" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1098" } ], "type": { @@ -17641,7 +17641,7 @@ "fileName": "button/index.d.ts", "line": 1080, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1080" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1080" } ] } @@ -17668,7 +17668,7 @@ "fileName": "button/index.d.ts", "line": 1103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1103" } ], "type": { @@ -17712,7 +17712,7 @@ "fileName": "button/index.d.ts", "line": 1109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1109" } ], "type": { @@ -17752,7 +17752,7 @@ "fileName": "button/index.d.ts", "line": 1115, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1115" } ], "type": { @@ -17792,7 +17792,7 @@ "fileName": "button/index.d.ts", "line": 1121, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1121" } ], "type": { @@ -17816,7 +17816,7 @@ "fileName": "button/index.d.ts", "line": 1103, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1103" } ] } @@ -17843,7 +17843,7 @@ "fileName": "button/index.d.ts", "line": 1126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1126" } ], "type": { @@ -17887,7 +17887,7 @@ "fileName": "button/index.d.ts", "line": 1132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1132" } ], "type": { @@ -17927,7 +17927,7 @@ "fileName": "button/index.d.ts", "line": 1138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1138" } ], "type": { @@ -17967,7 +17967,7 @@ "fileName": "button/index.d.ts", "line": 1144, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1144" } ], "type": { @@ -17991,7 +17991,7 @@ "fileName": "button/index.d.ts", "line": 1126, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1126" } ] } @@ -18018,7 +18018,7 @@ "fileName": "button/index.d.ts", "line": 1149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1149" } ], "type": { @@ -18062,7 +18062,7 @@ "fileName": "button/index.d.ts", "line": 1155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1155" } ], "type": { @@ -18102,7 +18102,7 @@ "fileName": "button/index.d.ts", "line": 1161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1161" } ], "type": { @@ -18142,7 +18142,7 @@ "fileName": "button/index.d.ts", "line": 1167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1167" } ], "type": { @@ -18166,7 +18166,7 @@ "fileName": "button/index.d.ts", "line": 1149, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1149" } ] } @@ -18193,7 +18193,7 @@ "fileName": "button/index.d.ts", "line": 1172, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1172" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1172" } ], "type": { @@ -18237,7 +18237,7 @@ "fileName": "button/index.d.ts", "line": 1178, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1178" } ], "type": { @@ -18277,7 +18277,7 @@ "fileName": "button/index.d.ts", "line": 1184, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1184" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1184" } ], "type": { @@ -18317,7 +18317,7 @@ "fileName": "button/index.d.ts", "line": 1190, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1190" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1190" } ], "type": { @@ -18341,7 +18341,7 @@ "fileName": "button/index.d.ts", "line": 1172, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1172" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1172" } ] } @@ -18368,7 +18368,7 @@ "fileName": "button/index.d.ts", "line": 1195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1195" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1195" } ], "type": { @@ -18412,7 +18412,7 @@ "fileName": "button/index.d.ts", "line": 1201, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1201" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1201" } ], "type": { @@ -18452,7 +18452,7 @@ "fileName": "button/index.d.ts", "line": 1207, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1207" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1207" } ], "type": { @@ -18492,7 +18492,7 @@ "fileName": "button/index.d.ts", "line": 1213, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1213" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1213" } ], "type": { @@ -18516,7 +18516,7 @@ "fileName": "button/index.d.ts", "line": 1195, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1195" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1195" } ] } @@ -18543,7 +18543,7 @@ "fileName": "button/index.d.ts", "line": 1030, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1030" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1030" } ] } @@ -18570,7 +18570,7 @@ "fileName": "button/index.d.ts", "line": 1219, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1219" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1219" } ], "type": { @@ -18614,7 +18614,7 @@ "fileName": "button/index.d.ts", "line": 1225, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1225" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1225" } ], "type": { @@ -18654,7 +18654,7 @@ "fileName": "button/index.d.ts", "line": 1231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1231" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1231" } ], "type": { @@ -18694,7 +18694,7 @@ "fileName": "button/index.d.ts", "line": 1237, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1237" } ], "type": { @@ -18718,7 +18718,7 @@ "fileName": "button/index.d.ts", "line": 1219, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1219" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1219" } ] } @@ -18737,7 +18737,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -18762,7 +18762,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -18800,7 +18800,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -18840,7 +18840,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -18869,7 +18869,7 @@ "fileName": "button/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L13" } ], "extendedTypes": [ @@ -18903,7 +18903,7 @@ "fileName": "button/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/button/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/button/index.d.ts#L1" } ] }, @@ -18950,7 +18950,7 @@ "fileName": "card/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L17" } ], "type": { @@ -18994,7 +18994,7 @@ "fileName": "card/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L23" } ], "type": { @@ -19034,7 +19034,7 @@ "fileName": "card/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L29" } ], "type": { @@ -19074,7 +19074,7 @@ "fileName": "card/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L35" } ], "type": { @@ -19114,7 +19114,7 @@ "fileName": "card/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L41" } ], "type": { @@ -19139,7 +19139,7 @@ "fileName": "card/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L17" } ] } @@ -19166,7 +19166,7 @@ "fileName": "card/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L46" } ], "type": { @@ -19210,7 +19210,7 @@ "fileName": "card/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L52" } ], "type": { @@ -19250,7 +19250,7 @@ "fileName": "card/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L58" } ], "type": { @@ -19273,7 +19273,7 @@ "fileName": "card/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L46" } ] } @@ -19300,7 +19300,7 @@ "fileName": "card/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L63" } ], "type": { @@ -19344,7 +19344,7 @@ "fileName": "card/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L69" } ], "type": { @@ -19366,7 +19366,7 @@ "fileName": "card/index.d.ts", "line": 63, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L63" } ] } @@ -19393,7 +19393,7 @@ "fileName": "card/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L74" } ], "type": { @@ -19437,7 +19437,7 @@ "fileName": "card/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L80" } ], "type": { @@ -19477,7 +19477,7 @@ "fileName": "card/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L86" } ], "type": { @@ -19500,7 +19500,7 @@ "fileName": "card/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L74" } ] } @@ -19527,7 +19527,7 @@ "fileName": "card/index.d.ts", "line": 91, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L91" } ], "type": { @@ -19571,7 +19571,7 @@ "fileName": "card/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L97" } ], "type": { @@ -19593,7 +19593,7 @@ "fileName": "card/index.d.ts", "line": 91, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L91" } ] } @@ -19612,7 +19612,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -19637,7 +19637,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -19675,7 +19675,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -19715,7 +19715,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -19745,7 +19745,7 @@ "fileName": "card/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L13" } ], "extendedTypes": [ @@ -19779,7 +19779,7 @@ "fileName": "card/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/card/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/card/index.d.ts#L1" } ] }, @@ -19826,7 +19826,7 @@ "fileName": "carousel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L17" } ], "type": { @@ -19870,7 +19870,7 @@ "fileName": "carousel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L23" } ], "type": { @@ -19892,7 +19892,7 @@ "fileName": "carousel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L17" } ] } @@ -19919,7 +19919,7 @@ "fileName": "carousel/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L28" } ], "type": { @@ -19963,7 +19963,7 @@ "fileName": "carousel/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L34" } ], "type": { @@ -19985,7 +19985,7 @@ "fileName": "carousel/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L28" } ] } @@ -20012,7 +20012,7 @@ "fileName": "carousel/index.d.ts", "line": 39, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L39" } ], "type": { @@ -20056,7 +20056,7 @@ "fileName": "carousel/index.d.ts", "line": 45, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L45" } ], "type": { @@ -20096,7 +20096,7 @@ "fileName": "carousel/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L51" } ], "type": { @@ -20119,7 +20119,7 @@ "fileName": "carousel/index.d.ts", "line": 39, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L39" } ] } @@ -20146,7 +20146,7 @@ "fileName": "carousel/index.d.ts", "line": 56, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L56" } ], "type": { @@ -20190,7 +20190,7 @@ "fileName": "carousel/index.d.ts", "line": 62, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L62" } ], "type": { @@ -20230,7 +20230,7 @@ "fileName": "carousel/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L68" } ], "type": { @@ -20270,7 +20270,7 @@ "fileName": "carousel/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L74" } ], "type": { @@ -20299,7 +20299,7 @@ "fileName": "carousel/index.d.ts", "line": 78, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L78" } ], "type": { @@ -20343,7 +20343,7 @@ "fileName": "carousel/index.d.ts", "line": 84, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L84" } ], "type": { @@ -20383,7 +20383,7 @@ "fileName": "carousel/index.d.ts", "line": 90, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L90" } ], "type": { @@ -20423,7 +20423,7 @@ "fileName": "carousel/index.d.ts", "line": 96, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L96" } ], "type": { @@ -20463,7 +20463,7 @@ "fileName": "carousel/index.d.ts", "line": 102, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L102" } ], "type": { @@ -20503,7 +20503,7 @@ "fileName": "carousel/index.d.ts", "line": 108, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L108" } ], "type": { @@ -20529,7 +20529,7 @@ "fileName": "carousel/index.d.ts", "line": 78, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L78" } ] } @@ -20567,7 +20567,7 @@ "fileName": "carousel/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L115" } ], "type": { @@ -20607,7 +20607,7 @@ "fileName": "carousel/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L121" } ], "type": { @@ -20647,7 +20647,7 @@ "fileName": "carousel/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L127" } ], "type": { @@ -20675,7 +20675,7 @@ "fileName": "carousel/index.d.ts", "line": 56, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L56" } ] } @@ -20694,7 +20694,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -20719,7 +20719,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -20757,7 +20757,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -20797,7 +20797,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -20826,7 +20826,7 @@ "fileName": "carousel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L13" } ], "extendedTypes": [ @@ -20860,7 +20860,7 @@ "fileName": "carousel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/carousel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/carousel/index.d.ts#L1" } ] }, @@ -20907,7 +20907,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L17" } ], "type": { @@ -20951,7 +20951,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L23" } ], "type": { @@ -20991,7 +20991,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L29" } ], "type": { @@ -21031,7 +21031,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L35" } ], "type": { @@ -21071,7 +21071,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L41" } ], "type": { @@ -21111,7 +21111,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L47" } ], "type": { @@ -21151,7 +21151,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L53" } ], "type": { @@ -21191,7 +21191,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L59" } ], "type": { @@ -21231,7 +21231,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L65" } ], "type": { @@ -21271,7 +21271,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L71" } ], "type": { @@ -21311,7 +21311,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L77" } ], "type": { @@ -21351,7 +21351,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L83" } ], "type": { @@ -21391,7 +21391,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L89" } ], "type": { @@ -21431,7 +21431,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L95" } ], "type": { @@ -21471,7 +21471,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L101" } ], "type": { @@ -21511,7 +21511,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L107" } ], "type": { @@ -21540,7 +21540,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L111" } ], "type": { @@ -21584,7 +21584,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L117" } ], "type": { @@ -21624,7 +21624,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L123" } ], "type": { @@ -21664,7 +21664,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L129" } ], "type": { @@ -21704,7 +21704,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L135" } ], "type": { @@ -21744,7 +21744,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L141" } ], "type": { @@ -21770,7 +21770,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L111" } ] } @@ -21808,7 +21808,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L148" } ], "type": { @@ -21846,7 +21846,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L17" } ] } @@ -21873,7 +21873,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L153" } ], "type": { @@ -21917,7 +21917,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L159" } ], "type": { @@ -21957,7 +21957,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L165" } ], "type": { @@ -21980,7 +21980,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L153" } ] } @@ -22007,7 +22007,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L170" } ], "type": { @@ -22051,7 +22051,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L176" } ], "type": { @@ -22091,7 +22091,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L182" } ], "type": { @@ -22131,7 +22131,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L188" } ], "type": { @@ -22171,7 +22171,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L194" } ], "type": { @@ -22211,7 +22211,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L200" } ], "type": { @@ -22237,7 +22237,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L170" } ] } @@ -22264,7 +22264,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L205" } ], "type": { @@ -22308,7 +22308,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L211" } ], "type": { @@ -22348,7 +22348,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L217" } ], "type": { @@ -22371,7 +22371,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L205" } ] } @@ -22398,7 +22398,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 222, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L222" } ], "type": { @@ -22442,7 +22442,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L228" } ], "type": { @@ -22482,7 +22482,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 234, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L234" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L234" } ], "type": { @@ -22522,7 +22522,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 240, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L240" } ], "type": { @@ -22562,7 +22562,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 246, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L246" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L246" } ], "type": { @@ -22602,7 +22602,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 252, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L252" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L252" } ], "type": { @@ -22642,7 +22642,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 258, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L258" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L258" } ], "type": { @@ -22682,7 +22682,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 264, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L264" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L264" } ], "type": { @@ -22722,7 +22722,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 270, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L270" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L270" } ], "type": { @@ -22762,7 +22762,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 276, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L276" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L276" } ], "type": { @@ -22791,7 +22791,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 280, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L280" } ], "type": { @@ -22835,7 +22835,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 286, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L286" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L286" } ], "type": { @@ -22875,7 +22875,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 292, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L292" } ], "type": { @@ -22915,7 +22915,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 298, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L298" } ], "type": { @@ -22939,7 +22939,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 280, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L280" } ] } @@ -22968,7 +22968,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 222, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L222" } ] } @@ -22987,7 +22987,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -23012,7 +23012,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -23050,7 +23050,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -23090,7 +23090,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -23120,7 +23120,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L13" } ], "extendedTypes": [ @@ -23154,7 +23154,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/cascadeselect/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/cascadeselect/index.d.ts#L1" } ] }, @@ -23201,7 +23201,7 @@ "fileName": "checkbox/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L17" } ], "type": { @@ -23245,7 +23245,7 @@ "fileName": "checkbox/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L23" } ], "type": { @@ -23285,7 +23285,7 @@ "fileName": "checkbox/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L29" } ], "type": { @@ -23325,7 +23325,7 @@ "fileName": "checkbox/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L35" } ], "type": { @@ -23365,7 +23365,7 @@ "fileName": "checkbox/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L41" } ], "type": { @@ -23405,7 +23405,7 @@ "fileName": "checkbox/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L47" } ], "type": { @@ -23445,7 +23445,7 @@ "fileName": "checkbox/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L53" } ], "type": { @@ -23485,7 +23485,7 @@ "fileName": "checkbox/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L59" } ], "type": { @@ -23525,7 +23525,7 @@ "fileName": "checkbox/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L65" } ], "type": { @@ -23565,7 +23565,7 @@ "fileName": "checkbox/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L71" } ], "type": { @@ -23605,7 +23605,7 @@ "fileName": "checkbox/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L77" } ], "type": { @@ -23645,7 +23645,7 @@ "fileName": "checkbox/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L83" } ], "type": { @@ -23685,7 +23685,7 @@ "fileName": "checkbox/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L89" } ], "type": { @@ -23725,7 +23725,7 @@ "fileName": "checkbox/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L95" } ], "type": { @@ -23765,7 +23765,7 @@ "fileName": "checkbox/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L101" } ], "type": { @@ -23805,7 +23805,7 @@ "fileName": "checkbox/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L107" } ], "type": { @@ -23845,7 +23845,7 @@ "fileName": "checkbox/index.d.ts", "line": 113, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L113" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L113" } ], "type": { @@ -23885,7 +23885,7 @@ "fileName": "checkbox/index.d.ts", "line": 119, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L119" } ], "type": { @@ -23914,7 +23914,7 @@ "fileName": "checkbox/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L123" } ], "type": { @@ -23958,7 +23958,7 @@ "fileName": "checkbox/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L129" } ], "type": { @@ -23998,7 +23998,7 @@ "fileName": "checkbox/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L135" } ], "type": { @@ -24038,7 +24038,7 @@ "fileName": "checkbox/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L141" } ], "type": { @@ -24078,7 +24078,7 @@ "fileName": "checkbox/index.d.ts", "line": 147, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L147" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L147" } ], "type": { @@ -24118,7 +24118,7 @@ "fileName": "checkbox/index.d.ts", "line": 153, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L153" } ], "type": { @@ -24144,7 +24144,7 @@ "fileName": "checkbox/index.d.ts", "line": 123, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L123" } ] } @@ -24182,7 +24182,7 @@ "fileName": "checkbox/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L160" } ], "type": { @@ -24222,7 +24222,7 @@ "fileName": "checkbox/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L17" } ] } @@ -24249,7 +24249,7 @@ "fileName": "checkbox/index.d.ts", "line": 165, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L165" } ], "type": { @@ -24293,7 +24293,7 @@ "fileName": "checkbox/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L171" } ], "type": { @@ -24333,7 +24333,7 @@ "fileName": "checkbox/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L177" } ], "type": { @@ -24373,7 +24373,7 @@ "fileName": "checkbox/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L183" } ], "type": { @@ -24413,7 +24413,7 @@ "fileName": "checkbox/index.d.ts", "line": 189, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L189" } ], "type": { @@ -24453,7 +24453,7 @@ "fileName": "checkbox/index.d.ts", "line": 195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L195" } ], "type": { @@ -24479,7 +24479,7 @@ "fileName": "checkbox/index.d.ts", "line": 165, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L165" } ] } @@ -24498,7 +24498,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -24523,7 +24523,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -24561,7 +24561,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -24601,7 +24601,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -24628,7 +24628,7 @@ "fileName": "checkbox/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L13" } ], "extendedTypes": [ @@ -24662,7 +24662,7 @@ "fileName": "checkbox/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/checkbox/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/checkbox/index.d.ts#L1" } ] }, @@ -24709,7 +24709,7 @@ "fileName": "chip/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L17" } ], "type": { @@ -24753,7 +24753,7 @@ "fileName": "chip/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L23" } ], "type": { @@ -24793,7 +24793,7 @@ "fileName": "chip/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L29" } ], "type": { @@ -24833,7 +24833,7 @@ "fileName": "chip/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L35" } ], "type": { @@ -24873,7 +24873,7 @@ "fileName": "chip/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L41" } ], "type": { @@ -24913,7 +24913,7 @@ "fileName": "chip/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L47" } ], "type": { @@ -24953,7 +24953,7 @@ "fileName": "chip/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L53" } ], "type": { @@ -24993,7 +24993,7 @@ "fileName": "chip/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L59" } ], "type": { @@ -25021,7 +25021,7 @@ "fileName": "chip/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L17" } ] } @@ -25048,7 +25048,7 @@ "fileName": "chip/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L64" } ], "type": { @@ -25092,7 +25092,7 @@ "fileName": "chip/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L70" } ], "type": { @@ -25132,7 +25132,7 @@ "fileName": "chip/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L76" } ], "type": { @@ -25155,7 +25155,7 @@ "fileName": "chip/index.d.ts", "line": 64, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L64" } ] } @@ -25182,7 +25182,7 @@ "fileName": "chip/index.d.ts", "line": 81, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L81" } ], "type": { @@ -25226,7 +25226,7 @@ "fileName": "chip/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L87" } ], "type": { @@ -25266,7 +25266,7 @@ "fileName": "chip/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L93" } ], "type": { @@ -25289,7 +25289,7 @@ "fileName": "chip/index.d.ts", "line": 81, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L81" } ] } @@ -25316,7 +25316,7 @@ "fileName": "chip/index.d.ts", "line": 98, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L98" } ], "type": { @@ -25360,7 +25360,7 @@ "fileName": "chip/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L104" } ], "type": { @@ -25389,7 +25389,7 @@ "fileName": "chip/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L108" } ], "type": { @@ -25433,7 +25433,7 @@ "fileName": "chip/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L114" } ], "type": { @@ -25473,7 +25473,7 @@ "fileName": "chip/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L120" } ], "type": { @@ -25513,7 +25513,7 @@ "fileName": "chip/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L126" } ], "type": { @@ -25553,7 +25553,7 @@ "fileName": "chip/index.d.ts", "line": 132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L132" } ], "type": { @@ -25593,7 +25593,7 @@ "fileName": "chip/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L138" } ], "type": { @@ -25619,7 +25619,7 @@ "fileName": "chip/index.d.ts", "line": 108, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L108" } ] } @@ -25657,7 +25657,7 @@ "fileName": "chip/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L145" } ], "type": { @@ -25681,7 +25681,7 @@ "fileName": "chip/index.d.ts", "line": 98, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L98" } ] } @@ -25700,7 +25700,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -25725,7 +25725,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -25763,7 +25763,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -25803,7 +25803,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -25832,7 +25832,7 @@ "fileName": "chip/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L13" } ], "extendedTypes": [ @@ -25866,7 +25866,7 @@ "fileName": "chip/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/chip/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/chip/index.d.ts#L1" } ] }, @@ -25913,7 +25913,7 @@ "fileName": "colorpicker/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L17" } ], "type": { @@ -25957,7 +25957,7 @@ "fileName": "colorpicker/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L23" } ], "type": { @@ -25979,7 +25979,7 @@ "fileName": "colorpicker/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L17" } ] } @@ -26006,7 +26006,7 @@ "fileName": "colorpicker/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L28" } ], "type": { @@ -26050,7 +26050,7 @@ "fileName": "colorpicker/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L34" } ], "type": { @@ -26090,7 +26090,7 @@ "fileName": "colorpicker/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L40" } ], "type": { @@ -26130,7 +26130,7 @@ "fileName": "colorpicker/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L46" } ], "type": { @@ -26159,7 +26159,7 @@ "fileName": "colorpicker/index.d.ts", "line": 50, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L50" } ], "type": { @@ -26203,7 +26203,7 @@ "fileName": "colorpicker/index.d.ts", "line": 56, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L56" } ], "type": { @@ -26243,7 +26243,7 @@ "fileName": "colorpicker/index.d.ts", "line": 62, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L62" } ], "type": { @@ -26283,7 +26283,7 @@ "fileName": "colorpicker/index.d.ts", "line": 68, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L68" } ], "type": { @@ -26323,7 +26323,7 @@ "fileName": "colorpicker/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L74" } ], "type": { @@ -26363,7 +26363,7 @@ "fileName": "colorpicker/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L80" } ], "type": { @@ -26389,7 +26389,7 @@ "fileName": "colorpicker/index.d.ts", "line": 50, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L50" } ] } @@ -26412,7 +26412,7 @@ "fileName": "colorpicker/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L28" } ] } @@ -26439,7 +26439,7 @@ "fileName": "colorpicker/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L86" } ], "type": { @@ -26483,7 +26483,7 @@ "fileName": "colorpicker/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L92" } ], "type": { @@ -26523,7 +26523,7 @@ "fileName": "colorpicker/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L98" } ], "type": { @@ -26563,7 +26563,7 @@ "fileName": "colorpicker/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L104" } ], "type": { @@ -26603,7 +26603,7 @@ "fileName": "colorpicker/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L110" } ], "type": { @@ -26628,7 +26628,7 @@ "fileName": "colorpicker/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L86" } ] } @@ -26655,7 +26655,7 @@ "fileName": "colorpicker/index.d.ts", "line": 115, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L115" } ], "type": { @@ -26699,7 +26699,7 @@ "fileName": "colorpicker/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L121" } ], "type": { @@ -26721,7 +26721,7 @@ "fileName": "colorpicker/index.d.ts", "line": 115, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L115" } ] } @@ -26740,7 +26740,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -26765,7 +26765,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -26803,7 +26803,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -26843,7 +26843,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -26872,7 +26872,7 @@ "fileName": "colorpicker/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L13" } ], "extendedTypes": [ @@ -26906,7 +26906,7 @@ "fileName": "colorpicker/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/colorpicker/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/colorpicker/index.d.ts#L1" } ] }, @@ -26953,7 +26953,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L17" } ], "type": { @@ -26997,7 +26997,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L23" } ], "type": { @@ -27037,7 +27037,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L29" } ], "type": { @@ -27060,7 +27060,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L17" } ] } @@ -27087,7 +27087,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L34" } ], "type": { @@ -27131,7 +27131,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L40" } ], "type": { @@ -27153,7 +27153,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 34, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L34" } ] } @@ -27172,7 +27172,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -27197,7 +27197,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -27235,7 +27235,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -27275,7 +27275,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -27302,7 +27302,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L13" } ], "extendedTypes": [ @@ -27336,7 +27336,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmdialog/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmdialog/index.d.ts#L1" } ] }, @@ -27383,7 +27383,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L17" } ], "type": { @@ -27427,7 +27427,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L23" } ], "type": { @@ -27467,7 +27467,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L29" } ], "type": { @@ -27507,7 +27507,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L35" } ], "type": { @@ -27547,7 +27547,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L41" } ], "type": { @@ -27587,7 +27587,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L47" } ], "type": { @@ -27627,7 +27627,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L53" } ], "type": { @@ -27667,7 +27667,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L59" } ], "type": { @@ -27695,7 +27695,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L17" } ] } @@ -27722,7 +27722,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L64" } ], "type": { @@ -27766,7 +27766,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L70" } ], "type": { @@ -27806,7 +27806,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L76" } ], "type": { @@ -27829,7 +27829,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 64, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L64" } ] } @@ -27856,7 +27856,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 81, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L81" } ], "type": { @@ -27900,7 +27900,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L87" } ], "type": { @@ -27940,7 +27940,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L93" } ], "type": { @@ -27963,7 +27963,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 81, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L81" } ] } @@ -27990,7 +27990,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 98, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L98" } ], "type": { @@ -28034,7 +28034,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L104" } ], "type": { @@ -28074,7 +28074,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L110" } ], "type": { @@ -28097,7 +28097,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 98, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L98" } ] } @@ -28116,7 +28116,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -28141,7 +28141,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -28179,7 +28179,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -28219,7 +28219,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -28248,7 +28248,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L13" } ], "extendedTypes": [ @@ -28282,7 +28282,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/confirmpopup/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/confirmpopup/index.d.ts#L1" } ] }, @@ -28329,7 +28329,7 @@ "fileName": "contextmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L17" } ], "type": { @@ -28373,7 +28373,7 @@ "fileName": "contextmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L23" } ], "type": { @@ -28413,7 +28413,7 @@ "fileName": "contextmenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L29" } ], "type": { @@ -28453,7 +28453,7 @@ "fileName": "contextmenu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L35" } ], "type": { @@ -28493,7 +28493,7 @@ "fileName": "contextmenu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L41" } ], "type": { @@ -28533,7 +28533,7 @@ "fileName": "contextmenu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L47" } ], "type": { @@ -28573,7 +28573,7 @@ "fileName": "contextmenu/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L53" } ], "type": { @@ -28600,7 +28600,7 @@ "fileName": "contextmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L17" } ] } @@ -28627,7 +28627,7 @@ "fileName": "contextmenu/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L58" } ], "type": { @@ -28671,7 +28671,7 @@ "fileName": "contextmenu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L64" } ], "type": { @@ -28711,7 +28711,7 @@ "fileName": "contextmenu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L70" } ], "type": { @@ -28734,7 +28734,7 @@ "fileName": "contextmenu/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L58" } ] } @@ -28761,7 +28761,7 @@ "fileName": "contextmenu/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L75" } ], "type": { @@ -28805,7 +28805,7 @@ "fileName": "contextmenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L81" } ], "type": { @@ -28845,7 +28845,7 @@ "fileName": "contextmenu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L87" } ], "type": { @@ -28885,7 +28885,7 @@ "fileName": "contextmenu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L93" } ], "type": { @@ -28925,7 +28925,7 @@ "fileName": "contextmenu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L99" } ], "type": { @@ -28965,7 +28965,7 @@ "fileName": "contextmenu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L105" } ], "type": { @@ -29005,7 +29005,7 @@ "fileName": "contextmenu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L111" } ], "type": { @@ -29045,7 +29045,7 @@ "fileName": "contextmenu/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L117" } ], "type": { @@ -29085,7 +29085,7 @@ "fileName": "contextmenu/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L123" } ], "type": { @@ -29114,7 +29114,7 @@ "fileName": "contextmenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L127" } ], "type": { @@ -29158,7 +29158,7 @@ "fileName": "contextmenu/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L133" } ], "type": { @@ -29198,7 +29198,7 @@ "fileName": "contextmenu/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L139" } ], "type": { @@ -29238,7 +29238,7 @@ "fileName": "contextmenu/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L145" } ], "type": { @@ -29262,7 +29262,7 @@ "fileName": "contextmenu/index.d.ts", "line": 127, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L127" } ] } @@ -29290,7 +29290,7 @@ "fileName": "contextmenu/index.d.ts", "line": 75, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L75" } ] } @@ -29317,7 +29317,7 @@ "fileName": "contextmenu/index.d.ts", "line": 151, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L151" } ], "type": { @@ -29361,7 +29361,7 @@ "fileName": "contextmenu/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L157" } ], "type": { @@ -29401,7 +29401,7 @@ "fileName": "contextmenu/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L163" } ], "type": { @@ -29441,7 +29441,7 @@ "fileName": "contextmenu/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L169" } ], "type": { @@ -29481,7 +29481,7 @@ "fileName": "contextmenu/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L175" } ], "type": { @@ -29506,7 +29506,7 @@ "fileName": "contextmenu/index.d.ts", "line": 151, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L151" } ] } @@ -29533,7 +29533,7 @@ "fileName": "contextmenu/index.d.ts", "line": 180, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L180" } ], "type": { @@ -29577,7 +29577,7 @@ "fileName": "contextmenu/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L186" } ], "type": { @@ -29599,7 +29599,7 @@ "fileName": "contextmenu/index.d.ts", "line": 180, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L180" } ] } @@ -29618,7 +29618,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -29643,7 +29643,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -29681,7 +29681,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -29721,7 +29721,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -29751,7 +29751,7 @@ "fileName": "contextmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -29785,7 +29785,7 @@ "fileName": "contextmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/contextmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/contextmenu/index.d.ts#L1" } ] }, @@ -29832,7 +29832,7 @@ "fileName": "datatable/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L17" } ], "type": { @@ -29876,7 +29876,7 @@ "fileName": "datatable/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L23" } ], "type": { @@ -29916,7 +29916,7 @@ "fileName": "datatable/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L29" } ], "type": { @@ -29939,7 +29939,7 @@ "fileName": "datatable/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L17" } ] } @@ -29966,7 +29966,7 @@ "fileName": "datatable/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L34" } ], "type": { @@ -30010,7 +30010,7 @@ "fileName": "datatable/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L40" } ], "type": { @@ -30050,7 +30050,7 @@ "fileName": "datatable/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L46" } ], "type": { @@ -30090,7 +30090,7 @@ "fileName": "datatable/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L52" } ], "type": { @@ -30130,7 +30130,7 @@ "fileName": "datatable/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L58" } ], "type": { @@ -30170,7 +30170,7 @@ "fileName": "datatable/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L64" } ], "type": { @@ -30196,7 +30196,7 @@ "fileName": "datatable/index.d.ts", "line": 34, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L34" } ] } @@ -30223,7 +30223,7 @@ "fileName": "datatable/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L69" } ], "type": { @@ -30267,7 +30267,7 @@ "fileName": "datatable/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L75" } ], "type": { @@ -30307,7 +30307,7 @@ "fileName": "datatable/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L81" } ], "type": { @@ -30347,7 +30347,7 @@ "fileName": "datatable/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L87" } ], "type": { @@ -30387,7 +30387,7 @@ "fileName": "datatable/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L93" } ], "type": { @@ -30427,7 +30427,7 @@ "fileName": "datatable/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L99" } ], "type": { @@ -30467,7 +30467,7 @@ "fileName": "datatable/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L105" } ], "type": { @@ -30507,7 +30507,7 @@ "fileName": "datatable/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L111" } ], "type": { @@ -30547,7 +30547,7 @@ "fileName": "datatable/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L117" } ], "type": { @@ -30587,7 +30587,7 @@ "fileName": "datatable/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L123" } ], "type": { @@ -30616,7 +30616,7 @@ "fileName": "datatable/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L127" } ], "type": { @@ -30660,7 +30660,7 @@ "fileName": "datatable/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L133" } ], "type": { @@ -30700,7 +30700,7 @@ "fileName": "datatable/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L139" } ], "type": { @@ -30740,7 +30740,7 @@ "fileName": "datatable/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L145" } ], "type": { @@ -30780,7 +30780,7 @@ "fileName": "datatable/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L151" } ], "type": { @@ -30820,7 +30820,7 @@ "fileName": "datatable/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L157" } ], "type": { @@ -30846,7 +30846,7 @@ "fileName": "datatable/index.d.ts", "line": 127, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L127" } ] } @@ -30875,7 +30875,7 @@ "fileName": "datatable/index.d.ts", "line": 69, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L69" } ] } @@ -30902,7 +30902,7 @@ "fileName": "datatable/index.d.ts", "line": 163, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L163" } ], "type": { @@ -30946,7 +30946,7 @@ "fileName": "datatable/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L169" } ], "type": { @@ -30968,7 +30968,7 @@ "fileName": "datatable/index.d.ts", "line": 163, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L163" } ] } @@ -30995,7 +30995,7 @@ "fileName": "datatable/index.d.ts", "line": 174, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L174" } ], "type": { @@ -31039,7 +31039,7 @@ "fileName": "datatable/index.d.ts", "line": 180, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L180" } ], "type": { @@ -31079,7 +31079,7 @@ "fileName": "datatable/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L186" } ], "type": { @@ -31119,7 +31119,7 @@ "fileName": "datatable/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L192" } ], "type": { @@ -31159,7 +31159,7 @@ "fileName": "datatable/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L198" } ], "type": { @@ -31199,7 +31199,7 @@ "fileName": "datatable/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L204" } ], "type": { @@ -31239,7 +31239,7 @@ "fileName": "datatable/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L210" } ], "type": { @@ -31268,7 +31268,7 @@ "fileName": "datatable/index.d.ts", "line": 214, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L214" } ], "type": { @@ -31312,7 +31312,7 @@ "fileName": "datatable/index.d.ts", "line": 220, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L220" } ], "type": { @@ -31352,7 +31352,7 @@ "fileName": "datatable/index.d.ts", "line": 226, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L226" } ], "type": { @@ -31392,7 +31392,7 @@ "fileName": "datatable/index.d.ts", "line": 232, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L232" } ], "type": { @@ -31432,7 +31432,7 @@ "fileName": "datatable/index.d.ts", "line": 238, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L238" } ], "type": { @@ -31472,7 +31472,7 @@ "fileName": "datatable/index.d.ts", "line": 244, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L244" } ], "type": { @@ -31498,7 +31498,7 @@ "fileName": "datatable/index.d.ts", "line": 214, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L214" } ] } @@ -31536,7 +31536,7 @@ "fileName": "datatable/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L251" } ], "type": { @@ -31565,7 +31565,7 @@ "fileName": "datatable/index.d.ts", "line": 174, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L174" } ] } @@ -31592,7 +31592,7 @@ "fileName": "datatable/index.d.ts", "line": 256, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L256" } ], "type": { @@ -31636,7 +31636,7 @@ "fileName": "datatable/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L262" } ], "type": { @@ -31676,7 +31676,7 @@ "fileName": "datatable/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L268" } ], "type": { @@ -31716,7 +31716,7 @@ "fileName": "datatable/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L274" } ], "type": { @@ -31740,7 +31740,7 @@ "fileName": "datatable/index.d.ts", "line": 256, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L256" } ] } @@ -31767,7 +31767,7 @@ "fileName": "datatable/index.d.ts", "line": 279, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L279" } ], "type": { @@ -31811,7 +31811,7 @@ "fileName": "datatable/index.d.ts", "line": 285, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L285" } ], "type": { @@ -31851,7 +31851,7 @@ "fileName": "datatable/index.d.ts", "line": 291, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L291" } ], "type": { @@ -31891,7 +31891,7 @@ "fileName": "datatable/index.d.ts", "line": 297, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L297" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L297" } ], "type": { @@ -31931,7 +31931,7 @@ "fileName": "datatable/index.d.ts", "line": 303, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L303" } ], "type": { @@ -31956,7 +31956,7 @@ "fileName": "datatable/index.d.ts", "line": 279, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L279" } ] } @@ -31983,7 +31983,7 @@ "fileName": "datatable/index.d.ts", "line": 308, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L308" } ], "type": { @@ -32027,7 +32027,7 @@ "fileName": "datatable/index.d.ts", "line": 314, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L314" } ], "type": { @@ -32049,7 +32049,7 @@ "fileName": "datatable/index.d.ts", "line": 308, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L308" } ] } @@ -32076,7 +32076,7 @@ "fileName": "datatable/index.d.ts", "line": 319, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L319" } ], "type": { @@ -32120,7 +32120,7 @@ "fileName": "datatable/index.d.ts", "line": 325, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L325" } ], "type": { @@ -32160,7 +32160,7 @@ "fileName": "datatable/index.d.ts", "line": 331, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L331" } ], "type": { @@ -32200,7 +32200,7 @@ "fileName": "datatable/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L337" } ], "type": { @@ -32240,7 +32240,7 @@ "fileName": "datatable/index.d.ts", "line": 343, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L343" } ], "type": { @@ -32280,7 +32280,7 @@ "fileName": "datatable/index.d.ts", "line": 349, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L349" } ], "type": { @@ -32306,7 +32306,7 @@ "fileName": "datatable/index.d.ts", "line": 319, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L319" } ] } @@ -32333,7 +32333,7 @@ "fileName": "datatable/index.d.ts", "line": 354, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L354" } ], "type": { @@ -32377,7 +32377,7 @@ "fileName": "datatable/index.d.ts", "line": 360, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L360" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L360" } ], "type": { @@ -32417,7 +32417,7 @@ "fileName": "datatable/index.d.ts", "line": 366, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L366" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L366" } ], "type": { @@ -32457,7 +32457,7 @@ "fileName": "datatable/index.d.ts", "line": 372, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L372" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L372" } ], "type": { @@ -32497,7 +32497,7 @@ "fileName": "datatable/index.d.ts", "line": 378, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L378" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L378" } ], "type": { @@ -32537,7 +32537,7 @@ "fileName": "datatable/index.d.ts", "line": 384, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L384" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L384" } ], "type": { @@ -32577,7 +32577,7 @@ "fileName": "datatable/index.d.ts", "line": 390, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L390" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L390" } ], "type": { @@ -32617,7 +32617,7 @@ "fileName": "datatable/index.d.ts", "line": 396, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L396" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L396" } ], "type": { @@ -32657,7 +32657,7 @@ "fileName": "datatable/index.d.ts", "line": 402, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L402" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L402" } ], "type": { @@ -32697,7 +32697,7 @@ "fileName": "datatable/index.d.ts", "line": 408, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L408" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L408" } ], "type": { @@ -32737,7 +32737,7 @@ "fileName": "datatable/index.d.ts", "line": 414, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L414" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L414" } ], "type": { @@ -32777,7 +32777,7 @@ "fileName": "datatable/index.d.ts", "line": 420, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L420" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L420" } ], "type": { @@ -32817,7 +32817,7 @@ "fileName": "datatable/index.d.ts", "line": 426, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L426" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L426" } ], "type": { @@ -32857,7 +32857,7 @@ "fileName": "datatable/index.d.ts", "line": 432, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L432" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L432" } ], "type": { @@ -32897,7 +32897,7 @@ "fileName": "datatable/index.d.ts", "line": 438, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L438" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L438" } ], "type": { @@ -32937,7 +32937,7 @@ "fileName": "datatable/index.d.ts", "line": 444, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L444" } ], "type": { @@ -32973,7 +32973,7 @@ "fileName": "datatable/index.d.ts", "line": 354, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L354" } ] } @@ -33000,7 +33000,7 @@ "fileName": "datatable/index.d.ts", "line": 449, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L449" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L449" } ], "type": { @@ -33044,7 +33044,7 @@ "fileName": "datatable/index.d.ts", "line": 455, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L455" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L455" } ], "type": { @@ -33084,7 +33084,7 @@ "fileName": "datatable/index.d.ts", "line": 461, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L461" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L461" } ], "type": { @@ -33124,7 +33124,7 @@ "fileName": "datatable/index.d.ts", "line": 467, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L467" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L467" } ], "type": { @@ -33164,7 +33164,7 @@ "fileName": "datatable/index.d.ts", "line": 473, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L473" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L473" } ], "type": { @@ -33204,7 +33204,7 @@ "fileName": "datatable/index.d.ts", "line": 479, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L479" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L479" } ], "type": { @@ -33244,7 +33244,7 @@ "fileName": "datatable/index.d.ts", "line": 485, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L485" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L485" } ], "type": { @@ -33271,7 +33271,7 @@ "fileName": "datatable/index.d.ts", "line": 449, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L449" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L449" } ] } @@ -33298,7 +33298,7 @@ "fileName": "datatable/index.d.ts", "line": 490, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L490" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L490" } ], "type": { @@ -33342,7 +33342,7 @@ "fileName": "datatable/index.d.ts", "line": 496, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L496" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L496" } ], "type": { @@ -33382,7 +33382,7 @@ "fileName": "datatable/index.d.ts", "line": 502, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L502" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L502" } ], "type": { @@ -33405,7 +33405,7 @@ "fileName": "datatable/index.d.ts", "line": 490, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L490" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L490" } ] } @@ -33432,7 +33432,7 @@ "fileName": "datatable/index.d.ts", "line": 507, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L507" } ], "type": { @@ -33476,7 +33476,7 @@ "fileName": "datatable/index.d.ts", "line": 513, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L513" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L513" } ], "type": { @@ -33516,7 +33516,7 @@ "fileName": "datatable/index.d.ts", "line": 519, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L519" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L519" } ], "type": { @@ -33539,7 +33539,7 @@ "fileName": "datatable/index.d.ts", "line": 507, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L507" } ] } @@ -33566,7 +33566,7 @@ "fileName": "datatable/index.d.ts", "line": 524, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L524" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L524" } ], "type": { @@ -33610,7 +33610,7 @@ "fileName": "datatable/index.d.ts", "line": 530, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L530" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L530" } ], "type": { @@ -33632,7 +33632,7 @@ "fileName": "datatable/index.d.ts", "line": 524, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L524" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L524" } ] } @@ -33659,7 +33659,7 @@ "fileName": "datatable/index.d.ts", "line": 535, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L535" } ], "type": { @@ -33703,7 +33703,7 @@ "fileName": "datatable/index.d.ts", "line": 541, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L541" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L541" } ], "type": { @@ -33743,7 +33743,7 @@ "fileName": "datatable/index.d.ts", "line": 547, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L547" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L547" } ], "type": { @@ -33783,7 +33783,7 @@ "fileName": "datatable/index.d.ts", "line": 553, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L553" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L553" } ], "type": { @@ -33823,7 +33823,7 @@ "fileName": "datatable/index.d.ts", "line": 559, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L559" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L559" } ], "type": { @@ -33863,7 +33863,7 @@ "fileName": "datatable/index.d.ts", "line": 565, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L565" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L565" } ], "type": { @@ -33903,7 +33903,7 @@ "fileName": "datatable/index.d.ts", "line": 571, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L571" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L571" } ], "type": { @@ -33943,7 +33943,7 @@ "fileName": "datatable/index.d.ts", "line": 577, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L577" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L577" } ], "type": { @@ -33972,7 +33972,7 @@ "fileName": "datatable/index.d.ts", "line": 581, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L581" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L581" } ], "type": { @@ -34016,7 +34016,7 @@ "fileName": "datatable/index.d.ts", "line": 587, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L587" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L587" } ], "type": { @@ -34056,7 +34056,7 @@ "fileName": "datatable/index.d.ts", "line": 593, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L593" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L593" } ], "type": { @@ -34096,7 +34096,7 @@ "fileName": "datatable/index.d.ts", "line": 599, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L599" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L599" } ], "type": { @@ -34136,7 +34136,7 @@ "fileName": "datatable/index.d.ts", "line": 605, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L605" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L605" } ], "type": { @@ -34176,7 +34176,7 @@ "fileName": "datatable/index.d.ts", "line": 611, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L611" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L611" } ], "type": { @@ -34202,7 +34202,7 @@ "fileName": "datatable/index.d.ts", "line": 581, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L581" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L581" } ] } @@ -34229,7 +34229,7 @@ "fileName": "datatable/index.d.ts", "line": 535, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L535" } ] } @@ -34256,7 +34256,7 @@ "fileName": "datatable/index.d.ts", "line": 617, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L617" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L617" } ], "type": { @@ -34300,7 +34300,7 @@ "fileName": "datatable/index.d.ts", "line": 623, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L623" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L623" } ], "type": { @@ -34329,7 +34329,7 @@ "fileName": "datatable/index.d.ts", "line": 627, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L627" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L627" } ], "type": { @@ -34373,7 +34373,7 @@ "fileName": "datatable/index.d.ts", "line": 633, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L633" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L633" } ], "type": { @@ -34413,7 +34413,7 @@ "fileName": "datatable/index.d.ts", "line": 639, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L639" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L639" } ], "type": { @@ -34453,7 +34453,7 @@ "fileName": "datatable/index.d.ts", "line": 645, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L645" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L645" } ], "type": { @@ -34493,7 +34493,7 @@ "fileName": "datatable/index.d.ts", "line": 651, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L651" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L651" } ], "type": { @@ -34533,7 +34533,7 @@ "fileName": "datatable/index.d.ts", "line": 657, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L657" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L657" } ], "type": { @@ -34559,7 +34559,7 @@ "fileName": "datatable/index.d.ts", "line": 627, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L627" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L627" } ] } @@ -34586,7 +34586,7 @@ "fileName": "datatable/index.d.ts", "line": 662, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L662" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L662" } ], "type": { @@ -34630,7 +34630,7 @@ "fileName": "datatable/index.d.ts", "line": 668, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L668" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L668" } ], "type": { @@ -34670,7 +34670,7 @@ "fileName": "datatable/index.d.ts", "line": 674, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L674" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L674" } ], "type": { @@ -34710,7 +34710,7 @@ "fileName": "datatable/index.d.ts", "line": 680, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L680" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L680" } ], "type": { @@ -34750,7 +34750,7 @@ "fileName": "datatable/index.d.ts", "line": 686, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L686" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L686" } ], "type": { @@ -34790,7 +34790,7 @@ "fileName": "datatable/index.d.ts", "line": 692, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L692" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L692" } ], "type": { @@ -34830,7 +34830,7 @@ "fileName": "datatable/index.d.ts", "line": 698, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L698" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L698" } ], "type": { @@ -34870,7 +34870,7 @@ "fileName": "datatable/index.d.ts", "line": 704, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L704" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L704" } ], "type": { @@ -34898,7 +34898,7 @@ "fileName": "datatable/index.d.ts", "line": 662, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L662" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L662" } ] } @@ -34925,7 +34925,7 @@ "fileName": "datatable/index.d.ts", "line": 709, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L709" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L709" } ], "type": { @@ -34969,7 +34969,7 @@ "fileName": "datatable/index.d.ts", "line": 715, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L715" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L715" } ], "type": { @@ -34991,7 +34991,7 @@ "fileName": "datatable/index.d.ts", "line": 709, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L709" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L709" } ] } @@ -35018,7 +35018,7 @@ "fileName": "datatable/index.d.ts", "line": 720, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L720" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L720" } ], "type": { @@ -35062,7 +35062,7 @@ "fileName": "datatable/index.d.ts", "line": 726, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L726" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L726" } ], "type": { @@ -35102,7 +35102,7 @@ "fileName": "datatable/index.d.ts", "line": 732, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L732" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L732" } ], "type": { @@ -35125,7 +35125,7 @@ "fileName": "datatable/index.d.ts", "line": 720, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L720" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L720" } ] } @@ -35152,7 +35152,7 @@ "fileName": "datatable/index.d.ts", "line": 737, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L737" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L737" } ], "type": { @@ -35196,7 +35196,7 @@ "fileName": "datatable/index.d.ts", "line": 743, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L743" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L743" } ], "type": { @@ -35236,7 +35236,7 @@ "fileName": "datatable/index.d.ts", "line": 749, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L749" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L749" } ], "type": { @@ -35276,7 +35276,7 @@ "fileName": "datatable/index.d.ts", "line": 755, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L755" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L755" } ], "type": { @@ -35316,7 +35316,7 @@ "fileName": "datatable/index.d.ts", "line": 761, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L761" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L761" } ], "type": { @@ -35356,7 +35356,7 @@ "fileName": "datatable/index.d.ts", "line": 767, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L767" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L767" } ], "type": { @@ -35396,7 +35396,7 @@ "fileName": "datatable/index.d.ts", "line": 773, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L773" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L773" } ], "type": { @@ -35436,7 +35436,7 @@ "fileName": "datatable/index.d.ts", "line": 779, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L779" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L779" } ], "type": { @@ -35465,7 +35465,7 @@ "fileName": "datatable/index.d.ts", "line": 783, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L783" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L783" } ], "type": { @@ -35509,7 +35509,7 @@ "fileName": "datatable/index.d.ts", "line": 789, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L789" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L789" } ], "type": { @@ -35531,7 +35531,7 @@ "fileName": "datatable/index.d.ts", "line": 783, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L783" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L783" } ] } @@ -35569,7 +35569,7 @@ "fileName": "datatable/index.d.ts", "line": 796, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L796" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L796" } ], "type": { @@ -35609,7 +35609,7 @@ "fileName": "datatable/index.d.ts", "line": 802, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L802" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L802" } ], "type": { @@ -35640,7 +35640,7 @@ "fileName": "datatable/index.d.ts", "line": 737, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L737" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L737" } ] } @@ -35665,7 +35665,7 @@ "fileName": "datatable/index.d.ts", "line": 617, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L617" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L617" } ] } @@ -35692,7 +35692,7 @@ "fileName": "datatable/index.d.ts", "line": 808, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L808" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L808" } ], "type": { @@ -35736,7 +35736,7 @@ "fileName": "datatable/index.d.ts", "line": 814, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L814" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L814" } ], "type": { @@ -35776,7 +35776,7 @@ "fileName": "datatable/index.d.ts", "line": 820, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L820" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L820" } ], "type": { @@ -35799,7 +35799,7 @@ "fileName": "datatable/index.d.ts", "line": 808, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L808" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L808" } ] } @@ -35826,7 +35826,7 @@ "fileName": "datatable/index.d.ts", "line": 825, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L825" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L825" } ], "type": { @@ -35870,7 +35870,7 @@ "fileName": "datatable/index.d.ts", "line": 831, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L831" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L831" } ], "type": { @@ -35910,7 +35910,7 @@ "fileName": "datatable/index.d.ts", "line": 837, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L837" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L837" } ], "type": { @@ -35933,7 +35933,7 @@ "fileName": "datatable/index.d.ts", "line": 825, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L825" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L825" } ] } @@ -35952,7 +35952,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -35977,7 +35977,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -36015,7 +36015,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -36055,7 +36055,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -36098,7 +36098,7 @@ "fileName": "datatable/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L13" } ], "extendedTypes": [ @@ -36132,7 +36132,7 @@ "fileName": "datatable/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datatable/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datatable/index.d.ts#L1" } ] }, @@ -36179,7 +36179,7 @@ "fileName": "dataview/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L17" } ], "type": { @@ -36223,7 +36223,7 @@ "fileName": "dataview/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L23" } ], "type": { @@ -36263,7 +36263,7 @@ "fileName": "dataview/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L29" } ], "type": { @@ -36303,7 +36303,7 @@ "fileName": "dataview/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L35" } ], "type": { @@ -36343,7 +36343,7 @@ "fileName": "dataview/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L41" } ], "type": { @@ -36368,7 +36368,7 @@ "fileName": "dataview/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L17" } ] } @@ -36395,7 +36395,7 @@ "fileName": "dataview/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L46" } ], "type": { @@ -36439,7 +36439,7 @@ "fileName": "dataview/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L52" } ], "type": { @@ -36479,7 +36479,7 @@ "fileName": "dataview/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L58" } ], "type": { @@ -36519,7 +36519,7 @@ "fileName": "dataview/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L64" } ], "type": { @@ -36559,7 +36559,7 @@ "fileName": "dataview/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L70" } ], "type": { @@ -36599,7 +36599,7 @@ "fileName": "dataview/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L76" } ], "type": { @@ -36639,7 +36639,7 @@ "fileName": "dataview/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L82" } ], "type": { @@ -36666,7 +36666,7 @@ "fileName": "dataview/index.d.ts", "line": 46, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L46" } ] } @@ -36693,7 +36693,7 @@ "fileName": "dataview/index.d.ts", "line": 87, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L87" } ], "type": { @@ -36737,7 +36737,7 @@ "fileName": "dataview/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L93" } ], "type": { @@ -36777,7 +36777,7 @@ "fileName": "dataview/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L99" } ], "type": { @@ -36817,7 +36817,7 @@ "fileName": "dataview/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L105" } ], "type": { @@ -36857,7 +36857,7 @@ "fileName": "dataview/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L111" } ], "type": { @@ -36897,7 +36897,7 @@ "fileName": "dataview/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L117" } ], "type": { @@ -36937,7 +36937,7 @@ "fileName": "dataview/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L123" } ], "type": { @@ -36964,7 +36964,7 @@ "fileName": "dataview/index.d.ts", "line": 87, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L87" } ] } @@ -36991,7 +36991,7 @@ "fileName": "dataview/index.d.ts", "line": 128, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L128" } ], "type": { @@ -37035,7 +37035,7 @@ "fileName": "dataview/index.d.ts", "line": 134, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L134" } ], "type": { @@ -37075,7 +37075,7 @@ "fileName": "dataview/index.d.ts", "line": 140, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L140" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L140" } ], "type": { @@ -37115,7 +37115,7 @@ "fileName": "dataview/index.d.ts", "line": 146, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L146" } ], "type": { @@ -37155,7 +37155,7 @@ "fileName": "dataview/index.d.ts", "line": 152, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L152" } ], "type": { @@ -37195,7 +37195,7 @@ "fileName": "dataview/index.d.ts", "line": 158, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L158" } ], "type": { @@ -37235,7 +37235,7 @@ "fileName": "dataview/index.d.ts", "line": 164, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L164" } ], "type": { @@ -37262,7 +37262,7 @@ "fileName": "dataview/index.d.ts", "line": 128, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L128" } ] } @@ -37289,7 +37289,7 @@ "fileName": "dataview/index.d.ts", "line": 169, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L169" } ], "type": { @@ -37333,7 +37333,7 @@ "fileName": "dataview/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L175" } ], "type": { @@ -37373,7 +37373,7 @@ "fileName": "dataview/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L181" } ], "type": { @@ -37396,7 +37396,7 @@ "fileName": "dataview/index.d.ts", "line": 169, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L169" } ] } @@ -37423,7 +37423,7 @@ "fileName": "dataview/index.d.ts", "line": 186, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L186" } ], "type": { @@ -37467,7 +37467,7 @@ "fileName": "dataview/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L192" } ], "type": { @@ -37507,7 +37507,7 @@ "fileName": "dataview/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L198" } ], "type": { @@ -37530,7 +37530,7 @@ "fileName": "dataview/index.d.ts", "line": 186, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L186" } ] } @@ -37549,7 +37549,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -37574,7 +37574,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -37612,7 +37612,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -37652,7 +37652,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -37683,7 +37683,7 @@ "fileName": "dataview/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L13" } ], "extendedTypes": [ @@ -37717,7 +37717,7 @@ "fileName": "dataview/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dataview/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dataview/index.d.ts#L1" } ] }, @@ -37764,7 +37764,7 @@ "fileName": "datepicker/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L17" } ], "type": { @@ -37808,7 +37808,7 @@ "fileName": "datepicker/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L23" } ], "type": { @@ -37830,7 +37830,7 @@ "fileName": "datepicker/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L17" } ] } @@ -37857,7 +37857,7 @@ "fileName": "datepicker/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L28" } ], "type": { @@ -37901,7 +37901,7 @@ "fileName": "datepicker/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L34" } ], "type": { @@ -37941,7 +37941,7 @@ "fileName": "datepicker/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L40" } ], "type": { @@ -37981,7 +37981,7 @@ "fileName": "datepicker/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L46" } ], "type": { @@ -38021,7 +38021,7 @@ "fileName": "datepicker/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L52" } ], "type": { @@ -38061,7 +38061,7 @@ "fileName": "datepicker/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L58" } ], "type": { @@ -38101,7 +38101,7 @@ "fileName": "datepicker/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L64" } ], "type": { @@ -38128,7 +38128,7 @@ "fileName": "datepicker/index.d.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L28" } ] } @@ -38155,7 +38155,7 @@ "fileName": "datepicker/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L69" } ], "type": { @@ -38199,7 +38199,7 @@ "fileName": "datepicker/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L75" } ], "type": { @@ -38239,7 +38239,7 @@ "fileName": "datepicker/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L81" } ], "type": { @@ -38279,7 +38279,7 @@ "fileName": "datepicker/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L87" } ], "type": { @@ -38319,7 +38319,7 @@ "fileName": "datepicker/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L93" } ], "type": { @@ -38359,7 +38359,7 @@ "fileName": "datepicker/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L99" } ], "type": { @@ -38399,7 +38399,7 @@ "fileName": "datepicker/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L105" } ], "type": { @@ -38426,7 +38426,7 @@ "fileName": "datepicker/index.d.ts", "line": 69, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L69" } ] } @@ -38453,7 +38453,7 @@ "fileName": "datepicker/index.d.ts", "line": 110, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L110" } ], "type": { @@ -38497,7 +38497,7 @@ "fileName": "datepicker/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L116" } ], "type": { @@ -38537,7 +38537,7 @@ "fileName": "datepicker/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L122" } ], "type": { @@ -38560,7 +38560,7 @@ "fileName": "datepicker/index.d.ts", "line": 110, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L110" } ] } @@ -38587,7 +38587,7 @@ "fileName": "datepicker/index.d.ts", "line": 127, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L127" } ], "type": { @@ -38631,7 +38631,7 @@ "fileName": "datepicker/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L133" } ], "type": { @@ -38671,7 +38671,7 @@ "fileName": "datepicker/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L139" } ], "type": { @@ -38711,7 +38711,7 @@ "fileName": "datepicker/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L145" } ], "type": { @@ -38751,7 +38751,7 @@ "fileName": "datepicker/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L151" } ], "type": { @@ -38791,7 +38791,7 @@ "fileName": "datepicker/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L157" } ], "type": { @@ -38820,7 +38820,7 @@ "fileName": "datepicker/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L161" } ], "type": { @@ -38864,7 +38864,7 @@ "fileName": "datepicker/index.d.ts", "line": 167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L167" } ], "type": { @@ -38904,7 +38904,7 @@ "fileName": "datepicker/index.d.ts", "line": 173, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L173" } ], "type": { @@ -38944,7 +38944,7 @@ "fileName": "datepicker/index.d.ts", "line": 179, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L179" } ], "type": { @@ -38984,7 +38984,7 @@ "fileName": "datepicker/index.d.ts", "line": 185, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L185" } ], "type": { @@ -39024,7 +39024,7 @@ "fileName": "datepicker/index.d.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L191" } ], "type": { @@ -39050,7 +39050,7 @@ "fileName": "datepicker/index.d.ts", "line": 161, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L161" } ] } @@ -39088,7 +39088,7 @@ "fileName": "datepicker/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L198" } ], "type": { @@ -39128,7 +39128,7 @@ "fileName": "datepicker/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L204" } ], "type": { @@ -39168,7 +39168,7 @@ "fileName": "datepicker/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L210" } ], "type": { @@ -39208,7 +39208,7 @@ "fileName": "datepicker/index.d.ts", "line": 216, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L216" } ], "type": { @@ -39248,7 +39248,7 @@ "fileName": "datepicker/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L222" } ], "type": { @@ -39288,7 +39288,7 @@ "fileName": "datepicker/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L228" } ], "type": { @@ -39321,7 +39321,7 @@ "fileName": "datepicker/index.d.ts", "line": 127, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L127" } ] } @@ -39348,7 +39348,7 @@ "fileName": "datepicker/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L233" } ], "type": { @@ -39392,7 +39392,7 @@ "fileName": "datepicker/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L239" } ], "type": { @@ -39414,7 +39414,7 @@ "fileName": "datepicker/index.d.ts", "line": 233, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L233" } ] } @@ -39441,7 +39441,7 @@ "fileName": "datepicker/index.d.ts", "line": 244, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L244" } ], "type": { @@ -39485,7 +39485,7 @@ "fileName": "datepicker/index.d.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L250" } ], "type": { @@ -39525,7 +39525,7 @@ "fileName": "datepicker/index.d.ts", "line": 256, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L256" } ], "type": { @@ -39565,7 +39565,7 @@ "fileName": "datepicker/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L262" } ], "type": { @@ -39605,7 +39605,7 @@ "fileName": "datepicker/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L268" } ], "type": { @@ -39645,7 +39645,7 @@ "fileName": "datepicker/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L274" } ], "type": { @@ -39671,7 +39671,7 @@ "fileName": "datepicker/index.d.ts", "line": 244, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L244" } ] } @@ -39698,7 +39698,7 @@ "fileName": "datepicker/index.d.ts", "line": 279, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L279" } ], "type": { @@ -39742,7 +39742,7 @@ "fileName": "datepicker/index.d.ts", "line": 285, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L285" } ], "type": { @@ -39782,7 +39782,7 @@ "fileName": "datepicker/index.d.ts", "line": 291, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L291" } ], "type": { @@ -39822,7 +39822,7 @@ "fileName": "datepicker/index.d.ts", "line": 297, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L297" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L297" } ], "type": { @@ -39862,7 +39862,7 @@ "fileName": "datepicker/index.d.ts", "line": 303, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L303" } ], "type": { @@ -39902,7 +39902,7 @@ "fileName": "datepicker/index.d.ts", "line": 309, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L309" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L309" } ], "type": { @@ -39928,7 +39928,7 @@ "fileName": "datepicker/index.d.ts", "line": 279, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L279" } ] } @@ -39955,7 +39955,7 @@ "fileName": "datepicker/index.d.ts", "line": 314, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L314" } ], "type": { @@ -39999,7 +39999,7 @@ "fileName": "datepicker/index.d.ts", "line": 320, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L320" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L320" } ], "type": { @@ -40039,7 +40039,7 @@ "fileName": "datepicker/index.d.ts", "line": 326, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L326" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L326" } ], "type": { @@ -40062,7 +40062,7 @@ "fileName": "datepicker/index.d.ts", "line": 314, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L314" } ] } @@ -40089,7 +40089,7 @@ "fileName": "datepicker/index.d.ts", "line": 331, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L331" } ], "type": { @@ -40133,7 +40133,7 @@ "fileName": "datepicker/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L337" } ], "type": { @@ -40155,7 +40155,7 @@ "fileName": "datepicker/index.d.ts", "line": 331, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L331" } ] } @@ -40182,7 +40182,7 @@ "fileName": "datepicker/index.d.ts", "line": 342, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L342" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L342" } ], "type": { @@ -40226,7 +40226,7 @@ "fileName": "datepicker/index.d.ts", "line": 348, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L348" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L348" } ], "type": { @@ -40266,7 +40266,7 @@ "fileName": "datepicker/index.d.ts", "line": 354, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L354" } ], "type": { @@ -40306,7 +40306,7 @@ "fileName": "datepicker/index.d.ts", "line": 360, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L360" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L360" } ], "type": { @@ -40330,7 +40330,7 @@ "fileName": "datepicker/index.d.ts", "line": 342, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L342" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L342" } ] } @@ -40357,7 +40357,7 @@ "fileName": "datepicker/index.d.ts", "line": 365, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L365" } ], "type": { @@ -40401,7 +40401,7 @@ "fileName": "datepicker/index.d.ts", "line": 371, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L371" } ], "type": { @@ -40441,7 +40441,7 @@ "fileName": "datepicker/index.d.ts", "line": 377, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L377" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L377" } ], "type": { @@ -40481,7 +40481,7 @@ "fileName": "datepicker/index.d.ts", "line": 383, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L383" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L383" } ], "type": { @@ -40521,7 +40521,7 @@ "fileName": "datepicker/index.d.ts", "line": 389, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L389" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L389" } ], "type": { @@ -40561,7 +40561,7 @@ "fileName": "datepicker/index.d.ts", "line": 395, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L395" } ], "type": { @@ -40601,7 +40601,7 @@ "fileName": "datepicker/index.d.ts", "line": 401, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L401" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L401" } ], "type": { @@ -40641,7 +40641,7 @@ "fileName": "datepicker/index.d.ts", "line": 407, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L407" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L407" } ], "type": { @@ -40681,7 +40681,7 @@ "fileName": "datepicker/index.d.ts", "line": 413, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L413" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L413" } ], "type": { @@ -40721,7 +40721,7 @@ "fileName": "datepicker/index.d.ts", "line": 419, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L419" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L419" } ], "type": { @@ -40761,7 +40761,7 @@ "fileName": "datepicker/index.d.ts", "line": 425, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L425" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L425" } ], "type": { @@ -40801,7 +40801,7 @@ "fileName": "datepicker/index.d.ts", "line": 431, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L431" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L431" } ], "type": { @@ -40830,7 +40830,7 @@ "fileName": "datepicker/index.d.ts", "line": 435, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L435" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L435" } ], "type": { @@ -40874,7 +40874,7 @@ "fileName": "datepicker/index.d.ts", "line": 441, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L441" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L441" } ], "type": { @@ -40914,7 +40914,7 @@ "fileName": "datepicker/index.d.ts", "line": 447, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L447" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L447" } ], "type": { @@ -40954,7 +40954,7 @@ "fileName": "datepicker/index.d.ts", "line": 453, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L453" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L453" } ], "type": { @@ -40994,7 +40994,7 @@ "fileName": "datepicker/index.d.ts", "line": 459, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L459" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L459" } ], "type": { @@ -41034,7 +41034,7 @@ "fileName": "datepicker/index.d.ts", "line": 465, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L465" } ], "type": { @@ -41060,7 +41060,7 @@ "fileName": "datepicker/index.d.ts", "line": 435, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L435" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L435" } ] } @@ -41091,7 +41091,7 @@ "fileName": "datepicker/index.d.ts", "line": 365, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L365" } ] } @@ -41118,7 +41118,7 @@ "fileName": "datepicker/index.d.ts", "line": 471, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L471" } ], "type": { @@ -41162,7 +41162,7 @@ "fileName": "datepicker/index.d.ts", "line": 477, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L477" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L477" } ], "type": { @@ -41184,7 +41184,7 @@ "fileName": "datepicker/index.d.ts", "line": 471, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L471" } ] } @@ -41211,7 +41211,7 @@ "fileName": "datepicker/index.d.ts", "line": 482, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L482" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L482" } ], "type": { @@ -41255,7 +41255,7 @@ "fileName": "datepicker/index.d.ts", "line": 488, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L488" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L488" } ], "type": { @@ -41277,7 +41277,7 @@ "fileName": "datepicker/index.d.ts", "line": 482, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L482" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L482" } ] } @@ -41304,7 +41304,7 @@ "fileName": "datepicker/index.d.ts", "line": 493, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L493" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L493" } ], "type": { @@ -41348,7 +41348,7 @@ "fileName": "datepicker/index.d.ts", "line": 499, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L499" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L499" } ], "type": { @@ -41370,7 +41370,7 @@ "fileName": "datepicker/index.d.ts", "line": 493, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L493" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L493" } ] } @@ -41397,7 +41397,7 @@ "fileName": "datepicker/index.d.ts", "line": 504, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L504" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L504" } ], "type": { @@ -41441,7 +41441,7 @@ "fileName": "datepicker/index.d.ts", "line": 510, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L510" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L510" } ], "type": { @@ -41463,7 +41463,7 @@ "fileName": "datepicker/index.d.ts", "line": 504, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L504" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L504" } ] } @@ -41490,7 +41490,7 @@ "fileName": "datepicker/index.d.ts", "line": 515, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L515" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L515" } ], "type": { @@ -41534,7 +41534,7 @@ "fileName": "datepicker/index.d.ts", "line": 521, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L521" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L521" } ], "type": { @@ -41574,7 +41574,7 @@ "fileName": "datepicker/index.d.ts", "line": 527, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L527" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L527" } ], "type": { @@ -41597,7 +41597,7 @@ "fileName": "datepicker/index.d.ts", "line": 515, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L515" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L515" } ] } @@ -41624,7 +41624,7 @@ "fileName": "datepicker/index.d.ts", "line": 532, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L532" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L532" } ], "type": { @@ -41668,7 +41668,7 @@ "fileName": "datepicker/index.d.ts", "line": 538, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L538" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L538" } ], "type": { @@ -41708,7 +41708,7 @@ "fileName": "datepicker/index.d.ts", "line": 544, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L544" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L544" } ], "type": { @@ -41748,7 +41748,7 @@ "fileName": "datepicker/index.d.ts", "line": 550, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L550" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L550" } ], "type": { @@ -41788,7 +41788,7 @@ "fileName": "datepicker/index.d.ts", "line": 556, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L556" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L556" } ], "type": { @@ -41813,7 +41813,7 @@ "fileName": "datepicker/index.d.ts", "line": 532, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L532" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L532" } ] } @@ -41840,7 +41840,7 @@ "fileName": "datepicker/index.d.ts", "line": 561, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L561" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L561" } ], "type": { @@ -41884,7 +41884,7 @@ "fileName": "datepicker/index.d.ts", "line": 567, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L567" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L567" } ], "type": { @@ -41924,7 +41924,7 @@ "fileName": "datepicker/index.d.ts", "line": 573, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L573" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L573" } ], "type": { @@ -41947,7 +41947,7 @@ "fileName": "datepicker/index.d.ts", "line": 561, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L561" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L561" } ] } @@ -41966,7 +41966,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -41991,7 +41991,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -42029,7 +42029,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -42069,7 +42069,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -42113,7 +42113,7 @@ "fileName": "datepicker/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L13" } ], "extendedTypes": [ @@ -42147,7 +42147,7 @@ "fileName": "datepicker/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/datepicker/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/datepicker/index.d.ts#L1" } ] }, @@ -42194,7 +42194,7 @@ "fileName": "dialog/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L17" } ], "type": { @@ -42238,7 +42238,7 @@ "fileName": "dialog/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L23" } ], "type": { @@ -42278,7 +42278,7 @@ "fileName": "dialog/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L29" } ], "type": { @@ -42318,7 +42318,7 @@ "fileName": "dialog/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L35" } ], "type": { @@ -42358,7 +42358,7 @@ "fileName": "dialog/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L41" } ], "type": { @@ -42398,7 +42398,7 @@ "fileName": "dialog/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L47" } ], "type": { @@ -42424,7 +42424,7 @@ "fileName": "dialog/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L17" } ] } @@ -42451,7 +42451,7 @@ "fileName": "dialog/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L52" } ], "type": { @@ -42495,7 +42495,7 @@ "fileName": "dialog/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L58" } ], "type": { @@ -42535,7 +42535,7 @@ "fileName": "dialog/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L64" } ], "type": { @@ -42558,7 +42558,7 @@ "fileName": "dialog/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L52" } ] } @@ -42585,7 +42585,7 @@ "fileName": "dialog/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L69" } ], "type": { @@ -42629,7 +42629,7 @@ "fileName": "dialog/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L75" } ], "type": { @@ -42669,7 +42669,7 @@ "fileName": "dialog/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L81" } ], "type": { @@ -42692,7 +42692,7 @@ "fileName": "dialog/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L69" } ] } @@ -42719,7 +42719,7 @@ "fileName": "dialog/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L86" } ], "type": { @@ -42763,7 +42763,7 @@ "fileName": "dialog/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L92" } ], "type": { @@ -42785,7 +42785,7 @@ "fileName": "dialog/index.d.ts", "line": 86, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L86" } ] } @@ -42812,7 +42812,7 @@ "fileName": "dialog/index.d.ts", "line": 97, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L97" } ], "type": { @@ -42856,7 +42856,7 @@ "fileName": "dialog/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L103" } ], "type": { @@ -42896,7 +42896,7 @@ "fileName": "dialog/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L109" } ], "type": { @@ -42919,7 +42919,7 @@ "fileName": "dialog/index.d.ts", "line": 97, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L97" } ] } @@ -42938,7 +42938,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -42963,7 +42963,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -43001,7 +43001,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -43041,7 +43041,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -43071,7 +43071,7 @@ "fileName": "dialog/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L13" } ], "extendedTypes": [ @@ -43105,7 +43105,7 @@ "fileName": "dialog/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dialog/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dialog/index.d.ts#L1" } ] }, @@ -43152,7 +43152,7 @@ "fileName": "divider/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L17" } ], "type": { @@ -43196,7 +43196,7 @@ "fileName": "divider/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L23" } ], "type": { @@ -43218,7 +43218,7 @@ "fileName": "divider/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L17" } ] } @@ -43245,7 +43245,7 @@ "fileName": "divider/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L28" } ], "type": { @@ -43289,7 +43289,7 @@ "fileName": "divider/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L34" } ], "type": { @@ -43329,7 +43329,7 @@ "fileName": "divider/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L40" } ], "type": { @@ -43352,7 +43352,7 @@ "fileName": "divider/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L28" } ] } @@ -43379,7 +43379,7 @@ "fileName": "divider/index.d.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L45" } ], "type": { @@ -43423,7 +43423,7 @@ "fileName": "divider/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L51" } ], "type": { @@ -43463,7 +43463,7 @@ "fileName": "divider/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L57" } ], "type": { @@ -43492,7 +43492,7 @@ "fileName": "divider/index.d.ts", "line": 61, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L61" } ], "type": { @@ -43536,7 +43536,7 @@ "fileName": "divider/index.d.ts", "line": 67, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L67" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L67" } ], "type": { @@ -43558,7 +43558,7 @@ "fileName": "divider/index.d.ts", "line": 61, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L61" } ] } @@ -43580,7 +43580,7 @@ "fileName": "divider/index.d.ts", "line": 45, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L45" } ] } @@ -43607,7 +43607,7 @@ "fileName": "divider/index.d.ts", "line": 73, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L73" } ], "type": { @@ -43651,7 +43651,7 @@ "fileName": "divider/index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L79" } ], "type": { @@ -43691,7 +43691,7 @@ "fileName": "divider/index.d.ts", "line": 85, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L85" } ], "type": { @@ -43720,7 +43720,7 @@ "fileName": "divider/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L89" } ], "type": { @@ -43764,7 +43764,7 @@ "fileName": "divider/index.d.ts", "line": 95, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L95" } ], "type": { @@ -43786,7 +43786,7 @@ "fileName": "divider/index.d.ts", "line": 89, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L89" } ] } @@ -43808,7 +43808,7 @@ "fileName": "divider/index.d.ts", "line": 73, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L73" } ] } @@ -43827,7 +43827,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -43852,7 +43852,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -43890,7 +43890,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -43930,7 +43930,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -43959,7 +43959,7 @@ "fileName": "divider/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L13" } ], "extendedTypes": [ @@ -43993,7 +43993,7 @@ "fileName": "divider/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/divider/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/divider/index.d.ts#L1" } ] }, @@ -44040,7 +44040,7 @@ "fileName": "dock/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L17" } ], "type": { @@ -44084,7 +44084,7 @@ "fileName": "dock/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L23" } ], "type": { @@ -44124,7 +44124,7 @@ "fileName": "dock/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L29" } ], "type": { @@ -44164,7 +44164,7 @@ "fileName": "dock/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L35" } ], "type": { @@ -44204,7 +44204,7 @@ "fileName": "dock/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L41" } ], "type": { @@ -44229,7 +44229,7 @@ "fileName": "dock/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L17" } ] } @@ -44256,7 +44256,7 @@ "fileName": "dock/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L46" } ], "type": { @@ -44300,7 +44300,7 @@ "fileName": "dock/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L52" } ], "type": { @@ -44340,7 +44340,7 @@ "fileName": "dock/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L58" } ], "type": { @@ -44380,7 +44380,7 @@ "fileName": "dock/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L64" } ], "type": { @@ -44409,7 +44409,7 @@ "fileName": "dock/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L68" } ], "type": { @@ -44453,7 +44453,7 @@ "fileName": "dock/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L74" } ], "type": { @@ -44493,7 +44493,7 @@ "fileName": "dock/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L80" } ], "type": { @@ -44533,7 +44533,7 @@ "fileName": "dock/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L86" } ], "type": { @@ -44573,7 +44573,7 @@ "fileName": "dock/index.d.ts", "line": 92, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L92" } ], "type": { @@ -44613,7 +44613,7 @@ "fileName": "dock/index.d.ts", "line": 98, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L98" } ], "type": { @@ -44639,7 +44639,7 @@ "fileName": "dock/index.d.ts", "line": 68, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L68" } ] } @@ -44662,7 +44662,7 @@ "fileName": "dock/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L46" } ] } @@ -44681,7 +44681,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -44706,7 +44706,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -44744,7 +44744,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -44784,7 +44784,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -44811,7 +44811,7 @@ "fileName": "dock/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L13" } ], "extendedTypes": [ @@ -44845,7 +44845,7 @@ "fileName": "dock/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dock/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dock/index.d.ts#L1" } ] }, @@ -44892,7 +44892,7 @@ "fileName": "drawer/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L17" } ], "type": { @@ -44936,7 +44936,7 @@ "fileName": "drawer/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L23" } ], "type": { @@ -44976,7 +44976,7 @@ "fileName": "drawer/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L29" } ], "type": { @@ -45016,7 +45016,7 @@ "fileName": "drawer/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L35" } ], "type": { @@ -45056,7 +45056,7 @@ "fileName": "drawer/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L41" } ], "type": { @@ -45096,7 +45096,7 @@ "fileName": "drawer/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L47" } ], "type": { @@ -45122,7 +45122,7 @@ "fileName": "drawer/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L17" } ] } @@ -45149,7 +45149,7 @@ "fileName": "drawer/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L52" } ], "type": { @@ -45193,7 +45193,7 @@ "fileName": "drawer/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L58" } ], "type": { @@ -45215,7 +45215,7 @@ "fileName": "drawer/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L52" } ] } @@ -45242,7 +45242,7 @@ "fileName": "drawer/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L63" } ], "type": { @@ -45286,7 +45286,7 @@ "fileName": "drawer/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L69" } ], "type": { @@ -45326,7 +45326,7 @@ "fileName": "drawer/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L75" } ], "type": { @@ -45349,7 +45349,7 @@ "fileName": "drawer/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L63" } ] } @@ -45376,7 +45376,7 @@ "fileName": "drawer/index.d.ts", "line": 80, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L80" } ], "type": { @@ -45420,7 +45420,7 @@ "fileName": "drawer/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L86" } ], "type": { @@ -45442,7 +45442,7 @@ "fileName": "drawer/index.d.ts", "line": 80, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L80" } ] } @@ -45461,7 +45461,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -45486,7 +45486,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -45524,7 +45524,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -45564,7 +45564,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -45593,7 +45593,7 @@ "fileName": "drawer/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L13" } ], "extendedTypes": [ @@ -45627,7 +45627,7 @@ "fileName": "drawer/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/drawer/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/drawer/index.d.ts#L1" } ] }, @@ -45674,7 +45674,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" } ], "type": { @@ -45718,7 +45718,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" } ], "type": { @@ -45758,7 +45758,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" } ], "type": { @@ -45798,7 +45798,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" } ], "type": { @@ -45838,7 +45838,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" } ], "type": { @@ -45878,7 +45878,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" } ], "type": { @@ -45904,7 +45904,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" } ] } @@ -45931,7 +45931,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" } ], "type": { @@ -45975,7 +45975,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" } ], "type": { @@ -46015,7 +46015,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" } ], "type": { @@ -46038,7 +46038,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" } ] } @@ -46065,7 +46065,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" } ], "type": { @@ -46109,7 +46109,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" } ], "type": { @@ -46149,7 +46149,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" } ], "type": { @@ -46172,7 +46172,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" } ] } @@ -46199,7 +46199,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" } ], "type": { @@ -46243,7 +46243,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" } ], "type": { @@ -46265,7 +46265,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 86, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" } ] } @@ -46292,7 +46292,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 97, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" } ], "type": { @@ -46336,7 +46336,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" } ], "type": { @@ -46376,7 +46376,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" } ], "type": { @@ -46399,7 +46399,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 97, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" } ] } @@ -46418,7 +46418,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -46443,7 +46443,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -46481,7 +46481,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -46521,7 +46521,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -46551,7 +46551,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" } ], "extendedTypes": [ @@ -46585,7 +46585,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" } ] }, @@ -46632,7 +46632,7 @@ "fileName": "editor/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L17" } ], "type": { @@ -46676,7 +46676,7 @@ "fileName": "editor/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L23" } ], "type": { @@ -46716,7 +46716,7 @@ "fileName": "editor/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L29" } ], "type": { @@ -46756,7 +46756,7 @@ "fileName": "editor/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L35" } ], "type": { @@ -46780,7 +46780,7 @@ "fileName": "editor/index.d.ts", "line": 17, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L17" } ] } @@ -46807,7 +46807,7 @@ "fileName": "editor/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L40" } ], "type": { @@ -46851,7 +46851,7 @@ "fileName": "editor/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L46" } ], "type": { @@ -46891,7 +46891,7 @@ "fileName": "editor/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L52" } ], "type": { @@ -46931,7 +46931,7 @@ "fileName": "editor/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L58" } ], "type": { @@ -46955,7 +46955,7 @@ "fileName": "editor/index.d.ts", "line": 40, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L40" } ] } @@ -46982,7 +46982,7 @@ "fileName": "editor/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L63" } ], "type": { @@ -47026,7 +47026,7 @@ "fileName": "editor/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L69" } ], "type": { @@ -47066,7 +47066,7 @@ "fileName": "editor/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L75" } ], "type": { @@ -47106,7 +47106,7 @@ "fileName": "editor/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L81" } ], "type": { @@ -47146,7 +47146,7 @@ "fileName": "editor/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L87" } ], "type": { @@ -47186,7 +47186,7 @@ "fileName": "editor/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L93" } ], "type": { @@ -47226,7 +47226,7 @@ "fileName": "editor/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L99" } ], "type": { @@ -47253,7 +47253,7 @@ "fileName": "editor/index.d.ts", "line": 63, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L63" } ] } @@ -47280,7 +47280,7 @@ "fileName": "editor/index.d.ts", "line": 104, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L104" } ], "type": { @@ -47324,7 +47324,7 @@ "fileName": "editor/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L110" } ], "type": { @@ -47364,7 +47364,7 @@ "fileName": "editor/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L116" } ], "type": { @@ -47404,7 +47404,7 @@ "fileName": "editor/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L122" } ], "type": { @@ -47444,7 +47444,7 @@ "fileName": "editor/index.d.ts", "line": 128, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L128" } ], "type": { @@ -47484,7 +47484,7 @@ "fileName": "editor/index.d.ts", "line": 134, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L134" } ], "type": { @@ -47510,7 +47510,7 @@ "fileName": "editor/index.d.ts", "line": 104, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L104" } ] } @@ -47537,7 +47537,7 @@ "fileName": "editor/index.d.ts", "line": 139, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L139" } ], "type": { @@ -47581,7 +47581,7 @@ "fileName": "editor/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L145" } ], "type": { @@ -47621,7 +47621,7 @@ "fileName": "editor/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L151" } ], "type": { @@ -47661,7 +47661,7 @@ "fileName": "editor/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L157" } ], "type": { @@ -47701,7 +47701,7 @@ "fileName": "editor/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L163" } ], "type": { @@ -47726,7 +47726,7 @@ "fileName": "editor/index.d.ts", "line": 139, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L139" } ] } @@ -47745,7 +47745,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -47770,7 +47770,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -47808,7 +47808,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -47848,7 +47848,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -47878,7 +47878,7 @@ "fileName": "editor/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L13" } ], "extendedTypes": [ @@ -47912,7 +47912,7 @@ "fileName": "editor/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/editor/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/editor/index.d.ts#L1" } ] }, @@ -47959,7 +47959,7 @@ "fileName": "fieldset/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L17" } ], "type": { @@ -48003,7 +48003,7 @@ "fileName": "fieldset/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L23" } ], "type": { @@ -48043,7 +48043,7 @@ "fileName": "fieldset/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L29" } ], "type": { @@ -48083,7 +48083,7 @@ "fileName": "fieldset/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L35" } ], "type": { @@ -48123,7 +48123,7 @@ "fileName": "fieldset/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L41" } ], "type": { @@ -48163,7 +48163,7 @@ "fileName": "fieldset/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L47" } ], "type": { @@ -48203,7 +48203,7 @@ "fileName": "fieldset/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L53" } ], "type": { @@ -48230,7 +48230,7 @@ "fileName": "fieldset/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L17" } ] } @@ -48257,7 +48257,7 @@ "fileName": "fieldset/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L58" } ], "type": { @@ -48301,7 +48301,7 @@ "fileName": "fieldset/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L64" } ], "type": { @@ -48341,7 +48341,7 @@ "fileName": "fieldset/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L70" } ], "type": { @@ -48381,7 +48381,7 @@ "fileName": "fieldset/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L76" } ], "type": { @@ -48421,7 +48421,7 @@ "fileName": "fieldset/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L82" } ], "type": { @@ -48461,7 +48461,7 @@ "fileName": "fieldset/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L88" } ], "type": { @@ -48501,7 +48501,7 @@ "fileName": "fieldset/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L94" } ], "type": { @@ -48541,7 +48541,7 @@ "fileName": "fieldset/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L100" } ], "type": { @@ -48581,7 +48581,7 @@ "fileName": "fieldset/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L106" } ], "type": { @@ -48621,7 +48621,7 @@ "fileName": "fieldset/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L112" } ], "type": { @@ -48661,7 +48661,7 @@ "fileName": "fieldset/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L118" } ], "type": { @@ -48690,7 +48690,7 @@ "fileName": "fieldset/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L122" } ], "type": { @@ -48734,7 +48734,7 @@ "fileName": "fieldset/index.d.ts", "line": 128, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L128" } ], "type": { @@ -48774,7 +48774,7 @@ "fileName": "fieldset/index.d.ts", "line": 134, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L134" } ], "type": { @@ -48814,7 +48814,7 @@ "fileName": "fieldset/index.d.ts", "line": 140, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L140" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L140" } ], "type": { @@ -48854,7 +48854,7 @@ "fileName": "fieldset/index.d.ts", "line": 146, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L146" } ], "type": { @@ -48894,7 +48894,7 @@ "fileName": "fieldset/index.d.ts", "line": 152, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L152" } ], "type": { @@ -48920,7 +48920,7 @@ "fileName": "fieldset/index.d.ts", "line": 122, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L122" } ] } @@ -48950,7 +48950,7 @@ "fileName": "fieldset/index.d.ts", "line": 58, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L58" } ] } @@ -48977,7 +48977,7 @@ "fileName": "fieldset/index.d.ts", "line": 158, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L158" } ], "type": { @@ -49021,7 +49021,7 @@ "fileName": "fieldset/index.d.ts", "line": 164, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L164" } ], "type": { @@ -49061,7 +49061,7 @@ "fileName": "fieldset/index.d.ts", "line": 170, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L170" } ], "type": { @@ -49084,7 +49084,7 @@ "fileName": "fieldset/index.d.ts", "line": 158, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L158" } ] } @@ -49111,7 +49111,7 @@ "fileName": "fieldset/index.d.ts", "line": 175, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L175" } ], "type": { @@ -49155,7 +49155,7 @@ "fileName": "fieldset/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L181" } ], "type": { @@ -49177,7 +49177,7 @@ "fileName": "fieldset/index.d.ts", "line": 175, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L175" } ] } @@ -49196,7 +49196,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -49221,7 +49221,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -49259,7 +49259,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -49299,7 +49299,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -49328,7 +49328,7 @@ "fileName": "fieldset/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L13" } ], "extendedTypes": [ @@ -49362,7 +49362,7 @@ "fileName": "fieldset/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fieldset/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fieldset/index.d.ts#L1" } ] }, @@ -49409,7 +49409,7 @@ "fileName": "fileupload/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L17" } ], "type": { @@ -49453,7 +49453,7 @@ "fileName": "fileupload/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L23" } ], "type": { @@ -49493,7 +49493,7 @@ "fileName": "fileupload/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L29" } ], "type": { @@ -49533,7 +49533,7 @@ "fileName": "fileupload/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L35" } ], "type": { @@ -49573,7 +49573,7 @@ "fileName": "fileupload/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L41" } ], "type": { @@ -49613,7 +49613,7 @@ "fileName": "fileupload/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L47" } ], "type": { @@ -49639,7 +49639,7 @@ "fileName": "fileupload/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L17" } ] } @@ -49666,7 +49666,7 @@ "fileName": "fileupload/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L52" } ], "type": { @@ -49710,7 +49710,7 @@ "fileName": "fileupload/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L58" } ], "type": { @@ -49750,7 +49750,7 @@ "fileName": "fileupload/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L64" } ], "type": { @@ -49790,7 +49790,7 @@ "fileName": "fileupload/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L70" } ], "type": { @@ -49830,7 +49830,7 @@ "fileName": "fileupload/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L76" } ], "type": { @@ -49870,7 +49870,7 @@ "fileName": "fileupload/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L82" } ], "type": { @@ -49910,7 +49910,7 @@ "fileName": "fileupload/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L88" } ], "type": { @@ -49937,7 +49937,7 @@ "fileName": "fileupload/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L52" } ] } @@ -49964,7 +49964,7 @@ "fileName": "fileupload/index.d.ts", "line": 93, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L93" } ], "type": { @@ -50008,7 +50008,7 @@ "fileName": "fileupload/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L99" } ], "type": { @@ -50048,7 +50048,7 @@ "fileName": "fileupload/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L105" } ], "type": { @@ -50071,7 +50071,7 @@ "fileName": "fileupload/index.d.ts", "line": 93, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L93" } ] } @@ -50098,7 +50098,7 @@ "fileName": "fileupload/index.d.ts", "line": 110, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L110" } ], "type": { @@ -50142,7 +50142,7 @@ "fileName": "fileupload/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L116" } ], "type": { @@ -50182,7 +50182,7 @@ "fileName": "fileupload/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L122" } ], "type": { @@ -50222,7 +50222,7 @@ "fileName": "fileupload/index.d.ts", "line": 128, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L128" } ], "type": { @@ -50251,7 +50251,7 @@ "fileName": "fileupload/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L132" } ], "type": { @@ -50295,7 +50295,7 @@ "fileName": "fileupload/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L138" } ], "type": { @@ -50317,7 +50317,7 @@ "fileName": "fileupload/index.d.ts", "line": 132, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L132" } ] } @@ -50340,7 +50340,7 @@ "fileName": "fileupload/index.d.ts", "line": 110, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L110" } ] } @@ -50367,7 +50367,7 @@ "fileName": "fileupload/index.d.ts", "line": 144, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L144" } ], "type": { @@ -50411,7 +50411,7 @@ "fileName": "fileupload/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L150" } ], "type": { @@ -50433,7 +50433,7 @@ "fileName": "fileupload/index.d.ts", "line": 144, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L144" } ] } @@ -50460,7 +50460,7 @@ "fileName": "fileupload/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L155" } ], "type": { @@ -50504,7 +50504,7 @@ "fileName": "fileupload/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L161" } ], "type": { @@ -50526,7 +50526,7 @@ "fileName": "fileupload/index.d.ts", "line": 155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L155" } ] } @@ -50545,7 +50545,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -50570,7 +50570,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -50608,7 +50608,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -50648,7 +50648,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -50679,7 +50679,7 @@ "fileName": "fileupload/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L13" } ], "extendedTypes": [ @@ -50713,7 +50713,7 @@ "fileName": "fileupload/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/fileupload/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/fileupload/index.d.ts#L1" } ] }, @@ -50760,7 +50760,7 @@ "fileName": "floatlabel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L17" } ], "type": { @@ -50804,7 +50804,7 @@ "fileName": "floatlabel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L23" } ], "type": { @@ -50844,7 +50844,7 @@ "fileName": "floatlabel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L29" } ], "type": { @@ -50884,7 +50884,7 @@ "fileName": "floatlabel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L35" } ], "type": { @@ -50924,7 +50924,7 @@ "fileName": "floatlabel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L41" } ], "type": { @@ -50949,7 +50949,7 @@ "fileName": "floatlabel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L17" } ] } @@ -50968,7 +50968,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -50993,7 +50993,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -51031,7 +51031,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -51071,7 +51071,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -51097,7 +51097,7 @@ "fileName": "floatlabel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L13" } ], "extendedTypes": [ @@ -51131,7 +51131,7 @@ "fileName": "floatlabel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/floatlabel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/floatlabel/index.d.ts#L1" } ] }, @@ -51178,7 +51178,7 @@ "fileName": "galleria/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L17" } ], "type": { @@ -51222,7 +51222,7 @@ "fileName": "galleria/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L23" } ], "type": { @@ -51262,7 +51262,7 @@ "fileName": "galleria/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L29" } ], "type": { @@ -51302,7 +51302,7 @@ "fileName": "galleria/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L35" } ], "type": { @@ -51342,7 +51342,7 @@ "fileName": "galleria/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L41" } ], "type": { @@ -51367,7 +51367,7 @@ "fileName": "galleria/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L17" } ] } @@ -51394,7 +51394,7 @@ "fileName": "galleria/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L46" } ], "type": { @@ -51438,7 +51438,7 @@ "fileName": "galleria/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L52" } ], "type": { @@ -51478,7 +51478,7 @@ "fileName": "galleria/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L58" } ], "type": { @@ -51518,7 +51518,7 @@ "fileName": "galleria/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L64" } ], "type": { @@ -51558,7 +51558,7 @@ "fileName": "galleria/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L70" } ], "type": { @@ -51598,7 +51598,7 @@ "fileName": "galleria/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L76" } ], "type": { @@ -51638,7 +51638,7 @@ "fileName": "galleria/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L82" } ], "type": { @@ -51667,7 +51667,7 @@ "fileName": "galleria/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L86" } ], "type": { @@ -51711,7 +51711,7 @@ "fileName": "galleria/index.d.ts", "line": 92, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L92" } ], "type": { @@ -51733,7 +51733,7 @@ "fileName": "galleria/index.d.ts", "line": 86, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L86" } ] } @@ -51760,7 +51760,7 @@ "fileName": "galleria/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L97" } ], "type": { @@ -51804,7 +51804,7 @@ "fileName": "galleria/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L103" } ], "type": { @@ -51826,7 +51826,7 @@ "fileName": "galleria/index.d.ts", "line": 97, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L97" } ] } @@ -51853,7 +51853,7 @@ "fileName": "galleria/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L108" } ], "type": { @@ -51897,7 +51897,7 @@ "fileName": "galleria/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L114" } ], "type": { @@ -51937,7 +51937,7 @@ "fileName": "galleria/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L120" } ], "type": { @@ -51977,7 +51977,7 @@ "fileName": "galleria/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L126" } ], "type": { @@ -52017,7 +52017,7 @@ "fileName": "galleria/index.d.ts", "line": 132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L132" } ], "type": { @@ -52057,7 +52057,7 @@ "fileName": "galleria/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L138" } ], "type": { @@ -52083,7 +52083,7 @@ "fileName": "galleria/index.d.ts", "line": 108, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L108" } ] } @@ -52111,7 +52111,7 @@ "fileName": "galleria/index.d.ts", "line": 46, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L46" } ] } @@ -52138,7 +52138,7 @@ "fileName": "galleria/index.d.ts", "line": 144, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L144" } ], "type": { @@ -52182,7 +52182,7 @@ "fileName": "galleria/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L150" } ], "type": { @@ -52204,7 +52204,7 @@ "fileName": "galleria/index.d.ts", "line": 144, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L144" } ] } @@ -52231,7 +52231,7 @@ "fileName": "galleria/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L155" } ], "type": { @@ -52275,7 +52275,7 @@ "fileName": "galleria/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L161" } ], "type": { @@ -52315,7 +52315,7 @@ "fileName": "galleria/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L167" } ], "type": { @@ -52338,7 +52338,7 @@ "fileName": "galleria/index.d.ts", "line": 155, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L155" } ] } @@ -52365,7 +52365,7 @@ "fileName": "galleria/index.d.ts", "line": 172, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L172" } ], "type": { @@ -52409,7 +52409,7 @@ "fileName": "galleria/index.d.ts", "line": 178, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L178" } ], "type": { @@ -52449,7 +52449,7 @@ "fileName": "galleria/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L184" } ], "type": { @@ -52489,7 +52489,7 @@ "fileName": "galleria/index.d.ts", "line": 190, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L190" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L190" } ], "type": { @@ -52518,7 +52518,7 @@ "fileName": "galleria/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L194" } ], "type": { @@ -52562,7 +52562,7 @@ "fileName": "galleria/index.d.ts", "line": 200, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L200" } ], "type": { @@ -52602,7 +52602,7 @@ "fileName": "galleria/index.d.ts", "line": 206, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L206" } ], "type": { @@ -52642,7 +52642,7 @@ "fileName": "galleria/index.d.ts", "line": 212, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L212" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L212" } ], "type": { @@ -52682,7 +52682,7 @@ "fileName": "galleria/index.d.ts", "line": 218, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L218" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L218" } ], "type": { @@ -52722,7 +52722,7 @@ "fileName": "galleria/index.d.ts", "line": 224, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L224" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L224" } ], "type": { @@ -52748,7 +52748,7 @@ "fileName": "galleria/index.d.ts", "line": 194, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L194" } ] } @@ -52786,7 +52786,7 @@ "fileName": "galleria/index.d.ts", "line": 231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L231" } ], "type": { @@ -52826,7 +52826,7 @@ "fileName": "galleria/index.d.ts", "line": 237, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L237" } ], "type": { @@ -52866,7 +52866,7 @@ "fileName": "galleria/index.d.ts", "line": 243, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L243" } ], "type": { @@ -52894,7 +52894,7 @@ "fileName": "galleria/index.d.ts", "line": 172, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L172" } ] } @@ -52921,7 +52921,7 @@ "fileName": "galleria/index.d.ts", "line": 248, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L248" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L248" } ], "type": { @@ -52965,7 +52965,7 @@ "fileName": "galleria/index.d.ts", "line": 254, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L254" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L254" } ], "type": { @@ -52987,7 +52987,7 @@ "fileName": "galleria/index.d.ts", "line": 248, "character": 29, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L248" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L248" } ] } @@ -53014,7 +53014,7 @@ "fileName": "galleria/index.d.ts", "line": 259, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L259" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L259" } ], "type": { @@ -53058,7 +53058,7 @@ "fileName": "galleria/index.d.ts", "line": 265, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L265" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L265" } ], "type": { @@ -53098,7 +53098,7 @@ "fileName": "galleria/index.d.ts", "line": 271, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L271" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L271" } ], "type": { @@ -53138,7 +53138,7 @@ "fileName": "galleria/index.d.ts", "line": 277, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L277" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L277" } ], "type": { @@ -53162,7 +53162,7 @@ "fileName": "galleria/index.d.ts", "line": 259, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L259" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L259" } ] } @@ -53189,7 +53189,7 @@ "fileName": "galleria/index.d.ts", "line": 282, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L282" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L282" } ], "type": { @@ -53233,7 +53233,7 @@ "fileName": "galleria/index.d.ts", "line": 288, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L288" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L288" } ], "type": { @@ -53273,7 +53273,7 @@ "fileName": "galleria/index.d.ts", "line": 294, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L294" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L294" } ], "type": { @@ -53296,7 +53296,7 @@ "fileName": "galleria/index.d.ts", "line": 282, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L282" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L282" } ] } @@ -53323,7 +53323,7 @@ "fileName": "galleria/index.d.ts", "line": 299, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L299" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L299" } ], "type": { @@ -53367,7 +53367,7 @@ "fileName": "galleria/index.d.ts", "line": 305, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L305" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L305" } ], "type": { @@ -53407,7 +53407,7 @@ "fileName": "galleria/index.d.ts", "line": 311, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L311" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L311" } ], "type": { @@ -53447,7 +53447,7 @@ "fileName": "galleria/index.d.ts", "line": 317, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L317" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L317" } ], "type": { @@ -53487,7 +53487,7 @@ "fileName": "galleria/index.d.ts", "line": 323, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L323" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L323" } ], "type": { @@ -53516,7 +53516,7 @@ "fileName": "galleria/index.d.ts", "line": 327, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L327" } ], "type": { @@ -53560,7 +53560,7 @@ "fileName": "galleria/index.d.ts", "line": 333, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L333" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L333" } ], "type": { @@ -53600,7 +53600,7 @@ "fileName": "galleria/index.d.ts", "line": 339, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L339" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L339" } ], "type": { @@ -53640,7 +53640,7 @@ "fileName": "galleria/index.d.ts", "line": 345, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L345" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L345" } ], "type": { @@ -53680,7 +53680,7 @@ "fileName": "galleria/index.d.ts", "line": 351, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L351" } ], "type": { @@ -53720,7 +53720,7 @@ "fileName": "galleria/index.d.ts", "line": 357, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L357" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L357" } ], "type": { @@ -53746,7 +53746,7 @@ "fileName": "galleria/index.d.ts", "line": 327, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L327" } ] } @@ -53784,7 +53784,7 @@ "fileName": "galleria/index.d.ts", "line": 364, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L364" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L364" } ], "type": { @@ -53824,7 +53824,7 @@ "fileName": "galleria/index.d.ts", "line": 370, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L370" } ], "type": { @@ -53852,7 +53852,7 @@ "fileName": "galleria/index.d.ts", "line": 299, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L299" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L299" } ] } @@ -53879,7 +53879,7 @@ "fileName": "galleria/index.d.ts", "line": 375, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L375" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L375" } ], "type": { @@ -53923,7 +53923,7 @@ "fileName": "galleria/index.d.ts", "line": 381, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L381" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L381" } ], "type": { @@ -53945,7 +53945,7 @@ "fileName": "galleria/index.d.ts", "line": 375, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L375" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L375" } ] } @@ -53972,7 +53972,7 @@ "fileName": "galleria/index.d.ts", "line": 386, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L386" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L386" } ], "type": { @@ -54016,7 +54016,7 @@ "fileName": "galleria/index.d.ts", "line": 392, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L392" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L392" } ], "type": { @@ -54056,7 +54056,7 @@ "fileName": "galleria/index.d.ts", "line": 398, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L398" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L398" } ], "type": { @@ -54096,7 +54096,7 @@ "fileName": "galleria/index.d.ts", "line": 404, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L404" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L404" } ], "type": { @@ -54120,7 +54120,7 @@ "fileName": "galleria/index.d.ts", "line": 386, "character": 27, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L386" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L386" } ] } @@ -54147,7 +54147,7 @@ "fileName": "galleria/index.d.ts", "line": 409, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L409" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L409" } ], "type": { @@ -54191,7 +54191,7 @@ "fileName": "galleria/index.d.ts", "line": 415, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L415" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L415" } ], "type": { @@ -54231,7 +54231,7 @@ "fileName": "galleria/index.d.ts", "line": 421, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L421" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L421" } ], "type": { @@ -54254,7 +54254,7 @@ "fileName": "galleria/index.d.ts", "line": 409, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L409" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L409" } ] } @@ -54281,7 +54281,7 @@ "fileName": "galleria/index.d.ts", "line": 426, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L426" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L426" } ], "type": { @@ -54325,7 +54325,7 @@ "fileName": "galleria/index.d.ts", "line": 432, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L432" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L432" } ], "type": { @@ -54365,7 +54365,7 @@ "fileName": "galleria/index.d.ts", "line": 438, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L438" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L438" } ], "type": { @@ -54405,7 +54405,7 @@ "fileName": "galleria/index.d.ts", "line": 444, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L444" } ], "type": { @@ -54445,7 +54445,7 @@ "fileName": "galleria/index.d.ts", "line": 450, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L450" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L450" } ], "type": { @@ -54485,7 +54485,7 @@ "fileName": "galleria/index.d.ts", "line": 456, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L456" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L456" } ], "type": { @@ -54525,7 +54525,7 @@ "fileName": "galleria/index.d.ts", "line": 462, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L462" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L462" } ], "type": { @@ -54565,7 +54565,7 @@ "fileName": "galleria/index.d.ts", "line": 468, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L468" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L468" } ], "type": { @@ -54594,7 +54594,7 @@ "fileName": "galleria/index.d.ts", "line": 472, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L472" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L472" } ], "type": { @@ -54638,7 +54638,7 @@ "fileName": "galleria/index.d.ts", "line": 478, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L478" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L478" } ], "type": { @@ -54678,7 +54678,7 @@ "fileName": "galleria/index.d.ts", "line": 484, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L484" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L484" } ], "type": { @@ -54718,7 +54718,7 @@ "fileName": "galleria/index.d.ts", "line": 490, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L490" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L490" } ], "type": { @@ -54758,7 +54758,7 @@ "fileName": "galleria/index.d.ts", "line": 496, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L496" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L496" } ], "type": { @@ -54798,7 +54798,7 @@ "fileName": "galleria/index.d.ts", "line": 502, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L502" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L502" } ], "type": { @@ -54824,7 +54824,7 @@ "fileName": "galleria/index.d.ts", "line": 472, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L472" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L472" } ] } @@ -54851,7 +54851,7 @@ "fileName": "galleria/index.d.ts", "line": 426, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L426" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L426" } ] } @@ -54878,7 +54878,7 @@ "fileName": "galleria/index.d.ts", "line": 508, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L508" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L508" } ], "type": { @@ -54922,7 +54922,7 @@ "fileName": "galleria/index.d.ts", "line": 514, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L514" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L514" } ], "type": { @@ -54944,7 +54944,7 @@ "fileName": "galleria/index.d.ts", "line": 508, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L508" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L508" } ] } @@ -54963,7 +54963,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -54988,7 +54988,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -55026,7 +55026,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -55066,7 +55066,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -55105,7 +55105,7 @@ "fileName": "galleria/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L13" } ], "extendedTypes": [ @@ -55139,7 +55139,7 @@ "fileName": "galleria/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/galleria/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/galleria/index.d.ts#L1" } ] }, @@ -55186,7 +55186,7 @@ "fileName": "iconfield/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/iconfield/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/iconfield/index.d.ts#L17" } ], "type": { @@ -55230,7 +55230,7 @@ "fileName": "iconfield/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/iconfield/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/iconfield/index.d.ts#L23" } ], "type": { @@ -55252,7 +55252,7 @@ "fileName": "iconfield/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/iconfield/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/iconfield/index.d.ts#L17" } ] } @@ -55271,7 +55271,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -55296,7 +55296,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -55334,7 +55334,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -55374,7 +55374,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -55400,7 +55400,7 @@ "fileName": "iconfield/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/iconfield/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/iconfield/index.d.ts#L13" } ], "extendedTypes": [ @@ -55434,7 +55434,7 @@ "fileName": "iconfield/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/iconfield/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/iconfield/index.d.ts#L1" } ] }, @@ -55481,7 +55481,7 @@ "fileName": "image/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L17" } ], "type": { @@ -55525,7 +55525,7 @@ "fileName": "image/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L23" } ], "type": { @@ -55547,7 +55547,7 @@ "fileName": "image/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L17" } ] } @@ -55574,7 +55574,7 @@ "fileName": "image/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L28" } ], "type": { @@ -55607,7 +55607,7 @@ "fileName": "image/index.d.ts", "line": 32, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L32" } ], "type": { @@ -55651,7 +55651,7 @@ "fileName": "image/index.d.ts", "line": 38, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L38" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L38" } ], "type": { @@ -55673,7 +55673,7 @@ "fileName": "image/index.d.ts", "line": 32, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L32" } ] } @@ -55700,7 +55700,7 @@ "fileName": "image/index.d.ts", "line": 43, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L43" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L43" } ], "type": { @@ -55744,7 +55744,7 @@ "fileName": "image/index.d.ts", "line": 49, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L49" } ], "type": { @@ -55784,7 +55784,7 @@ "fileName": "image/index.d.ts", "line": 55, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L55" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L55" } ], "type": { @@ -55807,7 +55807,7 @@ "fileName": "image/index.d.ts", "line": 43, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L43" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L43" } ] } @@ -55828,7 +55828,7 @@ "fileName": "image/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L28" } ] } @@ -55855,7 +55855,7 @@ "fileName": "image/index.d.ts", "line": 61, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L61" } ], "type": { @@ -55888,7 +55888,7 @@ "fileName": "image/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L65" } ], "type": { @@ -55932,7 +55932,7 @@ "fileName": "image/index.d.ts", "line": 71, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L71" } ], "type": { @@ -55972,7 +55972,7 @@ "fileName": "image/index.d.ts", "line": 77, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L77" } ], "type": { @@ -56012,7 +56012,7 @@ "fileName": "image/index.d.ts", "line": 83, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L83" } ], "type": { @@ -56052,7 +56052,7 @@ "fileName": "image/index.d.ts", "line": 89, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L89" } ], "type": { @@ -56077,7 +56077,7 @@ "fileName": "image/index.d.ts", "line": 65, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L65" } ] } @@ -56115,7 +56115,7 @@ "fileName": "image/index.d.ts", "line": 96, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L96" } ], "type": { @@ -56155,7 +56155,7 @@ "fileName": "image/index.d.ts", "line": 102, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L102" } ], "type": { @@ -56195,7 +56195,7 @@ "fileName": "image/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L108" } ], "type": { @@ -56235,7 +56235,7 @@ "fileName": "image/index.d.ts", "line": 114, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L114" } ], "type": { @@ -56275,7 +56275,7 @@ "fileName": "image/index.d.ts", "line": 120, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L120" } ], "type": { @@ -56315,7 +56315,7 @@ "fileName": "image/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L126" } ], "type": { @@ -56355,7 +56355,7 @@ "fileName": "image/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L132" } ], "type": { @@ -56384,7 +56384,7 @@ "fileName": "image/index.d.ts", "line": 61, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L61" } ] } @@ -56411,7 +56411,7 @@ "fileName": "image/index.d.ts", "line": 137, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L137" } ], "type": { @@ -56455,7 +56455,7 @@ "fileName": "image/index.d.ts", "line": 143, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L143" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L143" } ], "type": { @@ -56495,7 +56495,7 @@ "fileName": "image/index.d.ts", "line": 149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L149" } ], "type": { @@ -56535,7 +56535,7 @@ "fileName": "image/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L155" } ], "type": { @@ -56575,7 +56575,7 @@ "fileName": "image/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L161" } ], "type": { @@ -56615,7 +56615,7 @@ "fileName": "image/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L167" } ], "type": { @@ -56655,7 +56655,7 @@ "fileName": "image/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L173" } ], "type": { @@ -56684,7 +56684,7 @@ "fileName": "image/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L177" } ], "type": { @@ -56728,7 +56728,7 @@ "fileName": "image/index.d.ts", "line": 183, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L183" } ], "type": { @@ -56768,7 +56768,7 @@ "fileName": "image/index.d.ts", "line": 189, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L189" } ], "type": { @@ -56808,7 +56808,7 @@ "fileName": "image/index.d.ts", "line": 195, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L195" } ], "type": { @@ -56848,7 +56848,7 @@ "fileName": "image/index.d.ts", "line": 201, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L201" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L201" } ], "type": { @@ -56888,7 +56888,7 @@ "fileName": "image/index.d.ts", "line": 207, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L207" } ], "type": { @@ -56914,7 +56914,7 @@ "fileName": "image/index.d.ts", "line": 177, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L177" } ] } @@ -56940,7 +56940,7 @@ "fileName": "image/index.d.ts", "line": 137, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L137" } ] } @@ -56959,7 +56959,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -56984,7 +56984,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -57022,7 +57022,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -57062,7 +57062,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -57091,7 +57091,7 @@ "fileName": "image/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L13" } ], "extendedTypes": [ @@ -57125,7 +57125,7 @@ "fileName": "image/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/image/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/image/index.d.ts#L1" } ] }, @@ -57164,7 +57164,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -57189,7 +57189,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -57229,7 +57229,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -57271,7 +57271,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -57291,7 +57291,7 @@ "fileName": "index.d.ts", "line": 8, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L8" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L8" } ], "typeParameters": [ @@ -57756,7 +57756,7 @@ "fileName": "index.d.ts", "line": 16, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L16" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L16" } ], "type": { @@ -57777,7 +57777,7 @@ "fileName": "index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L17" } ], "type": { @@ -57798,7 +57798,7 @@ "fileName": "index.d.ts", "line": 18, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L18" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L18" } ], "type": { @@ -57819,7 +57819,7 @@ "fileName": "index.d.ts", "line": 19, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L19" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L19" } ], "type": { @@ -57840,7 +57840,7 @@ "fileName": "index.d.ts", "line": 20, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L20" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L20" } ], "type": { @@ -57861,7 +57861,7 @@ "fileName": "index.d.ts", "line": 21, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L21" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L21" } ], "type": { @@ -57882,7 +57882,7 @@ "fileName": "index.d.ts", "line": 22, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L22" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L22" } ], "type": { @@ -57903,7 +57903,7 @@ "fileName": "index.d.ts", "line": 23, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L23" } ], "type": { @@ -57924,7 +57924,7 @@ "fileName": "index.d.ts", "line": 24, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L24" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L24" } ], "type": { @@ -57945,7 +57945,7 @@ "fileName": "index.d.ts", "line": 25, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L25" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L25" } ], "type": { @@ -57966,7 +57966,7 @@ "fileName": "index.d.ts", "line": 26, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L26" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L26" } ], "type": { @@ -57998,7 +57998,7 @@ "fileName": "index.d.ts", "line": 15, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L15" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L15" } ] }, @@ -58022,7 +58022,7 @@ "fileName": "index.d.ts", "line": 30, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L30" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L30" } ], "type": { @@ -58047,7 +58047,7 @@ "fileName": "index.d.ts", "line": 31, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L31" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L31" } ], "type": { @@ -58068,7 +58068,7 @@ "fileName": "index.d.ts", "line": 32, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L32" } ], "type": { @@ -58089,7 +58089,7 @@ "fileName": "index.d.ts", "line": 33, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L33" } ], "type": { @@ -58110,7 +58110,7 @@ "fileName": "index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L34" } ], "type": { @@ -58131,7 +58131,7 @@ "fileName": "index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L35" } ], "type": { @@ -58152,7 +58152,7 @@ "fileName": "index.d.ts", "line": 36, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L36" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L36" } ], "type": { @@ -58179,7 +58179,7 @@ "fileName": "index.d.ts", "line": 30, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L30" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L30" } ] } @@ -58198,7 +58198,7 @@ "fileName": "index.d.ts", "line": 38, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L38" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L38" } ], "type": { @@ -58221,7 +58221,7 @@ "fileName": "index.d.ts", "line": 39, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L39" } ], "type": { @@ -58244,7 +58244,7 @@ "fileName": "index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L40" } ], "type": { @@ -58267,7 +58267,7 @@ "fileName": "index.d.ts", "line": 41, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L41" } ], "type": { @@ -58290,7 +58290,7 @@ "fileName": "index.d.ts", "line": 42, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L42" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L42" } ], "type": { @@ -58313,7 +58313,7 @@ "fileName": "index.d.ts", "line": 43, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L43" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L43" } ], "type": { @@ -58336,7 +58336,7 @@ "fileName": "index.d.ts", "line": 44, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L44" } ], "type": { @@ -58359,7 +58359,7 @@ "fileName": "index.d.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L45" } ], "type": { @@ -58382,7 +58382,7 @@ "fileName": "index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L46" } ], "type": { @@ -58405,7 +58405,7 @@ "fileName": "index.d.ts", "line": 47, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L47" } ], "type": { @@ -58428,7 +58428,7 @@ "fileName": "index.d.ts", "line": 48, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L48" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L48" } ], "type": { @@ -58451,7 +58451,7 @@ "fileName": "index.d.ts", "line": 49, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L49" } ], "type": { @@ -58474,7 +58474,7 @@ "fileName": "index.d.ts", "line": 50, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L50" } ], "type": { @@ -58497,7 +58497,7 @@ "fileName": "index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L51" } ], "type": { @@ -58520,7 +58520,7 @@ "fileName": "index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L52" } ], "type": { @@ -58543,7 +58543,7 @@ "fileName": "index.d.ts", "line": 53, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L53" } ], "type": { @@ -58566,7 +58566,7 @@ "fileName": "index.d.ts", "line": 54, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L54" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L54" } ], "type": { @@ -58589,7 +58589,7 @@ "fileName": "index.d.ts", "line": 55, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L55" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L55" } ], "type": { @@ -58612,7 +58612,7 @@ "fileName": "index.d.ts", "line": 56, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L56" } ], "type": { @@ -58635,7 +58635,7 @@ "fileName": "index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L57" } ], "type": { @@ -58658,7 +58658,7 @@ "fileName": "index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L58" } ], "type": { @@ -58681,7 +58681,7 @@ "fileName": "index.d.ts", "line": 59, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L59" } ], "type": { @@ -58727,7 +58727,7 @@ "fileName": "index.d.ts", "line": 29, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L29" } ], "indexSignature": { @@ -58741,7 +58741,7 @@ "fileName": "index.d.ts", "line": 60, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L60" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L60" } ], "parameters": [ @@ -58783,7 +58783,7 @@ "fileName": "index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L64" } ], "type": { @@ -58804,7 +58804,7 @@ "fileName": "index.d.ts", "line": 65, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L65" } ], "type": { @@ -58829,7 +58829,7 @@ "fileName": "index.d.ts", "line": 66, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L66" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L66" } ], "type": { @@ -58850,7 +58850,7 @@ "fileName": "index.d.ts", "line": 67, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L67" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L67" } ], "type": { @@ -58871,7 +58871,7 @@ "fileName": "index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L68" } ], "type": { @@ -58892,7 +58892,7 @@ "fileName": "index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L69" } ], "type": { @@ -58913,7 +58913,7 @@ "fileName": "index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L70" } ], "type": { @@ -58939,7 +58939,7 @@ "fileName": "index.d.ts", "line": 65, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L65" } ] } @@ -58958,7 +58958,7 @@ "fileName": "index.d.ts", "line": 72, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L72" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L72" } ], "type": { @@ -58979,7 +58979,7 @@ "fileName": "index.d.ts", "line": 73, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L73" } ], "type": { @@ -59000,7 +59000,7 @@ "fileName": "index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L74" } ], "type": { @@ -59021,7 +59021,7 @@ "fileName": "index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L75" } ], "type": { @@ -59046,7 +59046,7 @@ "fileName": "index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L76" } ], "type": { @@ -59067,7 +59067,7 @@ "fileName": "index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L77" } ], "type": { @@ -59088,7 +59088,7 @@ "fileName": "index.d.ts", "line": 78, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L78" } ], "type": { @@ -59109,7 +59109,7 @@ "fileName": "index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L79" } ], "type": { @@ -59134,7 +59134,7 @@ "fileName": "index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L80" } ], "type": { @@ -59155,7 +59155,7 @@ "fileName": "index.d.ts", "line": 81, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L81" } ], "type": { @@ -59176,7 +59176,7 @@ "fileName": "index.d.ts", "line": 82, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L82" } ], "type": { @@ -59197,7 +59197,7 @@ "fileName": "index.d.ts", "line": 83, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L83" } ], "type": { @@ -59218,7 +59218,7 @@ "fileName": "index.d.ts", "line": 84, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L84" } ], "type": { @@ -59244,7 +59244,7 @@ "fileName": "index.d.ts", "line": 79, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L79" } ] } @@ -59267,7 +59267,7 @@ "fileName": "index.d.ts", "line": 75, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L75" } ] } @@ -59292,7 +59292,7 @@ "fileName": "index.d.ts", "line": 63, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L63" } ], "indexSignature": { @@ -59306,7 +59306,7 @@ "fileName": "index.d.ts", "line": 88, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L88" } ], "parameters": [ @@ -59345,7 +59345,7 @@ "fileName": "index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L1" } ] }, @@ -59384,7 +59384,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -59409,7 +59409,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -59447,7 +59447,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -59487,7 +59487,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -59519,7 +59519,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L17" } ], "type": { @@ -59563,7 +59563,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L23" } ], "type": { @@ -59603,7 +59603,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L29" } ], "type": { @@ -59643,7 +59643,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L35" } ], "type": { @@ -59667,7 +59667,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L17" } ] } @@ -59694,7 +59694,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L40" } ], "type": { @@ -59738,7 +59738,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L46" } ], "type": { @@ -59760,7 +59760,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 40, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L40" } ] } @@ -59787,7 +59787,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L51" } ], "type": { @@ -59831,7 +59831,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L57" } ], "type": { @@ -59853,7 +59853,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 51, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L51" } ] } @@ -59880,7 +59880,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 62, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L62" } ], "type": { @@ -59924,7 +59924,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L68" } ], "type": { @@ -59964,7 +59964,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L74" } ], "type": { @@ -60004,7 +60004,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L80" } ], "type": { @@ -60044,7 +60044,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L86" } ], "type": { @@ -60069,7 +60069,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 62, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L62" } ] } @@ -60096,7 +60096,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 91, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L91" } ], "type": { @@ -60140,7 +60140,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L97" } ], "type": { @@ -60180,7 +60180,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L103" } ], "type": { @@ -60220,7 +60220,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L109" } ], "type": { @@ -60260,7 +60260,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L115" } ], "type": { @@ -60285,7 +60285,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 91, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L91" } ] } @@ -60312,7 +60312,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 120, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L120" } ], "type": { @@ -60356,7 +60356,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L126" } ], "type": { @@ -60396,7 +60396,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L132" } ], "type": { @@ -60436,7 +60436,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 138, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L138" } ], "type": { @@ -60476,7 +60476,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L144" } ], "type": { @@ -60501,7 +60501,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 120, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L120" } ] } @@ -60528,7 +60528,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 149, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L149" } ], "type": { @@ -60572,7 +60572,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L155" } ], "type": { @@ -60612,7 +60612,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L161" } ], "type": { @@ -60652,7 +60652,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L167" } ], "type": { @@ -60692,7 +60692,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L173" } ], "type": { @@ -60717,7 +60717,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 149, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L149" } ] } @@ -60744,7 +60744,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 178, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L178" } ], "type": { @@ -60788,7 +60788,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L184" } ], "type": { @@ -60828,7 +60828,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 190, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L190" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L190" } ], "type": { @@ -60868,7 +60868,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 196, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L196" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L196" } ], "type": { @@ -60908,7 +60908,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L202" } ], "type": { @@ -60933,7 +60933,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 178, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L178" } ] } @@ -60960,7 +60960,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 207, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L207" } ], "type": { @@ -61004,7 +61004,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 213, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L213" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L213" } ], "type": { @@ -61044,7 +61044,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 219, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L219" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L219" } ], "type": { @@ -61084,7 +61084,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 225, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L225" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L225" } ], "type": { @@ -61124,7 +61124,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L231" } ], "type": { @@ -61149,7 +61149,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 207, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L207" } ] } @@ -61178,7 +61178,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L13" } ], "extendedTypes": [ @@ -61212,7 +61212,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inlinemessage/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inlinemessage/index.d.ts#L1" } ] }, @@ -61251,7 +61251,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -61276,7 +61276,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -61314,7 +61314,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -61354,7 +61354,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -61386,7 +61386,7 @@ "fileName": "inplace/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L17" } ], "type": { @@ -61430,7 +61430,7 @@ "fileName": "inplace/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L23" } ], "type": { @@ -61470,7 +61470,7 @@ "fileName": "inplace/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L29" } ], "type": { @@ -61499,7 +61499,7 @@ "fileName": "inplace/index.d.ts", "line": 33, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L33" } ], "type": { @@ -61543,7 +61543,7 @@ "fileName": "inplace/index.d.ts", "line": 39, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L39" } ], "type": { @@ -61583,7 +61583,7 @@ "fileName": "inplace/index.d.ts", "line": 45, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L45" } ], "type": { @@ -61623,7 +61623,7 @@ "fileName": "inplace/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L51" } ], "type": { @@ -61663,7 +61663,7 @@ "fileName": "inplace/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L57" } ], "type": { @@ -61703,7 +61703,7 @@ "fileName": "inplace/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L63" } ], "type": { @@ -61729,7 +61729,7 @@ "fileName": "inplace/index.d.ts", "line": 33, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L33" } ] } @@ -61767,7 +61767,7 @@ "fileName": "inplace/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L70" } ], "type": { @@ -61792,7 +61792,7 @@ "fileName": "inplace/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L17" } ] } @@ -61819,7 +61819,7 @@ "fileName": "inplace/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L75" } ], "type": { @@ -61863,7 +61863,7 @@ "fileName": "inplace/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L81" } ], "type": { @@ -61903,7 +61903,7 @@ "fileName": "inplace/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L87" } ], "type": { @@ -61926,7 +61926,7 @@ "fileName": "inplace/index.d.ts", "line": 75, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L75" } ] } @@ -61948,7 +61948,7 @@ "fileName": "inplace/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L13" } ], "extendedTypes": [ @@ -61982,7 +61982,7 @@ "fileName": "inplace/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inplace/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inplace/index.d.ts#L1" } ] }, @@ -62021,7 +62021,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -62046,7 +62046,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -62084,7 +62084,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -62124,7 +62124,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -62156,7 +62156,7 @@ "fileName": "inputchips/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L17" } ], "type": { @@ -62200,7 +62200,7 @@ "fileName": "inputchips/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L23" } ], "type": { @@ -62240,7 +62240,7 @@ "fileName": "inputchips/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L29" } ], "type": { @@ -62280,7 +62280,7 @@ "fileName": "inputchips/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L35" } ], "type": { @@ -62320,7 +62320,7 @@ "fileName": "inputchips/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L41" } ], "type": { @@ -62360,7 +62360,7 @@ "fileName": "inputchips/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L47" } ], "type": { @@ -62400,7 +62400,7 @@ "fileName": "inputchips/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L53" } ], "type": { @@ -62440,7 +62440,7 @@ "fileName": "inputchips/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L59" } ], "type": { @@ -62480,7 +62480,7 @@ "fileName": "inputchips/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L65" } ], "type": { @@ -62520,7 +62520,7 @@ "fileName": "inputchips/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L71" } ], "type": { @@ -62560,7 +62560,7 @@ "fileName": "inputchips/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L77" } ], "type": { @@ -62600,7 +62600,7 @@ "fileName": "inputchips/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L83" } ], "type": { @@ -62640,7 +62640,7 @@ "fileName": "inputchips/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L89" } ], "type": { @@ -62680,7 +62680,7 @@ "fileName": "inputchips/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L95" } ], "type": { @@ -62720,7 +62720,7 @@ "fileName": "inputchips/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L101" } ], "type": { @@ -62760,7 +62760,7 @@ "fileName": "inputchips/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L107" } ], "type": { @@ -62789,7 +62789,7 @@ "fileName": "inputchips/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L111" } ], "type": { @@ -62833,7 +62833,7 @@ "fileName": "inputchips/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L117" } ], "type": { @@ -62873,7 +62873,7 @@ "fileName": "inputchips/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L123" } ], "type": { @@ -62913,7 +62913,7 @@ "fileName": "inputchips/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L129" } ], "type": { @@ -62953,7 +62953,7 @@ "fileName": "inputchips/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L135" } ], "type": { @@ -62993,7 +62993,7 @@ "fileName": "inputchips/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L141" } ], "type": { @@ -63019,7 +63019,7 @@ "fileName": "inputchips/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L111" } ] } @@ -63057,7 +63057,7 @@ "fileName": "inputchips/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L148" } ], "type": { @@ -63095,7 +63095,7 @@ "fileName": "inputchips/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L17" } ] } @@ -63122,7 +63122,7 @@ "fileName": "inputchips/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L153" } ], "type": { @@ -63166,7 +63166,7 @@ "fileName": "inputchips/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L159" } ], "type": { @@ -63206,7 +63206,7 @@ "fileName": "inputchips/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L165" } ], "type": { @@ -63246,7 +63246,7 @@ "fileName": "inputchips/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L171" } ], "type": { @@ -63270,7 +63270,7 @@ "fileName": "inputchips/index.d.ts", "line": 153, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L153" } ] } @@ -63292,7 +63292,7 @@ "fileName": "inputchips/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L13" } ], "extendedTypes": [ @@ -63326,7 +63326,7 @@ "fileName": "inputchips/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputchips/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputchips/index.d.ts#L1" } ] }, @@ -63365,7 +63365,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -63390,7 +63390,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -63428,7 +63428,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -63468,7 +63468,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -63500,7 +63500,7 @@ "fileName": "inputgroup/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L17" } ], "type": { @@ -63544,7 +63544,7 @@ "fileName": "inputgroup/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L23" } ], "type": { @@ -63584,7 +63584,7 @@ "fileName": "inputgroup/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L29" } ], "type": { @@ -63624,7 +63624,7 @@ "fileName": "inputgroup/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L35" } ], "type": { @@ -63664,7 +63664,7 @@ "fileName": "inputgroup/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L41" } ], "type": { @@ -63689,7 +63689,7 @@ "fileName": "inputgroup/index.d.ts", "line": 17, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L17" } ] } @@ -63710,7 +63710,7 @@ "fileName": "inputgroup/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L13" } ], "extendedTypes": [ @@ -63744,7 +63744,7 @@ "fileName": "inputgroup/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputgroup/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputgroup/index.d.ts#L1" } ] }, @@ -63783,7 +63783,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -63808,7 +63808,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -63846,7 +63846,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -63886,7 +63886,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -63918,7 +63918,7 @@ "fileName": "inputnumber/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L17" } ], "type": { @@ -63962,7 +63962,7 @@ "fileName": "inputnumber/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L23" } ], "type": { @@ -63984,7 +63984,7 @@ "fileName": "inputnumber/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L17" } ] } @@ -64011,7 +64011,7 @@ "fileName": "inputnumber/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L28" } ], "type": { @@ -64055,7 +64055,7 @@ "fileName": "inputnumber/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L34" } ], "type": { @@ -64095,7 +64095,7 @@ "fileName": "inputnumber/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L40" } ], "type": { @@ -64135,7 +64135,7 @@ "fileName": "inputnumber/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L46" } ], "type": { @@ -64175,7 +64175,7 @@ "fileName": "inputnumber/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L52" } ], "type": { @@ -64215,7 +64215,7 @@ "fileName": "inputnumber/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L58" } ], "type": { @@ -64255,7 +64255,7 @@ "fileName": "inputnumber/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L64" } ], "type": { @@ -64295,7 +64295,7 @@ "fileName": "inputnumber/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L70" } ], "type": { @@ -64335,7 +64335,7 @@ "fileName": "inputnumber/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L76" } ], "type": { @@ -64375,7 +64375,7 @@ "fileName": "inputnumber/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L82" } ], "type": { @@ -64415,7 +64415,7 @@ "fileName": "inputnumber/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L88" } ], "type": { @@ -64455,7 +64455,7 @@ "fileName": "inputnumber/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L94" } ], "type": { @@ -64495,7 +64495,7 @@ "fileName": "inputnumber/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L100" } ], "type": { @@ -64528,7 +64528,7 @@ "fileName": "inputnumber/index.d.ts", "line": 28, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L28" } ] } @@ -64550,7 +64550,7 @@ "fileName": "inputnumber/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L13" } ], "extendedTypes": [ @@ -64584,7 +64584,7 @@ "fileName": "inputnumber/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputnumber/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputnumber/index.d.ts#L1" } ] }, @@ -64623,7 +64623,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -64648,7 +64648,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -64686,7 +64686,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -64726,7 +64726,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -64758,7 +64758,7 @@ "fileName": "inputtext/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L17" } ], "type": { @@ -64802,7 +64802,7 @@ "fileName": "inputtext/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L23" } ], "type": { @@ -64842,7 +64842,7 @@ "fileName": "inputtext/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L29" } ], "type": { @@ -64882,7 +64882,7 @@ "fileName": "inputtext/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L35" } ], "type": { @@ -64922,7 +64922,7 @@ "fileName": "inputtext/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L41" } ], "type": { @@ -64962,7 +64962,7 @@ "fileName": "inputtext/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L47" } ], "type": { @@ -65002,7 +65002,7 @@ "fileName": "inputtext/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L53" } ], "type": { @@ -65042,7 +65042,7 @@ "fileName": "inputtext/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L59" } ], "type": { @@ -65082,7 +65082,7 @@ "fileName": "inputtext/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L65" } ], "type": { @@ -65122,7 +65122,7 @@ "fileName": "inputtext/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L71" } ], "type": { @@ -65162,7 +65162,7 @@ "fileName": "inputtext/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L77" } ], "type": { @@ -65202,7 +65202,7 @@ "fileName": "inputtext/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L83" } ], "type": { @@ -65242,7 +65242,7 @@ "fileName": "inputtext/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L89" } ], "type": { @@ -65282,7 +65282,7 @@ "fileName": "inputtext/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L95" } ], "type": { @@ -65322,7 +65322,7 @@ "fileName": "inputtext/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L101" } ], "type": { @@ -65362,7 +65362,7 @@ "fileName": "inputtext/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L107" } ], "type": { @@ -65391,7 +65391,7 @@ "fileName": "inputtext/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L111" } ], "type": { @@ -65435,7 +65435,7 @@ "fileName": "inputtext/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L117" } ], "type": { @@ -65475,7 +65475,7 @@ "fileName": "inputtext/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L123" } ], "type": { @@ -65515,7 +65515,7 @@ "fileName": "inputtext/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L129" } ], "type": { @@ -65555,7 +65555,7 @@ "fileName": "inputtext/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L135" } ], "type": { @@ -65595,7 +65595,7 @@ "fileName": "inputtext/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L141" } ], "type": { @@ -65621,7 +65621,7 @@ "fileName": "inputtext/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L111" } ] } @@ -65659,7 +65659,7 @@ "fileName": "inputtext/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L148" } ], "type": { @@ -65688,7 +65688,7 @@ "fileName": "inputtext/index.d.ts", "line": 152, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L152" } ], "type": { @@ -65732,7 +65732,7 @@ "fileName": "inputtext/index.d.ts", "line": 158, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L158" } ], "type": { @@ -65772,7 +65772,7 @@ "fileName": "inputtext/index.d.ts", "line": 164, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L164" } ], "type": { @@ -65812,7 +65812,7 @@ "fileName": "inputtext/index.d.ts", "line": 170, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L170" } ], "type": { @@ -65836,7 +65836,7 @@ "fileName": "inputtext/index.d.ts", "line": 152, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L152" } ] } @@ -65863,7 +65863,7 @@ "fileName": "inputtext/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L175" } ], "type": { @@ -65907,7 +65907,7 @@ "fileName": "inputtext/index.d.ts", "line": 181, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L181" } ], "type": { @@ -65947,7 +65947,7 @@ "fileName": "inputtext/index.d.ts", "line": 187, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L187" } ], "type": { @@ -65987,7 +65987,7 @@ "fileName": "inputtext/index.d.ts", "line": 193, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L193" } ], "type": { @@ -66011,7 +66011,7 @@ "fileName": "inputtext/index.d.ts", "line": 175, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L175" } ] } @@ -66049,7 +66049,7 @@ "fileName": "inputtext/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L17" } ] } @@ -66070,7 +66070,7 @@ "fileName": "inputtext/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L13" } ], "extendedTypes": [ @@ -66104,7 +66104,7 @@ "fileName": "inputtext/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/inputtext/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/inputtext/index.d.ts#L1" } ] }, @@ -66143,7 +66143,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -66168,7 +66168,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -66206,7 +66206,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -66246,7 +66246,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -66278,7 +66278,7 @@ "fileName": "knob/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L17" } ], "type": { @@ -66322,7 +66322,7 @@ "fileName": "knob/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L23" } ], "type": { @@ -66351,7 +66351,7 @@ "fileName": "knob/index.d.ts", "line": 27, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L27" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L27" } ], "type": { @@ -66395,7 +66395,7 @@ "fileName": "knob/index.d.ts", "line": 33, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L33" } ], "type": { @@ -66435,7 +66435,7 @@ "fileName": "knob/index.d.ts", "line": 39, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L39" } ], "type": { @@ -66475,7 +66475,7 @@ "fileName": "knob/index.d.ts", "line": 45, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L45" } ], "type": { @@ -66515,7 +66515,7 @@ "fileName": "knob/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L51" } ], "type": { @@ -66555,7 +66555,7 @@ "fileName": "knob/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L57" } ], "type": { @@ -66581,7 +66581,7 @@ "fileName": "knob/index.d.ts", "line": 27, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L27" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L27" } ] } @@ -66602,7 +66602,7 @@ "fileName": "knob/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L17" } ] } @@ -66629,7 +66629,7 @@ "fileName": "knob/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L63" } ], "type": { @@ -66673,7 +66673,7 @@ "fileName": "knob/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L69" } ], "type": { @@ -66695,7 +66695,7 @@ "fileName": "knob/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L63" } ] } @@ -66722,7 +66722,7 @@ "fileName": "knob/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L74" } ], "type": { @@ -66766,7 +66766,7 @@ "fileName": "knob/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L80" } ], "type": { @@ -66788,7 +66788,7 @@ "fileName": "knob/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L74" } ] } @@ -66815,7 +66815,7 @@ "fileName": "knob/index.d.ts", "line": 85, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L85" } ], "type": { @@ -66859,7 +66859,7 @@ "fileName": "knob/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L91" } ], "type": { @@ -66881,7 +66881,7 @@ "fileName": "knob/index.d.ts", "line": 85, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L85" } ] } @@ -66905,7 +66905,7 @@ "fileName": "knob/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L13" } ], "extendedTypes": [ @@ -66939,7 +66939,7 @@ "fileName": "knob/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/knob/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/knob/index.d.ts#L1" } ] }, @@ -66978,7 +66978,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -67003,7 +67003,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -67041,7 +67041,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -67081,7 +67081,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -67113,7 +67113,7 @@ "fileName": "listbox/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L17" } ], "type": { @@ -67157,7 +67157,7 @@ "fileName": "listbox/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L23" } ], "type": { @@ -67197,7 +67197,7 @@ "fileName": "listbox/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L29" } ], "type": { @@ -67237,7 +67237,7 @@ "fileName": "listbox/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L35" } ], "type": { @@ -67277,7 +67277,7 @@ "fileName": "listbox/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L41" } ], "type": { @@ -67317,7 +67317,7 @@ "fileName": "listbox/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L47" } ], "type": { @@ -67357,7 +67357,7 @@ "fileName": "listbox/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L53" } ], "type": { @@ -67397,7 +67397,7 @@ "fileName": "listbox/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L59" } ], "type": { @@ -67437,7 +67437,7 @@ "fileName": "listbox/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L65" } ], "type": { @@ -67477,7 +67477,7 @@ "fileName": "listbox/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L71" } ], "type": { @@ -67517,7 +67517,7 @@ "fileName": "listbox/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L77" } ], "type": { @@ -67546,7 +67546,7 @@ "fileName": "listbox/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L81" } ], "type": { @@ -67590,7 +67590,7 @@ "fileName": "listbox/index.d.ts", "line": 87, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L87" } ], "type": { @@ -67630,7 +67630,7 @@ "fileName": "listbox/index.d.ts", "line": 93, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L93" } ], "type": { @@ -67670,7 +67670,7 @@ "fileName": "listbox/index.d.ts", "line": 99, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L99" } ], "type": { @@ -67710,7 +67710,7 @@ "fileName": "listbox/index.d.ts", "line": 105, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L105" } ], "type": { @@ -67750,7 +67750,7 @@ "fileName": "listbox/index.d.ts", "line": 111, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L111" } ], "type": { @@ -67776,7 +67776,7 @@ "fileName": "listbox/index.d.ts", "line": 81, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L81" } ] } @@ -67814,7 +67814,7 @@ "fileName": "listbox/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L118" } ], "type": { @@ -67847,7 +67847,7 @@ "fileName": "listbox/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L17" } ] } @@ -67874,7 +67874,7 @@ "fileName": "listbox/index.d.ts", "line": 123, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L123" } ], "type": { @@ -67918,7 +67918,7 @@ "fileName": "listbox/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L129" } ], "type": { @@ -67958,7 +67958,7 @@ "fileName": "listbox/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L135" } ], "type": { @@ -67987,7 +67987,7 @@ "fileName": "listbox/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L139" } ], "type": { @@ -68031,7 +68031,7 @@ "fileName": "listbox/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L145" } ], "type": { @@ -68053,7 +68053,7 @@ "fileName": "listbox/index.d.ts", "line": 139, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L139" } ] } @@ -68075,7 +68075,7 @@ "fileName": "listbox/index.d.ts", "line": 123, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L123" } ] } @@ -68102,7 +68102,7 @@ "fileName": "listbox/index.d.ts", "line": 151, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L151" } ], "type": { @@ -68146,7 +68146,7 @@ "fileName": "listbox/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L157" } ], "type": { @@ -68186,7 +68186,7 @@ "fileName": "listbox/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L163" } ], "type": { @@ -68226,7 +68226,7 @@ "fileName": "listbox/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L169" } ], "type": { @@ -68266,7 +68266,7 @@ "fileName": "listbox/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L175" } ], "type": { @@ -68306,7 +68306,7 @@ "fileName": "listbox/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L181" } ], "type": { @@ -68346,7 +68346,7 @@ "fileName": "listbox/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L187" } ], "type": { @@ -68386,7 +68386,7 @@ "fileName": "listbox/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L193" } ], "type": { @@ -68426,7 +68426,7 @@ "fileName": "listbox/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L199" } ], "type": { @@ -68466,7 +68466,7 @@ "fileName": "listbox/index.d.ts", "line": 205, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L205" } ], "type": { @@ -68506,7 +68506,7 @@ "fileName": "listbox/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L211" } ], "type": { @@ -68537,7 +68537,7 @@ "fileName": "listbox/index.d.ts", "line": 151, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L151" } ] } @@ -68564,7 +68564,7 @@ "fileName": "listbox/index.d.ts", "line": 216, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L216" } ], "type": { @@ -68608,7 +68608,7 @@ "fileName": "listbox/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L222" } ], "type": { @@ -68648,7 +68648,7 @@ "fileName": "listbox/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L228" } ], "type": { @@ -68688,7 +68688,7 @@ "fileName": "listbox/index.d.ts", "line": 234, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L234" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L234" } ], "type": { @@ -68728,7 +68728,7 @@ "fileName": "listbox/index.d.ts", "line": 240, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L240" } ], "type": { @@ -68753,7 +68753,7 @@ "fileName": "listbox/index.d.ts", "line": 216, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L216" } ] } @@ -68780,7 +68780,7 @@ "fileName": "listbox/index.d.ts", "line": 245, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L245" } ], "type": { @@ -68824,7 +68824,7 @@ "fileName": "listbox/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L251" } ], "type": { @@ -68864,7 +68864,7 @@ "fileName": "listbox/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L257" } ], "type": { @@ -68904,7 +68904,7 @@ "fileName": "listbox/index.d.ts", "line": 263, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L263" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L263" } ], "type": { @@ -68928,7 +68928,7 @@ "fileName": "listbox/index.d.ts", "line": 245, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L245" } ] } @@ -68955,7 +68955,7 @@ "fileName": "listbox/index.d.ts", "line": 268, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L268" } ], "type": { @@ -68999,7 +68999,7 @@ "fileName": "listbox/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L274" } ], "type": { @@ -69021,7 +69021,7 @@ "fileName": "listbox/index.d.ts", "line": 268, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L268" } ] } @@ -69047,7 +69047,7 @@ "fileName": "listbox/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L13" } ], "extendedTypes": [ @@ -69081,7 +69081,7 @@ "fileName": "listbox/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/listbox/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/listbox/index.d.ts#L1" } ] }, @@ -69120,7 +69120,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -69145,7 +69145,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -69183,7 +69183,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -69223,7 +69223,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -69255,7 +69255,7 @@ "fileName": "megamenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L17" } ], "type": { @@ -69299,7 +69299,7 @@ "fileName": "megamenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L23" } ], "type": { @@ -69339,7 +69339,7 @@ "fileName": "megamenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L29" } ], "type": { @@ -69379,7 +69379,7 @@ "fileName": "megamenu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L35" } ], "type": { @@ -69419,7 +69419,7 @@ "fileName": "megamenu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L41" } ], "type": { @@ -69459,7 +69459,7 @@ "fileName": "megamenu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L47" } ], "type": { @@ -69488,7 +69488,7 @@ "fileName": "megamenu/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L51" } ], "type": { @@ -69532,7 +69532,7 @@ "fileName": "megamenu/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L57" } ], "type": { @@ -69572,7 +69572,7 @@ "fileName": "megamenu/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L63" } ], "type": { @@ -69595,7 +69595,7 @@ "fileName": "megamenu/index.d.ts", "line": 51, "character": 30, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L51" } ] } @@ -69622,7 +69622,7 @@ "fileName": "megamenu/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L68" } ], "type": { @@ -69666,7 +69666,7 @@ "fileName": "megamenu/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L74" } ], "type": { @@ -69688,7 +69688,7 @@ "fileName": "megamenu/index.d.ts", "line": 68, "character": 32, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L68" } ] } @@ -69726,7 +69726,7 @@ "fileName": "megamenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L81" } ], "type": { @@ -69755,7 +69755,7 @@ "fileName": "megamenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L17" } ] } @@ -69782,7 +69782,7 @@ "fileName": "megamenu/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L86" } ], "type": { @@ -69826,7 +69826,7 @@ "fileName": "megamenu/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L92" } ], "type": { @@ -69866,7 +69866,7 @@ "fileName": "megamenu/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L98" } ], "type": { @@ -69889,7 +69889,7 @@ "fileName": "megamenu/index.d.ts", "line": 86, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L86" } ] } @@ -69916,7 +69916,7 @@ "fileName": "megamenu/index.d.ts", "line": 103, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L103" } ], "type": { @@ -69960,7 +69960,7 @@ "fileName": "megamenu/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L109" } ], "type": { @@ -70000,7 +70000,7 @@ "fileName": "megamenu/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L115" } ], "type": { @@ -70040,7 +70040,7 @@ "fileName": "megamenu/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L121" } ], "type": { @@ -70080,7 +70080,7 @@ "fileName": "megamenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L127" } ], "type": { @@ -70120,7 +70120,7 @@ "fileName": "megamenu/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L133" } ], "type": { @@ -70160,7 +70160,7 @@ "fileName": "megamenu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L139" } ], "type": { @@ -70200,7 +70200,7 @@ "fileName": "megamenu/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L145" } ], "type": { @@ -70240,7 +70240,7 @@ "fileName": "megamenu/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L151" } ], "type": { @@ -70269,7 +70269,7 @@ "fileName": "megamenu/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L155" } ], "type": { @@ -70313,7 +70313,7 @@ "fileName": "megamenu/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L161" } ], "type": { @@ -70353,7 +70353,7 @@ "fileName": "megamenu/index.d.ts", "line": 167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L167" } ], "type": { @@ -70393,7 +70393,7 @@ "fileName": "megamenu/index.d.ts", "line": 173, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L173" } ], "type": { @@ -70417,7 +70417,7 @@ "fileName": "megamenu/index.d.ts", "line": 155, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L155" } ] } @@ -70445,7 +70445,7 @@ "fileName": "megamenu/index.d.ts", "line": 103, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L103" } ] } @@ -70472,7 +70472,7 @@ "fileName": "megamenu/index.d.ts", "line": 179, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L179" } ], "type": { @@ -70516,7 +70516,7 @@ "fileName": "megamenu/index.d.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L185" } ], "type": { @@ -70556,7 +70556,7 @@ "fileName": "megamenu/index.d.ts", "line": 191, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L191" } ], "type": { @@ -70596,7 +70596,7 @@ "fileName": "megamenu/index.d.ts", "line": 197, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L197" } ], "type": { @@ -70636,7 +70636,7 @@ "fileName": "megamenu/index.d.ts", "line": 203, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L203" } ], "type": { @@ -70676,7 +70676,7 @@ "fileName": "megamenu/index.d.ts", "line": 209, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L209" } ], "type": { @@ -70716,7 +70716,7 @@ "fileName": "megamenu/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L215" } ], "type": { @@ -70756,7 +70756,7 @@ "fileName": "megamenu/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L221" } ], "type": { @@ -70784,7 +70784,7 @@ "fileName": "megamenu/index.d.ts", "line": 179, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L179" } ] } @@ -70811,7 +70811,7 @@ "fileName": "megamenu/index.d.ts", "line": 226, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L226" } ], "type": { @@ -70855,7 +70855,7 @@ "fileName": "megamenu/index.d.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L232" } ], "type": { @@ -70895,7 +70895,7 @@ "fileName": "megamenu/index.d.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L238" } ], "type": { @@ -70918,7 +70918,7 @@ "fileName": "megamenu/index.d.ts", "line": 226, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L226" } ] } @@ -70945,7 +70945,7 @@ "fileName": "megamenu/index.d.ts", "line": 243, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L243" } ], "type": { @@ -70989,7 +70989,7 @@ "fileName": "megamenu/index.d.ts", "line": 249, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L249" } ], "type": { @@ -71029,7 +71029,7 @@ "fileName": "megamenu/index.d.ts", "line": 255, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L255" } ], "type": { @@ -71069,7 +71069,7 @@ "fileName": "megamenu/index.d.ts", "line": 261, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L261" } ], "type": { @@ -71109,7 +71109,7 @@ "fileName": "megamenu/index.d.ts", "line": 267, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L267" } ], "type": { @@ -71134,7 +71134,7 @@ "fileName": "megamenu/index.d.ts", "line": 243, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L243" } ] } @@ -71161,7 +71161,7 @@ "fileName": "megamenu/index.d.ts", "line": 272, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L272" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L272" } ], "type": { @@ -71205,7 +71205,7 @@ "fileName": "megamenu/index.d.ts", "line": 278, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L278" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L278" } ], "type": { @@ -71245,7 +71245,7 @@ "fileName": "megamenu/index.d.ts", "line": 284, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L284" } ], "type": { @@ -71285,7 +71285,7 @@ "fileName": "megamenu/index.d.ts", "line": 290, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L290" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L290" } ], "type": { @@ -71325,7 +71325,7 @@ "fileName": "megamenu/index.d.ts", "line": 296, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L296" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L296" } ], "type": { @@ -71350,7 +71350,7 @@ "fileName": "megamenu/index.d.ts", "line": 272, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L272" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L272" } ] } @@ -71377,7 +71377,7 @@ "fileName": "megamenu/index.d.ts", "line": 301, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L301" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L301" } ], "type": { @@ -71421,7 +71421,7 @@ "fileName": "megamenu/index.d.ts", "line": 307, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L307" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L307" } ], "type": { @@ -71443,7 +71443,7 @@ "fileName": "megamenu/index.d.ts", "line": 301, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L301" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L301" } ] } @@ -71470,7 +71470,7 @@ "fileName": "megamenu/index.d.ts", "line": 312, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L312" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L312" } ], "type": { @@ -71514,7 +71514,7 @@ "fileName": "megamenu/index.d.ts", "line": 318, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L318" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L318" } ], "type": { @@ -71554,7 +71554,7 @@ "fileName": "megamenu/index.d.ts", "line": 324, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L324" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L324" } ], "type": { @@ -71594,7 +71594,7 @@ "fileName": "megamenu/index.d.ts", "line": 330, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L330" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L330" } ], "type": { @@ -71634,7 +71634,7 @@ "fileName": "megamenu/index.d.ts", "line": 336, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L336" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L336" } ], "type": { @@ -71674,7 +71674,7 @@ "fileName": "megamenu/index.d.ts", "line": 342, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L342" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L342" } ], "type": { @@ -71703,7 +71703,7 @@ "fileName": "megamenu/index.d.ts", "line": 346, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L346" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L346" } ], "type": { @@ -71747,7 +71747,7 @@ "fileName": "megamenu/index.d.ts", "line": 352, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L352" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L352" } ], "type": { @@ -71787,7 +71787,7 @@ "fileName": "megamenu/index.d.ts", "line": 358, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L358" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L358" } ], "type": { @@ -71827,7 +71827,7 @@ "fileName": "megamenu/index.d.ts", "line": 364, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L364" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L364" } ], "type": { @@ -71867,7 +71867,7 @@ "fileName": "megamenu/index.d.ts", "line": 370, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L370" } ], "type": { @@ -71907,7 +71907,7 @@ "fileName": "megamenu/index.d.ts", "line": 376, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L376" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L376" } ], "type": { @@ -71933,7 +71933,7 @@ "fileName": "megamenu/index.d.ts", "line": 346, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L346" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L346" } ] } @@ -71958,7 +71958,7 @@ "fileName": "megamenu/index.d.ts", "line": 312, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L312" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L312" } ] } @@ -71987,7 +71987,7 @@ "fileName": "megamenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -72021,7 +72021,7 @@ "fileName": "megamenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/megamenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/megamenu/index.d.ts#L1" } ] }, @@ -72060,7 +72060,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -72085,7 +72085,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -72123,7 +72123,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -72163,7 +72163,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -72195,7 +72195,7 @@ "fileName": "menu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L17" } ], "type": { @@ -72239,7 +72239,7 @@ "fileName": "menu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L23" } ], "type": { @@ -72279,7 +72279,7 @@ "fileName": "menu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L29" } ], "type": { @@ -72319,7 +72319,7 @@ "fileName": "menu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L35" } ], "type": { @@ -72359,7 +72359,7 @@ "fileName": "menu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L41" } ], "type": { @@ -72399,7 +72399,7 @@ "fileName": "menu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L47" } ], "type": { @@ -72439,7 +72439,7 @@ "fileName": "menu/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L53" } ], "type": { @@ -72466,7 +72466,7 @@ "fileName": "menu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L17" } ] } @@ -72493,7 +72493,7 @@ "fileName": "menu/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L58" } ], "type": { @@ -72537,7 +72537,7 @@ "fileName": "menu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L64" } ], "type": { @@ -72577,7 +72577,7 @@ "fileName": "menu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L70" } ], "type": { @@ -72600,7 +72600,7 @@ "fileName": "menu/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L58" } ] } @@ -72627,7 +72627,7 @@ "fileName": "menu/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L75" } ], "type": { @@ -72671,7 +72671,7 @@ "fileName": "menu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L81" } ], "type": { @@ -72711,7 +72711,7 @@ "fileName": "menu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L87" } ], "type": { @@ -72751,7 +72751,7 @@ "fileName": "menu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L93" } ], "type": { @@ -72791,7 +72791,7 @@ "fileName": "menu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L99" } ], "type": { @@ -72831,7 +72831,7 @@ "fileName": "menu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L105" } ], "type": { @@ -72871,7 +72871,7 @@ "fileName": "menu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L111" } ], "type": { @@ -72900,7 +72900,7 @@ "fileName": "menu/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L115" } ], "type": { @@ -72944,7 +72944,7 @@ "fileName": "menu/index.d.ts", "line": 121, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L121" } ], "type": { @@ -72984,7 +72984,7 @@ "fileName": "menu/index.d.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L127" } ], "type": { @@ -73007,7 +73007,7 @@ "fileName": "menu/index.d.ts", "line": 115, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L115" } ] } @@ -73033,7 +73033,7 @@ "fileName": "menu/index.d.ts", "line": 75, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L75" } ] } @@ -73060,7 +73060,7 @@ "fileName": "menu/index.d.ts", "line": 133, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L133" } ], "type": { @@ -73104,7 +73104,7 @@ "fileName": "menu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L139" } ], "type": { @@ -73144,7 +73144,7 @@ "fileName": "menu/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L145" } ], "type": { @@ -73184,7 +73184,7 @@ "fileName": "menu/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L151" } ], "type": { @@ -73224,7 +73224,7 @@ "fileName": "menu/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L157" } ], "type": { @@ -73249,7 +73249,7 @@ "fileName": "menu/index.d.ts", "line": 133, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L133" } ] } @@ -73276,7 +73276,7 @@ "fileName": "menu/index.d.ts", "line": 162, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L162" } ], "type": { @@ -73320,7 +73320,7 @@ "fileName": "menu/index.d.ts", "line": 168, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L168" } ], "type": { @@ -73342,7 +73342,7 @@ "fileName": "menu/index.d.ts", "line": 162, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L162" } ] } @@ -73367,7 +73367,7 @@ "fileName": "menu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L13" } ], "extendedTypes": [ @@ -73401,7 +73401,7 @@ "fileName": "menu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menu/index.d.ts#L1" } ] }, @@ -73440,7 +73440,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -73465,7 +73465,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -73503,7 +73503,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -73543,7 +73543,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -73575,7 +73575,7 @@ "fileName": "menubar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L17" } ], "type": { @@ -73619,7 +73619,7 @@ "fileName": "menubar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L23" } ], "type": { @@ -73659,7 +73659,7 @@ "fileName": "menubar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L29" } ], "type": { @@ -73699,7 +73699,7 @@ "fileName": "menubar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L35" } ], "type": { @@ -73739,7 +73739,7 @@ "fileName": "menubar/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L41" } ], "type": { @@ -73779,7 +73779,7 @@ "fileName": "menubar/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L47" } ], "type": { @@ -73819,7 +73819,7 @@ "fileName": "menubar/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L53" } ], "type": { @@ -73859,7 +73859,7 @@ "fileName": "menubar/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L59" } ], "type": { @@ -73887,7 +73887,7 @@ "fileName": "menubar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L17" } ] } @@ -73914,7 +73914,7 @@ "fileName": "menubar/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L64" } ], "type": { @@ -73958,7 +73958,7 @@ "fileName": "menubar/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L70" } ], "type": { @@ -73998,7 +73998,7 @@ "fileName": "menubar/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L76" } ], "type": { @@ -74021,7 +74021,7 @@ "fileName": "menubar/index.d.ts", "line": 64, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L64" } ] } @@ -74048,7 +74048,7 @@ "fileName": "menubar/index.d.ts", "line": 81, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L81" } ], "type": { @@ -74092,7 +74092,7 @@ "fileName": "menubar/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L87" } ], "type": { @@ -74132,7 +74132,7 @@ "fileName": "menubar/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L93" } ], "type": { @@ -74172,7 +74172,7 @@ "fileName": "menubar/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L99" } ], "type": { @@ -74212,7 +74212,7 @@ "fileName": "menubar/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L105" } ], "type": { @@ -74252,7 +74252,7 @@ "fileName": "menubar/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L111" } ], "type": { @@ -74292,7 +74292,7 @@ "fileName": "menubar/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L117" } ], "type": { @@ -74332,7 +74332,7 @@ "fileName": "menubar/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L123" } ], "type": { @@ -74372,7 +74372,7 @@ "fileName": "menubar/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L129" } ], "type": { @@ -74401,7 +74401,7 @@ "fileName": "menubar/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L133" } ], "type": { @@ -74445,7 +74445,7 @@ "fileName": "menubar/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L139" } ], "type": { @@ -74485,7 +74485,7 @@ "fileName": "menubar/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L145" } ], "type": { @@ -74525,7 +74525,7 @@ "fileName": "menubar/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L151" } ], "type": { @@ -74549,7 +74549,7 @@ "fileName": "menubar/index.d.ts", "line": 133, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L133" } ] } @@ -74577,7 +74577,7 @@ "fileName": "menubar/index.d.ts", "line": 81, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L81" } ] } @@ -74604,7 +74604,7 @@ "fileName": "menubar/index.d.ts", "line": 157, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L157" } ], "type": { @@ -74648,7 +74648,7 @@ "fileName": "menubar/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L163" } ], "type": { @@ -74688,7 +74688,7 @@ "fileName": "menubar/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L169" } ], "type": { @@ -74728,7 +74728,7 @@ "fileName": "menubar/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L175" } ], "type": { @@ -74768,7 +74768,7 @@ "fileName": "menubar/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L181" } ], "type": { @@ -74808,7 +74808,7 @@ "fileName": "menubar/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L187" } ], "type": { @@ -74848,7 +74848,7 @@ "fileName": "menubar/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L193" } ], "type": { @@ -74888,7 +74888,7 @@ "fileName": "menubar/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L199" } ], "type": { @@ -74916,7 +74916,7 @@ "fileName": "menubar/index.d.ts", "line": 157, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L157" } ] } @@ -74943,7 +74943,7 @@ "fileName": "menubar/index.d.ts", "line": 204, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L204" } ], "type": { @@ -74987,7 +74987,7 @@ "fileName": "menubar/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L210" } ], "type": { @@ -75027,7 +75027,7 @@ "fileName": "menubar/index.d.ts", "line": 216, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L216" } ], "type": { @@ -75067,7 +75067,7 @@ "fileName": "menubar/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L222" } ], "type": { @@ -75107,7 +75107,7 @@ "fileName": "menubar/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L228" } ], "type": { @@ -75132,7 +75132,7 @@ "fileName": "menubar/index.d.ts", "line": 204, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L204" } ] } @@ -75159,7 +75159,7 @@ "fileName": "menubar/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L233" } ], "type": { @@ -75203,7 +75203,7 @@ "fileName": "menubar/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L239" } ], "type": { @@ -75225,7 +75225,7 @@ "fileName": "menubar/index.d.ts", "line": 233, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L233" } ] } @@ -75252,7 +75252,7 @@ "fileName": "menubar/index.d.ts", "line": 244, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L244" } ], "type": { @@ -75296,7 +75296,7 @@ "fileName": "menubar/index.d.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L250" } ], "type": { @@ -75336,7 +75336,7 @@ "fileName": "menubar/index.d.ts", "line": 256, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L256" } ], "type": { @@ -75376,7 +75376,7 @@ "fileName": "menubar/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L262" } ], "type": { @@ -75416,7 +75416,7 @@ "fileName": "menubar/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L268" } ], "type": { @@ -75456,7 +75456,7 @@ "fileName": "menubar/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L274" } ], "type": { @@ -75485,7 +75485,7 @@ "fileName": "menubar/index.d.ts", "line": 278, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L278" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L278" } ], "type": { @@ -75529,7 +75529,7 @@ "fileName": "menubar/index.d.ts", "line": 284, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L284" } ], "type": { @@ -75569,7 +75569,7 @@ "fileName": "menubar/index.d.ts", "line": 290, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L290" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L290" } ], "type": { @@ -75609,7 +75609,7 @@ "fileName": "menubar/index.d.ts", "line": 296, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L296" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L296" } ], "type": { @@ -75649,7 +75649,7 @@ "fileName": "menubar/index.d.ts", "line": 302, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L302" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L302" } ], "type": { @@ -75689,7 +75689,7 @@ "fileName": "menubar/index.d.ts", "line": 308, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L308" } ], "type": { @@ -75715,7 +75715,7 @@ "fileName": "menubar/index.d.ts", "line": 278, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L278" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L278" } ] } @@ -75740,7 +75740,7 @@ "fileName": "menubar/index.d.ts", "line": 244, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L244" } ] } @@ -75767,7 +75767,7 @@ "fileName": "menubar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L13" } ], "extendedTypes": [ @@ -75801,7 +75801,7 @@ "fileName": "menubar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/menubar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/menubar/index.d.ts#L1" } ] }, @@ -75840,7 +75840,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -75865,7 +75865,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -75903,7 +75903,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -75943,7 +75943,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -75975,7 +75975,7 @@ "fileName": "message/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L17" } ], "type": { @@ -76019,7 +76019,7 @@ "fileName": "message/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L23" } ], "type": { @@ -76059,7 +76059,7 @@ "fileName": "message/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L29" } ], "type": { @@ -76099,7 +76099,7 @@ "fileName": "message/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L35" } ], "type": { @@ -76123,7 +76123,7 @@ "fileName": "message/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L17" } ] } @@ -76150,7 +76150,7 @@ "fileName": "message/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L40" } ], "type": { @@ -76194,7 +76194,7 @@ "fileName": "message/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L46" } ], "type": { @@ -76234,7 +76234,7 @@ "fileName": "message/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L52" } ], "type": { @@ -76257,7 +76257,7 @@ "fileName": "message/index.d.ts", "line": 40, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L40" } ] } @@ -76284,7 +76284,7 @@ "fileName": "message/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L57" } ], "type": { @@ -76328,7 +76328,7 @@ "fileName": "message/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L63" } ], "type": { @@ -76368,7 +76368,7 @@ "fileName": "message/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L69" } ], "type": { @@ -76391,7 +76391,7 @@ "fileName": "message/index.d.ts", "line": 57, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L57" } ] } @@ -76418,7 +76418,7 @@ "fileName": "message/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L74" } ], "type": { @@ -76462,7 +76462,7 @@ "fileName": "message/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L80" } ], "type": { @@ -76484,7 +76484,7 @@ "fileName": "message/index.d.ts", "line": 74, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L74" } ] } @@ -76511,7 +76511,7 @@ "fileName": "message/index.d.ts", "line": 85, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L85" } ], "type": { @@ -76555,7 +76555,7 @@ "fileName": "message/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L91" } ], "type": { @@ -76595,7 +76595,7 @@ "fileName": "message/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L97" } ], "type": { @@ -76635,7 +76635,7 @@ "fileName": "message/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L103" } ], "type": { @@ -76664,7 +76664,7 @@ "fileName": "message/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L107" } ], "type": { @@ -76708,7 +76708,7 @@ "fileName": "message/index.d.ts", "line": 113, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L113" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L113" } ], "type": { @@ -76748,7 +76748,7 @@ "fileName": "message/index.d.ts", "line": 119, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L119" } ], "type": { @@ -76788,7 +76788,7 @@ "fileName": "message/index.d.ts", "line": 125, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L125" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L125" } ], "type": { @@ -76812,7 +76812,7 @@ "fileName": "message/index.d.ts", "line": 107, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L107" } ] } @@ -76835,7 +76835,7 @@ "fileName": "message/index.d.ts", "line": 85, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L85" } ] } @@ -76862,7 +76862,7 @@ "fileName": "message/index.d.ts", "line": 131, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L131" } ], "type": { @@ -76906,7 +76906,7 @@ "fileName": "message/index.d.ts", "line": 137, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L137" } ], "type": { @@ -76928,7 +76928,7 @@ "fileName": "message/index.d.ts", "line": 131, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L131" } ] } @@ -76955,7 +76955,7 @@ "fileName": "message/index.d.ts", "line": 142, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L142" } ], "type": { @@ -76999,7 +76999,7 @@ "fileName": "message/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L148" } ], "type": { @@ -77039,7 +77039,7 @@ "fileName": "message/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L154" } ], "type": { @@ -77079,7 +77079,7 @@ "fileName": "message/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L160" } ], "type": { @@ -77119,7 +77119,7 @@ "fileName": "message/index.d.ts", "line": 166, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L166" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L166" } ], "type": { @@ -77148,7 +77148,7 @@ "fileName": "message/index.d.ts", "line": 170, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L170" } ], "type": { @@ -77192,7 +77192,7 @@ "fileName": "message/index.d.ts", "line": 176, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L176" } ], "type": { @@ -77221,7 +77221,7 @@ "fileName": "message/index.d.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L180" } ], "type": { @@ -77265,7 +77265,7 @@ "fileName": "message/index.d.ts", "line": 186, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L186" } ], "type": { @@ -77305,7 +77305,7 @@ "fileName": "message/index.d.ts", "line": 192, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L192" } ], "type": { @@ -77328,7 +77328,7 @@ "fileName": "message/index.d.ts", "line": 180, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L180" } ] } @@ -77349,7 +77349,7 @@ "fileName": "message/index.d.ts", "line": 170, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L170" } ] } @@ -77373,7 +77373,7 @@ "fileName": "message/index.d.ts", "line": 142, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L142" } ] } @@ -77400,7 +77400,7 @@ "fileName": "message/index.d.ts", "line": 199, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L199" } ], "type": { @@ -77444,7 +77444,7 @@ "fileName": "message/index.d.ts", "line": 205, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L205" } ], "type": { @@ -77484,7 +77484,7 @@ "fileName": "message/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L211" } ], "type": { @@ -77524,7 +77524,7 @@ "fileName": "message/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L217" } ], "type": { @@ -77564,7 +77564,7 @@ "fileName": "message/index.d.ts", "line": 223, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L223" } ], "type": { @@ -77593,7 +77593,7 @@ "fileName": "message/index.d.ts", "line": 227, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L227" } ], "type": { @@ -77637,7 +77637,7 @@ "fileName": "message/index.d.ts", "line": 233, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L233" } ], "type": { @@ -77666,7 +77666,7 @@ "fileName": "message/index.d.ts", "line": 237, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L237" } ], "type": { @@ -77710,7 +77710,7 @@ "fileName": "message/index.d.ts", "line": 243, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L243" } ], "type": { @@ -77750,7 +77750,7 @@ "fileName": "message/index.d.ts", "line": 249, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L249" } ], "type": { @@ -77773,7 +77773,7 @@ "fileName": "message/index.d.ts", "line": 237, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L237" } ] } @@ -77794,7 +77794,7 @@ "fileName": "message/index.d.ts", "line": 227, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L227" } ] } @@ -77818,7 +77818,7 @@ "fileName": "message/index.d.ts", "line": 199, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L199" } ] } @@ -77845,7 +77845,7 @@ "fileName": "message/index.d.ts", "line": 256, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L256" } ], "type": { @@ -77889,7 +77889,7 @@ "fileName": "message/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L262" } ], "type": { @@ -77929,7 +77929,7 @@ "fileName": "message/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L268" } ], "type": { @@ -77969,7 +77969,7 @@ "fileName": "message/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L274" } ], "type": { @@ -78009,7 +78009,7 @@ "fileName": "message/index.d.ts", "line": 280, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L280" } ], "type": { @@ -78038,7 +78038,7 @@ "fileName": "message/index.d.ts", "line": 284, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L284" } ], "type": { @@ -78082,7 +78082,7 @@ "fileName": "message/index.d.ts", "line": 290, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L290" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L290" } ], "type": { @@ -78111,7 +78111,7 @@ "fileName": "message/index.d.ts", "line": 294, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L294" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L294" } ], "type": { @@ -78155,7 +78155,7 @@ "fileName": "message/index.d.ts", "line": 300, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L300" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L300" } ], "type": { @@ -78195,7 +78195,7 @@ "fileName": "message/index.d.ts", "line": 306, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L306" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L306" } ], "type": { @@ -78218,7 +78218,7 @@ "fileName": "message/index.d.ts", "line": 294, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L294" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L294" } ] } @@ -78239,7 +78239,7 @@ "fileName": "message/index.d.ts", "line": 284, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L284" } ] } @@ -78263,7 +78263,7 @@ "fileName": "message/index.d.ts", "line": 256, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L256" } ] } @@ -78290,7 +78290,7 @@ "fileName": "message/index.d.ts", "line": 313, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L313" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L313" } ], "type": { @@ -78334,7 +78334,7 @@ "fileName": "message/index.d.ts", "line": 319, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L319" } ], "type": { @@ -78374,7 +78374,7 @@ "fileName": "message/index.d.ts", "line": 325, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L325" } ], "type": { @@ -78414,7 +78414,7 @@ "fileName": "message/index.d.ts", "line": 331, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L331" } ], "type": { @@ -78454,7 +78454,7 @@ "fileName": "message/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L337" } ], "type": { @@ -78483,7 +78483,7 @@ "fileName": "message/index.d.ts", "line": 341, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L341" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L341" } ], "type": { @@ -78527,7 +78527,7 @@ "fileName": "message/index.d.ts", "line": 347, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L347" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L347" } ], "type": { @@ -78556,7 +78556,7 @@ "fileName": "message/index.d.ts", "line": 351, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L351" } ], "type": { @@ -78600,7 +78600,7 @@ "fileName": "message/index.d.ts", "line": 357, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L357" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L357" } ], "type": { @@ -78640,7 +78640,7 @@ "fileName": "message/index.d.ts", "line": 363, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L363" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L363" } ], "type": { @@ -78663,7 +78663,7 @@ "fileName": "message/index.d.ts", "line": 351, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L351" } ] } @@ -78684,7 +78684,7 @@ "fileName": "message/index.d.ts", "line": 341, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L341" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L341" } ] } @@ -78708,7 +78708,7 @@ "fileName": "message/index.d.ts", "line": 313, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L313" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L313" } ] } @@ -78735,7 +78735,7 @@ "fileName": "message/index.d.ts", "line": 370, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L370" } ], "type": { @@ -78779,7 +78779,7 @@ "fileName": "message/index.d.ts", "line": 376, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L376" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L376" } ], "type": { @@ -78819,7 +78819,7 @@ "fileName": "message/index.d.ts", "line": 382, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L382" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L382" } ], "type": { @@ -78859,7 +78859,7 @@ "fileName": "message/index.d.ts", "line": 388, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L388" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L388" } ], "type": { @@ -78899,7 +78899,7 @@ "fileName": "message/index.d.ts", "line": 394, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L394" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L394" } ], "type": { @@ -78928,7 +78928,7 @@ "fileName": "message/index.d.ts", "line": 398, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L398" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L398" } ], "type": { @@ -78972,7 +78972,7 @@ "fileName": "message/index.d.ts", "line": 404, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L404" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L404" } ], "type": { @@ -79001,7 +79001,7 @@ "fileName": "message/index.d.ts", "line": 408, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L408" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L408" } ], "type": { @@ -79045,7 +79045,7 @@ "fileName": "message/index.d.ts", "line": 414, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L414" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L414" } ], "type": { @@ -79085,7 +79085,7 @@ "fileName": "message/index.d.ts", "line": 420, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L420" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L420" } ], "type": { @@ -79108,7 +79108,7 @@ "fileName": "message/index.d.ts", "line": 408, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L408" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L408" } ] } @@ -79129,7 +79129,7 @@ "fileName": "message/index.d.ts", "line": 398, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L398" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L398" } ] } @@ -79153,7 +79153,7 @@ "fileName": "message/index.d.ts", "line": 370, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L370" } ] } @@ -79180,7 +79180,7 @@ "fileName": "message/index.d.ts", "line": 427, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L427" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L427" } ], "type": { @@ -79224,7 +79224,7 @@ "fileName": "message/index.d.ts", "line": 433, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L433" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L433" } ], "type": { @@ -79264,7 +79264,7 @@ "fileName": "message/index.d.ts", "line": 439, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L439" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L439" } ], "type": { @@ -79304,7 +79304,7 @@ "fileName": "message/index.d.ts", "line": 445, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L445" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L445" } ], "type": { @@ -79344,7 +79344,7 @@ "fileName": "message/index.d.ts", "line": 451, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L451" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L451" } ], "type": { @@ -79373,7 +79373,7 @@ "fileName": "message/index.d.ts", "line": 455, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L455" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L455" } ], "type": { @@ -79417,7 +79417,7 @@ "fileName": "message/index.d.ts", "line": 461, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L461" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L461" } ], "type": { @@ -79446,7 +79446,7 @@ "fileName": "message/index.d.ts", "line": 465, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L465" } ], "type": { @@ -79490,7 +79490,7 @@ "fileName": "message/index.d.ts", "line": 471, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L471" } ], "type": { @@ -79530,7 +79530,7 @@ "fileName": "message/index.d.ts", "line": 477, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L477" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L477" } ], "type": { @@ -79553,7 +79553,7 @@ "fileName": "message/index.d.ts", "line": 465, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L465" } ] } @@ -79574,7 +79574,7 @@ "fileName": "message/index.d.ts", "line": 455, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L455" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L455" } ] } @@ -79598,7 +79598,7 @@ "fileName": "message/index.d.ts", "line": 427, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L427" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L427" } ] } @@ -79630,7 +79630,7 @@ "fileName": "message/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L13" } ], "extendedTypes": [ @@ -79664,7 +79664,7 @@ "fileName": "message/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/message/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/message/index.d.ts#L1" } ] }, @@ -79703,7 +79703,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -79728,7 +79728,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -79766,7 +79766,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -79806,7 +79806,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -79838,7 +79838,7 @@ "fileName": "metergroup/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L17" } ], "type": { @@ -79882,7 +79882,7 @@ "fileName": "metergroup/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L23" } ], "type": { @@ -79922,7 +79922,7 @@ "fileName": "metergroup/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L29" } ], "type": { @@ -79945,7 +79945,7 @@ "fileName": "metergroup/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L17" } ] } @@ -79972,7 +79972,7 @@ "fileName": "metergroup/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L34" } ], "type": { @@ -80016,7 +80016,7 @@ "fileName": "metergroup/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L40" } ], "type": { @@ -80056,7 +80056,7 @@ "fileName": "metergroup/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L46" } ], "type": { @@ -80079,7 +80079,7 @@ "fileName": "metergroup/index.d.ts", "line": 34, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L34" } ] } @@ -80106,7 +80106,7 @@ "fileName": "metergroup/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L51" } ], "type": { @@ -80150,7 +80150,7 @@ "fileName": "metergroup/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L57" } ], "type": { @@ -80172,7 +80172,7 @@ "fileName": "metergroup/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L51" } ] } @@ -80199,7 +80199,7 @@ "fileName": "metergroup/index.d.ts", "line": 62, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L62" } ], "type": { @@ -80243,7 +80243,7 @@ "fileName": "metergroup/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L68" } ], "type": { @@ -80265,7 +80265,7 @@ "fileName": "metergroup/index.d.ts", "line": 62, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L62" } ] } @@ -80292,7 +80292,7 @@ "fileName": "metergroup/index.d.ts", "line": 73, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L73" } ], "type": { @@ -80336,7 +80336,7 @@ "fileName": "metergroup/index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L79" } ], "type": { @@ -80358,7 +80358,7 @@ "fileName": "metergroup/index.d.ts", "line": 73, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L73" } ] } @@ -80385,7 +80385,7 @@ "fileName": "metergroup/index.d.ts", "line": 84, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L84" } ], "type": { @@ -80429,7 +80429,7 @@ "fileName": "metergroup/index.d.ts", "line": 90, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L90" } ], "type": { @@ -80469,7 +80469,7 @@ "fileName": "metergroup/index.d.ts", "line": 96, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L96" } ], "type": { @@ -80492,7 +80492,7 @@ "fileName": "metergroup/index.d.ts", "line": 84, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L84" } ] } @@ -80518,7 +80518,7 @@ "fileName": "metergroup/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L13" } ], "extendedTypes": [ @@ -80552,7 +80552,7 @@ "fileName": "metergroup/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/metergroup/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/metergroup/index.d.ts#L1" } ] }, @@ -80591,7 +80591,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -80616,7 +80616,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -80654,7 +80654,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -80694,7 +80694,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -80726,7 +80726,7 @@ "fileName": "multiselect/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L17" } ], "type": { @@ -80770,7 +80770,7 @@ "fileName": "multiselect/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L23" } ], "type": { @@ -80810,7 +80810,7 @@ "fileName": "multiselect/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L29" } ], "type": { @@ -80850,7 +80850,7 @@ "fileName": "multiselect/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L35" } ], "type": { @@ -80890,7 +80890,7 @@ "fileName": "multiselect/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L41" } ], "type": { @@ -80930,7 +80930,7 @@ "fileName": "multiselect/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L47" } ], "type": { @@ -80970,7 +80970,7 @@ "fileName": "multiselect/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L53" } ], "type": { @@ -81010,7 +81010,7 @@ "fileName": "multiselect/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L59" } ], "type": { @@ -81050,7 +81050,7 @@ "fileName": "multiselect/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L65" } ], "type": { @@ -81090,7 +81090,7 @@ "fileName": "multiselect/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L71" } ], "type": { @@ -81130,7 +81130,7 @@ "fileName": "multiselect/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L77" } ], "type": { @@ -81170,7 +81170,7 @@ "fileName": "multiselect/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L83" } ], "type": { @@ -81210,7 +81210,7 @@ "fileName": "multiselect/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L89" } ], "type": { @@ -81250,7 +81250,7 @@ "fileName": "multiselect/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L95" } ], "type": { @@ -81290,7 +81290,7 @@ "fileName": "multiselect/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L101" } ], "type": { @@ -81330,7 +81330,7 @@ "fileName": "multiselect/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L107" } ], "type": { @@ -81359,7 +81359,7 @@ "fileName": "multiselect/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L111" } ], "type": { @@ -81403,7 +81403,7 @@ "fileName": "multiselect/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L117" } ], "type": { @@ -81443,7 +81443,7 @@ "fileName": "multiselect/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L123" } ], "type": { @@ -81483,7 +81483,7 @@ "fileName": "multiselect/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L129" } ], "type": { @@ -81523,7 +81523,7 @@ "fileName": "multiselect/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L135" } ], "type": { @@ -81563,7 +81563,7 @@ "fileName": "multiselect/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L141" } ], "type": { @@ -81589,7 +81589,7 @@ "fileName": "multiselect/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L111" } ] } @@ -81627,7 +81627,7 @@ "fileName": "multiselect/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L148" } ], "type": { @@ -81665,7 +81665,7 @@ "fileName": "multiselect/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L17" } ] } @@ -81692,7 +81692,7 @@ "fileName": "multiselect/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L153" } ], "type": { @@ -81736,7 +81736,7 @@ "fileName": "multiselect/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L159" } ], "type": { @@ -81776,7 +81776,7 @@ "fileName": "multiselect/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L165" } ], "type": { @@ -81799,7 +81799,7 @@ "fileName": "multiselect/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L153" } ] } @@ -81826,7 +81826,7 @@ "fileName": "multiselect/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L170" } ], "type": { @@ -81870,7 +81870,7 @@ "fileName": "multiselect/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L176" } ], "type": { @@ -81910,7 +81910,7 @@ "fileName": "multiselect/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L182" } ], "type": { @@ -81950,7 +81950,7 @@ "fileName": "multiselect/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L188" } ], "type": { @@ -81990,7 +81990,7 @@ "fileName": "multiselect/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L194" } ], "type": { @@ -82030,7 +82030,7 @@ "fileName": "multiselect/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L200" } ], "type": { @@ -82056,7 +82056,7 @@ "fileName": "multiselect/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L170" } ] } @@ -82083,7 +82083,7 @@ "fileName": "multiselect/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L205" } ], "type": { @@ -82127,7 +82127,7 @@ "fileName": "multiselect/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L211" } ], "type": { @@ -82167,7 +82167,7 @@ "fileName": "multiselect/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L217" } ], "type": { @@ -82196,7 +82196,7 @@ "fileName": "multiselect/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L221" } ], "type": { @@ -82240,7 +82240,7 @@ "fileName": "multiselect/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L227" } ], "type": { @@ -82262,7 +82262,7 @@ "fileName": "multiselect/index.d.ts", "line": 221, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L221" } ] } @@ -82284,7 +82284,7 @@ "fileName": "multiselect/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L205" } ] } @@ -82311,7 +82311,7 @@ "fileName": "multiselect/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L233" } ], "type": { @@ -82355,7 +82355,7 @@ "fileName": "multiselect/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L239" } ], "type": { @@ -82395,7 +82395,7 @@ "fileName": "multiselect/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L245" } ], "type": { @@ -82435,7 +82435,7 @@ "fileName": "multiselect/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L251" } ], "type": { @@ -82475,7 +82475,7 @@ "fileName": "multiselect/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L257" } ], "type": { @@ -82515,7 +82515,7 @@ "fileName": "multiselect/index.d.ts", "line": 263, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L263" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L263" } ], "type": { @@ -82555,7 +82555,7 @@ "fileName": "multiselect/index.d.ts", "line": 269, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L269" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L269" } ], "type": { @@ -82595,7 +82595,7 @@ "fileName": "multiselect/index.d.ts", "line": 275, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L275" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L275" } ], "type": { @@ -82635,7 +82635,7 @@ "fileName": "multiselect/index.d.ts", "line": 281, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L281" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L281" } ], "type": { @@ -82675,7 +82675,7 @@ "fileName": "multiselect/index.d.ts", "line": 287, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L287" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L287" } ], "type": { @@ -82715,7 +82715,7 @@ "fileName": "multiselect/index.d.ts", "line": 293, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L293" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L293" } ], "type": { @@ -82746,7 +82746,7 @@ "fileName": "multiselect/index.d.ts", "line": 233, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L233" } ] } @@ -82773,7 +82773,7 @@ "fileName": "multiselect/index.d.ts", "line": 298, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L298" } ], "type": { @@ -82817,7 +82817,7 @@ "fileName": "multiselect/index.d.ts", "line": 304, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L304" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L304" } ], "type": { @@ -82857,7 +82857,7 @@ "fileName": "multiselect/index.d.ts", "line": 310, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L310" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L310" } ], "type": { @@ -82897,7 +82897,7 @@ "fileName": "multiselect/index.d.ts", "line": 316, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L316" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L316" } ], "type": { @@ -82937,7 +82937,7 @@ "fileName": "multiselect/index.d.ts", "line": 322, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L322" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L322" } ], "type": { @@ -82962,7 +82962,7 @@ "fileName": "multiselect/index.d.ts", "line": 298, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L298" } ] } @@ -82989,7 +82989,7 @@ "fileName": "multiselect/index.d.ts", "line": 327, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L327" } ], "type": { @@ -83033,7 +83033,7 @@ "fileName": "multiselect/index.d.ts", "line": 333, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L333" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L333" } ], "type": { @@ -83055,7 +83055,7 @@ "fileName": "multiselect/index.d.ts", "line": 327, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L327" } ] } @@ -83082,7 +83082,7 @@ "fileName": "multiselect/index.d.ts", "line": 338, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L338" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L338" } ], "type": { @@ -83126,7 +83126,7 @@ "fileName": "multiselect/index.d.ts", "line": 344, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L344" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L344" } ], "type": { @@ -83148,7 +83148,7 @@ "fileName": "multiselect/index.d.ts", "line": 338, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L338" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L338" } ] } @@ -83176,7 +83176,7 @@ "fileName": "multiselect/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L13" } ], "extendedTypes": [ @@ -83210,7 +83210,7 @@ "fileName": "multiselect/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/multiselect/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/multiselect/index.d.ts#L1" } ] }, @@ -83249,7 +83249,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -83274,7 +83274,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -83312,7 +83312,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -83352,7 +83352,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -83384,7 +83384,7 @@ "fileName": "orderlist/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L17" } ], "type": { @@ -83428,7 +83428,7 @@ "fileName": "orderlist/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L23" } ], "type": { @@ -83450,7 +83450,7 @@ "fileName": "orderlist/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L17" } ] } @@ -83477,7 +83477,7 @@ "fileName": "orderlist/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L28" } ], "type": { @@ -83521,7 +83521,7 @@ "fileName": "orderlist/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L34" } ], "type": { @@ -83543,7 +83543,7 @@ "fileName": "orderlist/index.d.ts", "line": 28, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L28" } ] } @@ -83565,7 +83565,7 @@ "fileName": "orderlist/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L13" } ], "extendedTypes": [ @@ -83599,7 +83599,7 @@ "fileName": "orderlist/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/orderlist/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/orderlist/index.d.ts#L1" } ] }, @@ -83638,7 +83638,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -83663,7 +83663,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -83701,7 +83701,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -83741,7 +83741,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -83773,7 +83773,7 @@ "fileName": "organizationchart/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L17" } ], "type": { @@ -83817,7 +83817,7 @@ "fileName": "organizationchart/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L23" } ], "type": { @@ -83857,7 +83857,7 @@ "fileName": "organizationchart/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L29" } ], "type": { @@ -83880,7 +83880,7 @@ "fileName": "organizationchart/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L17" } ] } @@ -83907,7 +83907,7 @@ "fileName": "organizationchart/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L34" } ], "type": { @@ -83951,7 +83951,7 @@ "fileName": "organizationchart/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L40" } ], "type": { @@ -83991,7 +83991,7 @@ "fileName": "organizationchart/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L46" } ], "type": { @@ -84031,7 +84031,7 @@ "fileName": "organizationchart/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L52" } ], "type": { @@ -84071,7 +84071,7 @@ "fileName": "organizationchart/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L58" } ], "type": { @@ -84111,7 +84111,7 @@ "fileName": "organizationchart/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L64" } ], "type": { @@ -84151,7 +84151,7 @@ "fileName": "organizationchart/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L70" } ], "type": { @@ -84191,7 +84191,7 @@ "fileName": "organizationchart/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L76" } ], "type": { @@ -84231,7 +84231,7 @@ "fileName": "organizationchart/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L82" } ], "type": { @@ -84271,7 +84271,7 @@ "fileName": "organizationchart/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L88" } ], "type": { @@ -84311,7 +84311,7 @@ "fileName": "organizationchart/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L94" } ], "type": { @@ -84342,7 +84342,7 @@ "fileName": "organizationchart/index.d.ts", "line": 34, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L34" } ] } @@ -84369,7 +84369,7 @@ "fileName": "organizationchart/index.d.ts", "line": 99, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L99" } ], "type": { @@ -84413,7 +84413,7 @@ "fileName": "organizationchart/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L105" } ], "type": { @@ -84453,7 +84453,7 @@ "fileName": "organizationchart/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L111" } ], "type": { @@ -84493,7 +84493,7 @@ "fileName": "organizationchart/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L117" } ], "type": { @@ -84533,7 +84533,7 @@ "fileName": "organizationchart/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L123" } ], "type": { @@ -84573,7 +84573,7 @@ "fileName": "organizationchart/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L129" } ], "type": { @@ -84613,7 +84613,7 @@ "fileName": "organizationchart/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L135" } ], "type": { @@ -84653,7 +84653,7 @@ "fileName": "organizationchart/index.d.ts", "line": 141, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L141" } ], "type": { @@ -84682,7 +84682,7 @@ "fileName": "organizationchart/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L145" } ], "type": { @@ -84726,7 +84726,7 @@ "fileName": "organizationchart/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L151" } ], "type": { @@ -84766,7 +84766,7 @@ "fileName": "organizationchart/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L157" } ], "type": { @@ -84806,7 +84806,7 @@ "fileName": "organizationchart/index.d.ts", "line": 163, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L163" } ], "type": { @@ -84846,7 +84846,7 @@ "fileName": "organizationchart/index.d.ts", "line": 169, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L169" } ], "type": { @@ -84886,7 +84886,7 @@ "fileName": "organizationchart/index.d.ts", "line": 175, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L175" } ], "type": { @@ -84912,7 +84912,7 @@ "fileName": "organizationchart/index.d.ts", "line": 145, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L145" } ] } @@ -84939,7 +84939,7 @@ "fileName": "organizationchart/index.d.ts", "line": 99, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L99" } ] } @@ -84966,7 +84966,7 @@ "fileName": "organizationchart/index.d.ts", "line": 181, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L181" } ], "type": { @@ -85010,7 +85010,7 @@ "fileName": "organizationchart/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L187" } ], "type": { @@ -85050,7 +85050,7 @@ "fileName": "organizationchart/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L193" } ], "type": { @@ -85090,7 +85090,7 @@ "fileName": "organizationchart/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L199" } ], "type": { @@ -85114,7 +85114,7 @@ "fileName": "organizationchart/index.d.ts", "line": 181, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L181" } ] } @@ -85138,7 +85138,7 @@ "fileName": "organizationchart/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L13" } ], "extendedTypes": [ @@ -85172,7 +85172,7 @@ "fileName": "organizationchart/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/organizationchart/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/organizationchart/index.d.ts#L1" } ] }, @@ -85211,7 +85211,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -85236,7 +85236,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -85274,7 +85274,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -85314,7 +85314,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -85346,7 +85346,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L17" } ], "type": { @@ -85379,7 +85379,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 21, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L21" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L21" } ], "type": { @@ -85423,7 +85423,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 27, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L27" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L27" } ], "type": { @@ -85463,7 +85463,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 33, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L33" } ], "type": { @@ -85486,7 +85486,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 21, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L21" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L21" } ] } @@ -85506,7 +85506,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L17" } ] } @@ -85527,7 +85527,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L13" } ], "extendedTypes": [ @@ -85561,7 +85561,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/overlaybadge/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/overlaybadge/index.d.ts#L1" } ] }, @@ -85600,7 +85600,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -85625,7 +85625,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -85663,7 +85663,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -85703,7 +85703,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -85735,7 +85735,7 @@ "fileName": "paginator/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L17" } ], "type": { @@ -85779,7 +85779,7 @@ "fileName": "paginator/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L23" } ], "type": { @@ -85819,7 +85819,7 @@ "fileName": "paginator/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L29" } ], "type": { @@ -85859,7 +85859,7 @@ "fileName": "paginator/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L35" } ], "type": { @@ -85899,7 +85899,7 @@ "fileName": "paginator/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L41" } ], "type": { @@ -85939,7 +85939,7 @@ "fileName": "paginator/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L47" } ], "type": { @@ -85979,7 +85979,7 @@ "fileName": "paginator/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L53" } ], "type": { @@ -86006,7 +86006,7 @@ "fileName": "paginator/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L17" } ] } @@ -86033,7 +86033,7 @@ "fileName": "paginator/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L58" } ], "type": { @@ -86077,7 +86077,7 @@ "fileName": "paginator/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L64" } ], "type": { @@ -86117,7 +86117,7 @@ "fileName": "paginator/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L70" } ], "type": { @@ -86157,7 +86157,7 @@ "fileName": "paginator/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L76" } ], "type": { @@ -86197,7 +86197,7 @@ "fileName": "paginator/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L82" } ], "type": { @@ -86237,7 +86237,7 @@ "fileName": "paginator/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L88" } ], "type": { @@ -86277,7 +86277,7 @@ "fileName": "paginator/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L94" } ], "type": { @@ -86317,7 +86317,7 @@ "fileName": "paginator/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L100" } ], "type": { @@ -86357,7 +86357,7 @@ "fileName": "paginator/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L106" } ], "type": { @@ -86397,7 +86397,7 @@ "fileName": "paginator/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L112" } ], "type": { @@ -86426,7 +86426,7 @@ "fileName": "paginator/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L116" } ], "type": { @@ -86470,7 +86470,7 @@ "fileName": "paginator/index.d.ts", "line": 122, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L122" } ], "type": { @@ -86510,7 +86510,7 @@ "fileName": "paginator/index.d.ts", "line": 128, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L128" } ], "type": { @@ -86550,7 +86550,7 @@ "fileName": "paginator/index.d.ts", "line": 134, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L134" } ], "type": { @@ -86590,7 +86590,7 @@ "fileName": "paginator/index.d.ts", "line": 140, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L140" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L140" } ], "type": { @@ -86630,7 +86630,7 @@ "fileName": "paginator/index.d.ts", "line": 146, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L146" } ], "type": { @@ -86656,7 +86656,7 @@ "fileName": "paginator/index.d.ts", "line": 116, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L116" } ] } @@ -86685,7 +86685,7 @@ "fileName": "paginator/index.d.ts", "line": 58, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L58" } ] } @@ -86712,7 +86712,7 @@ "fileName": "paginator/index.d.ts", "line": 152, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L152" } ], "type": { @@ -86756,7 +86756,7 @@ "fileName": "paginator/index.d.ts", "line": 158, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L158" } ], "type": { @@ -86778,7 +86778,7 @@ "fileName": "paginator/index.d.ts", "line": 152, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L152" } ] } @@ -86805,7 +86805,7 @@ "fileName": "paginator/index.d.ts", "line": 163, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L163" } ], "type": { @@ -86849,7 +86849,7 @@ "fileName": "paginator/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L169" } ], "type": { @@ -86871,7 +86871,7 @@ "fileName": "paginator/index.d.ts", "line": 163, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L163" } ] } @@ -86895,7 +86895,7 @@ "fileName": "paginator/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L13" } ], "extendedTypes": [ @@ -86929,7 +86929,7 @@ "fileName": "paginator/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/paginator/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/paginator/index.d.ts#L1" } ] }, @@ -86968,7 +86968,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -86993,7 +86993,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -87031,7 +87031,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -87071,7 +87071,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -87103,7 +87103,7 @@ "fileName": "panel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L17" } ], "type": { @@ -87147,7 +87147,7 @@ "fileName": "panel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L23" } ], "type": { @@ -87187,7 +87187,7 @@ "fileName": "panel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L29" } ], "type": { @@ -87227,7 +87227,7 @@ "fileName": "panel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L35" } ], "type": { @@ -87267,7 +87267,7 @@ "fileName": "panel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L41" } ], "type": { @@ -87292,7 +87292,7 @@ "fileName": "panel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L17" } ] } @@ -87319,7 +87319,7 @@ "fileName": "panel/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L46" } ], "type": { @@ -87363,7 +87363,7 @@ "fileName": "panel/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L52" } ], "type": { @@ -87403,7 +87403,7 @@ "fileName": "panel/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L58" } ], "type": { @@ -87443,7 +87443,7 @@ "fileName": "panel/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L64" } ], "type": { @@ -87483,7 +87483,7 @@ "fileName": "panel/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L70" } ], "type": { @@ -87523,7 +87523,7 @@ "fileName": "panel/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L76" } ], "type": { @@ -87563,7 +87563,7 @@ "fileName": "panel/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L82" } ], "type": { @@ -87590,7 +87590,7 @@ "fileName": "panel/index.d.ts", "line": 46, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L46" } ] } @@ -87617,7 +87617,7 @@ "fileName": "panel/index.d.ts", "line": 87, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L87" } ], "type": { @@ -87661,7 +87661,7 @@ "fileName": "panel/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L93" } ], "type": { @@ -87683,7 +87683,7 @@ "fileName": "panel/index.d.ts", "line": 87, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L87" } ] } @@ -87710,7 +87710,7 @@ "fileName": "panel/index.d.ts", "line": 98, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L98" } ], "type": { @@ -87754,7 +87754,7 @@ "fileName": "panel/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L104" } ], "type": { @@ -87776,7 +87776,7 @@ "fileName": "panel/index.d.ts", "line": 98, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L98" } ] } @@ -87803,7 +87803,7 @@ "fileName": "panel/index.d.ts", "line": 109, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L109" } ], "type": { @@ -87847,7 +87847,7 @@ "fileName": "panel/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L115" } ], "type": { @@ -87869,7 +87869,7 @@ "fileName": "panel/index.d.ts", "line": 109, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L109" } ] } @@ -87896,7 +87896,7 @@ "fileName": "panel/index.d.ts", "line": 120, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L120" } ], "type": { @@ -87940,7 +87940,7 @@ "fileName": "panel/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L126" } ], "type": { @@ -87962,7 +87962,7 @@ "fileName": "panel/index.d.ts", "line": 120, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L120" } ] } @@ -87988,7 +87988,7 @@ "fileName": "panel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L13" } ], "extendedTypes": [ @@ -88022,7 +88022,7 @@ "fileName": "panel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panel/index.d.ts#L1" } ] }, @@ -88061,7 +88061,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -88086,7 +88086,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -88124,7 +88124,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -88164,7 +88164,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -88196,7 +88196,7 @@ "fileName": "panelmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L17" } ], "type": { @@ -88240,7 +88240,7 @@ "fileName": "panelmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L23" } ], "type": { @@ -88280,7 +88280,7 @@ "fileName": "panelmenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L29" } ], "type": { @@ -88303,7 +88303,7 @@ "fileName": "panelmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L17" } ] } @@ -88330,7 +88330,7 @@ "fileName": "panelmenu/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L34" } ], "type": { @@ -88374,7 +88374,7 @@ "fileName": "panelmenu/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L40" } ], "type": { @@ -88414,7 +88414,7 @@ "fileName": "panelmenu/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L46" } ], "type": { @@ -88454,7 +88454,7 @@ "fileName": "panelmenu/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L52" } ], "type": { @@ -88494,7 +88494,7 @@ "fileName": "panelmenu/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L58" } ], "type": { @@ -88534,7 +88534,7 @@ "fileName": "panelmenu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L64" } ], "type": { @@ -88574,7 +88574,7 @@ "fileName": "panelmenu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L70" } ], "type": { @@ -88603,7 +88603,7 @@ "fileName": "panelmenu/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L74" } ], "type": { @@ -88647,7 +88647,7 @@ "fileName": "panelmenu/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L80" } ], "type": { @@ -88687,7 +88687,7 @@ "fileName": "panelmenu/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L86" } ], "type": { @@ -88710,7 +88710,7 @@ "fileName": "panelmenu/index.d.ts", "line": 74, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L74" } ] } @@ -88737,7 +88737,7 @@ "fileName": "panelmenu/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L91" } ], "type": { @@ -88781,7 +88781,7 @@ "fileName": "panelmenu/index.d.ts", "line": 97, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L97" } ], "type": { @@ -88821,7 +88821,7 @@ "fileName": "panelmenu/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L103" } ], "type": { @@ -88844,7 +88844,7 @@ "fileName": "panelmenu/index.d.ts", "line": 91, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L91" } ] } @@ -88871,7 +88871,7 @@ "fileName": "panelmenu/index.d.ts", "line": 34, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L34" } ] } @@ -88898,7 +88898,7 @@ "fileName": "panelmenu/index.d.ts", "line": 109, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L109" } ], "type": { @@ -88942,7 +88942,7 @@ "fileName": "panelmenu/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L115" } ], "type": { @@ -88982,7 +88982,7 @@ "fileName": "panelmenu/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L121" } ], "type": { @@ -89022,7 +89022,7 @@ "fileName": "panelmenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L127" } ], "type": { @@ -89062,7 +89062,7 @@ "fileName": "panelmenu/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L133" } ], "type": { @@ -89102,7 +89102,7 @@ "fileName": "panelmenu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L139" } ], "type": { @@ -89142,7 +89142,7 @@ "fileName": "panelmenu/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L145" } ], "type": { @@ -89171,7 +89171,7 @@ "fileName": "panelmenu/index.d.ts", "line": 149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L149" } ], "type": { @@ -89215,7 +89215,7 @@ "fileName": "panelmenu/index.d.ts", "line": 155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L155" } ], "type": { @@ -89255,7 +89255,7 @@ "fileName": "panelmenu/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L161" } ], "type": { @@ -89278,7 +89278,7 @@ "fileName": "panelmenu/index.d.ts", "line": 149, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L149" } ] } @@ -89304,7 +89304,7 @@ "fileName": "panelmenu/index.d.ts", "line": 109, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L109" } ] } @@ -89331,7 +89331,7 @@ "fileName": "panelmenu/index.d.ts", "line": 167, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L167" } ], "type": { @@ -89375,7 +89375,7 @@ "fileName": "panelmenu/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L173" } ], "type": { @@ -89397,7 +89397,7 @@ "fileName": "panelmenu/index.d.ts", "line": 167, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L167" } ] } @@ -89424,7 +89424,7 @@ "fileName": "panelmenu/index.d.ts", "line": 178, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L178" } ], "type": { @@ -89468,7 +89468,7 @@ "fileName": "panelmenu/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L184" } ], "type": { @@ -89508,7 +89508,7 @@ "fileName": "panelmenu/index.d.ts", "line": 190, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L190" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L190" } ], "type": { @@ -89531,7 +89531,7 @@ "fileName": "panelmenu/index.d.ts", "line": 178, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L178" } ] } @@ -89556,7 +89556,7 @@ "fileName": "panelmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -89590,7 +89590,7 @@ "fileName": "panelmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/panelmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/panelmenu/index.d.ts#L1" } ] }, @@ -89629,7 +89629,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -89654,7 +89654,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -89692,7 +89692,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -89732,7 +89732,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -89764,7 +89764,7 @@ "fileName": "password/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L17" } ], "type": { @@ -89808,7 +89808,7 @@ "fileName": "password/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L23" } ], "type": { @@ -89848,7 +89848,7 @@ "fileName": "password/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L29" } ], "type": { @@ -89888,7 +89888,7 @@ "fileName": "password/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L35" } ], "type": { @@ -89912,7 +89912,7 @@ "fileName": "password/index.d.ts", "line": 17, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L17" } ] } @@ -89939,7 +89939,7 @@ "fileName": "password/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L40" } ], "type": { @@ -89983,7 +89983,7 @@ "fileName": "password/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L46" } ], "type": { @@ -90005,7 +90005,7 @@ "fileName": "password/index.d.ts", "line": 40, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L40" } ] } @@ -90032,7 +90032,7 @@ "fileName": "password/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L51" } ], "type": { @@ -90076,7 +90076,7 @@ "fileName": "password/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L57" } ], "type": { @@ -90116,7 +90116,7 @@ "fileName": "password/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L63" } ], "type": { @@ -90156,7 +90156,7 @@ "fileName": "password/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L69" } ], "type": { @@ -90196,7 +90196,7 @@ "fileName": "password/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L75" } ], "type": { @@ -90236,7 +90236,7 @@ "fileName": "password/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L81" } ], "type": { @@ -90276,7 +90276,7 @@ "fileName": "password/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L87" } ], "type": { @@ -90303,7 +90303,7 @@ "fileName": "password/index.d.ts", "line": 51, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L51" } ] } @@ -90330,7 +90330,7 @@ "fileName": "password/index.d.ts", "line": 92, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L92" } ], "type": { @@ -90374,7 +90374,7 @@ "fileName": "password/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L98" } ], "type": { @@ -90396,7 +90396,7 @@ "fileName": "password/index.d.ts", "line": 92, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L92" } ] } @@ -90423,7 +90423,7 @@ "fileName": "password/index.d.ts", "line": 103, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L103" } ], "type": { @@ -90467,7 +90467,7 @@ "fileName": "password/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L109" } ], "type": { @@ -90507,7 +90507,7 @@ "fileName": "password/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L115" } ], "type": { @@ -90547,7 +90547,7 @@ "fileName": "password/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L121" } ], "type": { @@ -90571,7 +90571,7 @@ "fileName": "password/index.d.ts", "line": 103, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L103" } ] } @@ -90596,7 +90596,7 @@ "fileName": "password/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L13" } ], "extendedTypes": [ @@ -90630,7 +90630,7 @@ "fileName": "password/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/password/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/password/index.d.ts#L1" } ] }, @@ -90669,7 +90669,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -90694,7 +90694,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -90732,7 +90732,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -90772,7 +90772,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -90804,7 +90804,7 @@ "fileName": "picklist/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L17" } ], "type": { @@ -90848,7 +90848,7 @@ "fileName": "picklist/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L23" } ], "type": { @@ -90870,7 +90870,7 @@ "fileName": "picklist/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L17" } ] } @@ -90897,7 +90897,7 @@ "fileName": "picklist/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L28" } ], "type": { @@ -90941,7 +90941,7 @@ "fileName": "picklist/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L34" } ], "type": { @@ -90963,7 +90963,7 @@ "fileName": "picklist/index.d.ts", "line": 28, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L28" } ] } @@ -90985,7 +90985,7 @@ "fileName": "picklist/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L13" } ], "extendedTypes": [ @@ -91019,7 +91019,7 @@ "fileName": "picklist/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/picklist/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/picklist/index.d.ts#L1" } ] }, @@ -91058,7 +91058,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -91083,7 +91083,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -91121,7 +91121,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -91161,7 +91161,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -91193,7 +91193,7 @@ "fileName": "popover/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L17" } ], "type": { @@ -91237,7 +91237,7 @@ "fileName": "popover/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L23" } ], "type": { @@ -91277,7 +91277,7 @@ "fileName": "popover/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L29" } ], "type": { @@ -91317,7 +91317,7 @@ "fileName": "popover/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L35" } ], "type": { @@ -91357,7 +91357,7 @@ "fileName": "popover/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L41" } ], "type": { @@ -91397,7 +91397,7 @@ "fileName": "popover/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L47" } ], "type": { @@ -91437,7 +91437,7 @@ "fileName": "popover/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L53" } ], "type": { @@ -91477,7 +91477,7 @@ "fileName": "popover/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L59" } ], "type": { @@ -91505,7 +91505,7 @@ "fileName": "popover/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L17" } ] } @@ -91532,7 +91532,7 @@ "fileName": "popover/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L64" } ], "type": { @@ -91576,7 +91576,7 @@ "fileName": "popover/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L70" } ], "type": { @@ -91598,7 +91598,7 @@ "fileName": "popover/index.d.ts", "line": 64, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L64" } ] } @@ -91620,7 +91620,7 @@ "fileName": "popover/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L13" } ], "extendedTypes": [ @@ -91654,7 +91654,7 @@ "fileName": "popover/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/popover/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/popover/index.d.ts#L1" } ] }, @@ -91693,7 +91693,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -91718,7 +91718,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -91756,7 +91756,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -91796,7 +91796,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -91828,7 +91828,7 @@ "fileName": "progressbar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L17" } ], "type": { @@ -91872,7 +91872,7 @@ "fileName": "progressbar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L23" } ], "type": { @@ -91912,7 +91912,7 @@ "fileName": "progressbar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L29" } ], "type": { @@ -91952,7 +91952,7 @@ "fileName": "progressbar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L35" } ], "type": { @@ -91976,7 +91976,7 @@ "fileName": "progressbar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L17" } ] } @@ -92003,7 +92003,7 @@ "fileName": "progressbar/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L40" } ], "type": { @@ -92047,7 +92047,7 @@ "fileName": "progressbar/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L46" } ], "type": { @@ -92069,7 +92069,7 @@ "fileName": "progressbar/index.d.ts", "line": 40, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L40" } ] } @@ -92096,7 +92096,7 @@ "fileName": "progressbar/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L51" } ], "type": { @@ -92140,7 +92140,7 @@ "fileName": "progressbar/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L57" } ], "type": { @@ -92180,7 +92180,7 @@ "fileName": "progressbar/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L63" } ], "type": { @@ -92220,7 +92220,7 @@ "fileName": "progressbar/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L69" } ], "type": { @@ -92244,7 +92244,7 @@ "fileName": "progressbar/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L51" } ] } @@ -92267,7 +92267,7 @@ "fileName": "progressbar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L13" } ], "extendedTypes": [ @@ -92301,7 +92301,7 @@ "fileName": "progressbar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressbar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressbar/index.d.ts#L1" } ] }, @@ -92340,7 +92340,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -92365,7 +92365,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -92403,7 +92403,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -92443,7 +92443,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -92475,7 +92475,7 @@ "fileName": "progressspinner/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L17" } ], "type": { @@ -92519,7 +92519,7 @@ "fileName": "progressspinner/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L23" } ], "type": { @@ -92559,7 +92559,7 @@ "fileName": "progressspinner/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L29" } ], "type": { @@ -92599,7 +92599,7 @@ "fileName": "progressspinner/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L35" } ], "type": { @@ -92639,7 +92639,7 @@ "fileName": "progressspinner/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L41" } ], "type": { @@ -92664,7 +92664,7 @@ "fileName": "progressspinner/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L17" } ] } @@ -92685,7 +92685,7 @@ "fileName": "progressspinner/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L13" } ], "extendedTypes": [ @@ -92719,7 +92719,7 @@ "fileName": "progressspinner/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/progressspinner/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/progressspinner/index.d.ts#L1" } ] }, @@ -92758,7 +92758,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -92783,7 +92783,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -92821,7 +92821,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -92861,7 +92861,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -92893,7 +92893,7 @@ "fileName": "radiobutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L17" } ], "type": { @@ -92937,7 +92937,7 @@ "fileName": "radiobutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L23" } ], "type": { @@ -92977,7 +92977,7 @@ "fileName": "radiobutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L29" } ], "type": { @@ -93017,7 +93017,7 @@ "fileName": "radiobutton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L35" } ], "type": { @@ -93057,7 +93057,7 @@ "fileName": "radiobutton/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L41" } ], "type": { @@ -93097,7 +93097,7 @@ "fileName": "radiobutton/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L47" } ], "type": { @@ -93137,7 +93137,7 @@ "fileName": "radiobutton/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L53" } ], "type": { @@ -93177,7 +93177,7 @@ "fileName": "radiobutton/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L59" } ], "type": { @@ -93217,7 +93217,7 @@ "fileName": "radiobutton/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L65" } ], "type": { @@ -93257,7 +93257,7 @@ "fileName": "radiobutton/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L71" } ], "type": { @@ -93297,7 +93297,7 @@ "fileName": "radiobutton/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L77" } ], "type": { @@ -93337,7 +93337,7 @@ "fileName": "radiobutton/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L83" } ], "type": { @@ -93377,7 +93377,7 @@ "fileName": "radiobutton/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L89" } ], "type": { @@ -93417,7 +93417,7 @@ "fileName": "radiobutton/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L95" } ], "type": { @@ -93457,7 +93457,7 @@ "fileName": "radiobutton/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L101" } ], "type": { @@ -93497,7 +93497,7 @@ "fileName": "radiobutton/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L107" } ], "type": { @@ -93537,7 +93537,7 @@ "fileName": "radiobutton/index.d.ts", "line": 113, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L113" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L113" } ], "type": { @@ -93566,7 +93566,7 @@ "fileName": "radiobutton/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L117" } ], "type": { @@ -93610,7 +93610,7 @@ "fileName": "radiobutton/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L123" } ], "type": { @@ -93650,7 +93650,7 @@ "fileName": "radiobutton/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L129" } ], "type": { @@ -93690,7 +93690,7 @@ "fileName": "radiobutton/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L135" } ], "type": { @@ -93730,7 +93730,7 @@ "fileName": "radiobutton/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L141" } ], "type": { @@ -93770,7 +93770,7 @@ "fileName": "radiobutton/index.d.ts", "line": 147, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L147" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L147" } ], "type": { @@ -93796,7 +93796,7 @@ "fileName": "radiobutton/index.d.ts", "line": 117, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L117" } ] } @@ -93834,7 +93834,7 @@ "fileName": "radiobutton/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L154" } ], "type": { @@ -93873,7 +93873,7 @@ "fileName": "radiobutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L17" } ] } @@ -93900,7 +93900,7 @@ "fileName": "radiobutton/index.d.ts", "line": 159, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L159" } ], "type": { @@ -93944,7 +93944,7 @@ "fileName": "radiobutton/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L165" } ], "type": { @@ -93984,7 +93984,7 @@ "fileName": "radiobutton/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L171" } ], "type": { @@ -94024,7 +94024,7 @@ "fileName": "radiobutton/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L177" } ], "type": { @@ -94064,7 +94064,7 @@ "fileName": "radiobutton/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L183" } ], "type": { @@ -94089,7 +94089,7 @@ "fileName": "radiobutton/index.d.ts", "line": 159, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L159" } ] } @@ -94111,7 +94111,7 @@ "fileName": "radiobutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -94145,7 +94145,7 @@ "fileName": "radiobutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/radiobutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/radiobutton/index.d.ts#L1" } ] }, @@ -94184,7 +94184,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -94209,7 +94209,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -94247,7 +94247,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -94287,7 +94287,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -94319,7 +94319,7 @@ "fileName": "rating/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L17" } ], "type": { @@ -94363,7 +94363,7 @@ "fileName": "rating/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L23" } ], "type": { @@ -94403,7 +94403,7 @@ "fileName": "rating/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L29" } ], "type": { @@ -94426,7 +94426,7 @@ "fileName": "rating/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L17" } ] } @@ -94453,7 +94453,7 @@ "fileName": "rating/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L34" } ], "type": { @@ -94497,7 +94497,7 @@ "fileName": "rating/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L40" } ], "type": { @@ -94537,7 +94537,7 @@ "fileName": "rating/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L46" } ], "type": { @@ -94577,7 +94577,7 @@ "fileName": "rating/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L52" } ], "type": { @@ -94617,7 +94617,7 @@ "fileName": "rating/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L58" } ], "type": { @@ -94642,7 +94642,7 @@ "fileName": "rating/index.d.ts", "line": 34, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L34" } ] } @@ -94664,7 +94664,7 @@ "fileName": "rating/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L13" } ], "extendedTypes": [ @@ -94698,7 +94698,7 @@ "fileName": "rating/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/rating/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/rating/index.d.ts#L1" } ] }, @@ -94737,7 +94737,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -94762,7 +94762,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -94800,7 +94800,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -94840,7 +94840,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -94872,7 +94872,7 @@ "fileName": "ripple/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/ripple/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/ripple/index.d.ts#L17" } ], "type": { @@ -94916,7 +94916,7 @@ "fileName": "ripple/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/ripple/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/ripple/index.d.ts#L23" } ], "type": { @@ -94938,7 +94938,7 @@ "fileName": "ripple/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/ripple/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/ripple/index.d.ts#L17" } ] } @@ -94959,7 +94959,7 @@ "fileName": "ripple/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/ripple/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/ripple/index.d.ts#L13" } ], "extendedTypes": [ @@ -94993,7 +94993,7 @@ "fileName": "ripple/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/ripple/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/ripple/index.d.ts#L1" } ] }, @@ -95032,7 +95032,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -95057,7 +95057,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -95095,7 +95095,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -95135,7 +95135,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -95167,7 +95167,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L17" } ], "type": { @@ -95211,7 +95211,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L23" } ], "type": { @@ -95233,7 +95233,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L17" } ] } @@ -95260,7 +95260,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L28" } ], "type": { @@ -95304,7 +95304,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L34" } ], "type": { @@ -95344,7 +95344,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L40" } ], "type": { @@ -95373,7 +95373,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 44, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L44" } ], "type": { @@ -95417,7 +95417,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 50, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L50" } ], "type": { @@ -95457,7 +95457,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 56, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L56" } ], "type": { @@ -95497,7 +95497,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 62, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L62" } ], "type": { @@ -95537,7 +95537,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 68, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L68" } ], "type": { @@ -95577,7 +95577,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L74" } ], "type": { @@ -95603,7 +95603,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 44, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L44" } ] } @@ -95641,7 +95641,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L81" } ], "type": { @@ -95666,7 +95666,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 28, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L28" } ] } @@ -95688,7 +95688,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L13" } ], "extendedTypes": [ @@ -95722,7 +95722,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/scrollpanel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/scrollpanel/index.d.ts#L1" } ] }, @@ -95761,7 +95761,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -95786,7 +95786,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -95824,7 +95824,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -95864,7 +95864,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -95896,7 +95896,7 @@ "fileName": "select/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L17" } ], "type": { @@ -95940,7 +95940,7 @@ "fileName": "select/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L23" } ], "type": { @@ -95980,7 +95980,7 @@ "fileName": "select/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L29" } ], "type": { @@ -96020,7 +96020,7 @@ "fileName": "select/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L35" } ], "type": { @@ -96060,7 +96060,7 @@ "fileName": "select/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L41" } ], "type": { @@ -96100,7 +96100,7 @@ "fileName": "select/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L47" } ], "type": { @@ -96140,7 +96140,7 @@ "fileName": "select/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L53" } ], "type": { @@ -96180,7 +96180,7 @@ "fileName": "select/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L59" } ], "type": { @@ -96220,7 +96220,7 @@ "fileName": "select/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L65" } ], "type": { @@ -96260,7 +96260,7 @@ "fileName": "select/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L71" } ], "type": { @@ -96300,7 +96300,7 @@ "fileName": "select/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L77" } ], "type": { @@ -96340,7 +96340,7 @@ "fileName": "select/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L83" } ], "type": { @@ -96380,7 +96380,7 @@ "fileName": "select/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L89" } ], "type": { @@ -96420,7 +96420,7 @@ "fileName": "select/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L95" } ], "type": { @@ -96460,7 +96460,7 @@ "fileName": "select/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L101" } ], "type": { @@ -96500,7 +96500,7 @@ "fileName": "select/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L107" } ], "type": { @@ -96529,7 +96529,7 @@ "fileName": "select/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L111" } ], "type": { @@ -96573,7 +96573,7 @@ "fileName": "select/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L117" } ], "type": { @@ -96613,7 +96613,7 @@ "fileName": "select/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L123" } ], "type": { @@ -96653,7 +96653,7 @@ "fileName": "select/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L129" } ], "type": { @@ -96693,7 +96693,7 @@ "fileName": "select/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L135" } ], "type": { @@ -96733,7 +96733,7 @@ "fileName": "select/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L141" } ], "type": { @@ -96759,7 +96759,7 @@ "fileName": "select/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L111" } ] } @@ -96797,7 +96797,7 @@ "fileName": "select/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L148" } ], "type": { @@ -96835,7 +96835,7 @@ "fileName": "select/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L17" } ] } @@ -96862,7 +96862,7 @@ "fileName": "select/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L153" } ], "type": { @@ -96906,7 +96906,7 @@ "fileName": "select/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L159" } ], "type": { @@ -96946,7 +96946,7 @@ "fileName": "select/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L165" } ], "type": { @@ -96969,7 +96969,7 @@ "fileName": "select/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L153" } ] } @@ -96996,7 +96996,7 @@ "fileName": "select/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L170" } ], "type": { @@ -97040,7 +97040,7 @@ "fileName": "select/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L176" } ], "type": { @@ -97080,7 +97080,7 @@ "fileName": "select/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L182" } ], "type": { @@ -97120,7 +97120,7 @@ "fileName": "select/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L188" } ], "type": { @@ -97160,7 +97160,7 @@ "fileName": "select/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L194" } ], "type": { @@ -97200,7 +97200,7 @@ "fileName": "select/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L200" } ], "type": { @@ -97226,7 +97226,7 @@ "fileName": "select/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L170" } ] } @@ -97253,7 +97253,7 @@ "fileName": "select/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L205" } ], "type": { @@ -97297,7 +97297,7 @@ "fileName": "select/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L211" } ], "type": { @@ -97337,7 +97337,7 @@ "fileName": "select/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L217" } ], "type": { @@ -97366,7 +97366,7 @@ "fileName": "select/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L221" } ], "type": { @@ -97410,7 +97410,7 @@ "fileName": "select/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L227" } ], "type": { @@ -97432,7 +97432,7 @@ "fileName": "select/index.d.ts", "line": 221, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L221" } ] } @@ -97454,7 +97454,7 @@ "fileName": "select/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L205" } ] } @@ -97481,7 +97481,7 @@ "fileName": "select/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L233" } ], "type": { @@ -97525,7 +97525,7 @@ "fileName": "select/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L239" } ], "type": { @@ -97565,7 +97565,7 @@ "fileName": "select/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L245" } ], "type": { @@ -97605,7 +97605,7 @@ "fileName": "select/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L251" } ], "type": { @@ -97645,7 +97645,7 @@ "fileName": "select/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L257" } ], "type": { @@ -97685,7 +97685,7 @@ "fileName": "select/index.d.ts", "line": 263, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L263" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L263" } ], "type": { @@ -97725,7 +97725,7 @@ "fileName": "select/index.d.ts", "line": 269, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L269" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L269" } ], "type": { @@ -97765,7 +97765,7 @@ "fileName": "select/index.d.ts", "line": 275, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L275" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L275" } ], "type": { @@ -97805,7 +97805,7 @@ "fileName": "select/index.d.ts", "line": 281, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L281" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L281" } ], "type": { @@ -97845,7 +97845,7 @@ "fileName": "select/index.d.ts", "line": 287, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L287" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L287" } ], "type": { @@ -97875,7 +97875,7 @@ "fileName": "select/index.d.ts", "line": 233, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L233" } ] } @@ -97902,7 +97902,7 @@ "fileName": "select/index.d.ts", "line": 292, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L292" } ], "type": { @@ -97946,7 +97946,7 @@ "fileName": "select/index.d.ts", "line": 298, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L298" } ], "type": { @@ -97986,7 +97986,7 @@ "fileName": "select/index.d.ts", "line": 304, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L304" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L304" } ], "type": { @@ -98026,7 +98026,7 @@ "fileName": "select/index.d.ts", "line": 310, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L310" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L310" } ], "type": { @@ -98066,7 +98066,7 @@ "fileName": "select/index.d.ts", "line": 316, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L316" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L316" } ], "type": { @@ -98091,7 +98091,7 @@ "fileName": "select/index.d.ts", "line": 292, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L292" } ] } @@ -98118,7 +98118,7 @@ "fileName": "select/index.d.ts", "line": 321, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L321" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L321" } ], "type": { @@ -98162,7 +98162,7 @@ "fileName": "select/index.d.ts", "line": 327, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L327" } ], "type": { @@ -98184,7 +98184,7 @@ "fileName": "select/index.d.ts", "line": 321, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L321" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L321" } ] } @@ -98211,7 +98211,7 @@ "fileName": "select/index.d.ts", "line": 332, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L332" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L332" } ], "type": { @@ -98255,7 +98255,7 @@ "fileName": "select/index.d.ts", "line": 338, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L338" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L338" } ], "type": { @@ -98295,7 +98295,7 @@ "fileName": "select/index.d.ts", "line": 344, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L344" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L344" } ], "type": { @@ -98335,7 +98335,7 @@ "fileName": "select/index.d.ts", "line": 350, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L350" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L350" } ], "type": { @@ -98359,7 +98359,7 @@ "fileName": "select/index.d.ts", "line": 332, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L332" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L332" } ] } @@ -98386,7 +98386,7 @@ "fileName": "select/index.d.ts", "line": 355, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L355" } ], "type": { @@ -98430,7 +98430,7 @@ "fileName": "select/index.d.ts", "line": 361, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L361" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L361" } ], "type": { @@ -98452,7 +98452,7 @@ "fileName": "select/index.d.ts", "line": 355, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L355" } ] } @@ -98481,7 +98481,7 @@ "fileName": "select/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L13" } ], "extendedTypes": [ @@ -98515,7 +98515,7 @@ "fileName": "select/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/select/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/select/index.d.ts#L1" } ] }, @@ -98554,7 +98554,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -98579,7 +98579,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -98617,7 +98617,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -98657,7 +98657,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -98689,7 +98689,7 @@ "fileName": "selectbutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/selectbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/selectbutton/index.d.ts#L17" } ], "type": { @@ -98733,7 +98733,7 @@ "fileName": "selectbutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/selectbutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/selectbutton/index.d.ts#L23" } ], "type": { @@ -98773,7 +98773,7 @@ "fileName": "selectbutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/selectbutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/selectbutton/index.d.ts#L29" } ], "type": { @@ -98796,7 +98796,7 @@ "fileName": "selectbutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/selectbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/selectbutton/index.d.ts#L17" } ] } @@ -98817,7 +98817,7 @@ "fileName": "selectbutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/selectbutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/selectbutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -98851,7 +98851,7 @@ "fileName": "selectbutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/selectbutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/selectbutton/index.d.ts#L1" } ] }, @@ -98890,7 +98890,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -98915,7 +98915,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -98953,7 +98953,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -98993,7 +98993,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -99025,7 +99025,7 @@ "fileName": "skeleton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L17" } ], "type": { @@ -99069,7 +99069,7 @@ "fileName": "skeleton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L23" } ], "type": { @@ -99109,7 +99109,7 @@ "fileName": "skeleton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L29" } ], "type": { @@ -99149,7 +99149,7 @@ "fileName": "skeleton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L35" } ], "type": { @@ -99173,7 +99173,7 @@ "fileName": "skeleton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L17" } ] } @@ -99194,7 +99194,7 @@ "fileName": "skeleton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L13" } ], "extendedTypes": [ @@ -99228,7 +99228,7 @@ "fileName": "skeleton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/skeleton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/skeleton/index.d.ts#L1" } ] }, @@ -99267,7 +99267,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -99292,7 +99292,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -99330,7 +99330,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -99370,7 +99370,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -99402,7 +99402,7 @@ "fileName": "slider/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L17" } ], "type": { @@ -99446,7 +99446,7 @@ "fileName": "slider/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L23" } ], "type": { @@ -99468,7 +99468,7 @@ "fileName": "slider/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L17" } ] } @@ -99495,7 +99495,7 @@ "fileName": "slider/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L28" } ], "type": { @@ -99539,7 +99539,7 @@ "fileName": "slider/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L34" } ], "type": { @@ -99579,7 +99579,7 @@ "fileName": "slider/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L40" } ], "type": { @@ -99619,7 +99619,7 @@ "fileName": "slider/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L46" } ], "type": { @@ -99643,7 +99643,7 @@ "fileName": "slider/index.d.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L28" } ] } @@ -99670,7 +99670,7 @@ "fileName": "slider/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L51" } ], "type": { @@ -99714,7 +99714,7 @@ "fileName": "slider/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L57" } ], "type": { @@ -99736,7 +99736,7 @@ "fileName": "slider/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L51" } ] } @@ -99763,7 +99763,7 @@ "fileName": "slider/index.d.ts", "line": 62, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L62" } ], "type": { @@ -99807,7 +99807,7 @@ "fileName": "slider/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L68" } ], "type": { @@ -99847,7 +99847,7 @@ "fileName": "slider/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L74" } ], "type": { @@ -99887,7 +99887,7 @@ "fileName": "slider/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L80" } ], "type": { @@ -99927,7 +99927,7 @@ "fileName": "slider/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L86" } ], "type": { @@ -99967,7 +99967,7 @@ "fileName": "slider/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L92" } ], "type": { @@ -99996,7 +99996,7 @@ "fileName": "slider/index.d.ts", "line": 96, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L96" } ], "type": { @@ -100040,7 +100040,7 @@ "fileName": "slider/index.d.ts", "line": 102, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L102" } ], "type": { @@ -100080,7 +100080,7 @@ "fileName": "slider/index.d.ts", "line": 108, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L108" } ], "type": { @@ -100120,7 +100120,7 @@ "fileName": "slider/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L114" } ], "type": { @@ -100160,7 +100160,7 @@ "fileName": "slider/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L120" } ], "type": { @@ -100200,7 +100200,7 @@ "fileName": "slider/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L126" } ], "type": { @@ -100226,7 +100226,7 @@ "fileName": "slider/index.d.ts", "line": 96, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L96" } ] } @@ -100253,7 +100253,7 @@ "fileName": "slider/index.d.ts", "line": 131, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L131" } ], "type": { @@ -100297,7 +100297,7 @@ "fileName": "slider/index.d.ts", "line": 137, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L137" } ], "type": { @@ -100337,7 +100337,7 @@ "fileName": "slider/index.d.ts", "line": 143, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L143" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L143" } ], "type": { @@ -100377,7 +100377,7 @@ "fileName": "slider/index.d.ts", "line": 149, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L149" } ], "type": { @@ -100417,7 +100417,7 @@ "fileName": "slider/index.d.ts", "line": 155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L155" } ], "type": { @@ -100457,7 +100457,7 @@ "fileName": "slider/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L161" } ], "type": { @@ -100483,7 +100483,7 @@ "fileName": "slider/index.d.ts", "line": 131, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L131" } ] } @@ -100521,7 +100521,7 @@ "fileName": "slider/index.d.ts", "line": 168, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L168" } ], "type": { @@ -100550,7 +100550,7 @@ "fileName": "slider/index.d.ts", "line": 62, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L62" } ] } @@ -100574,7 +100574,7 @@ "fileName": "slider/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L13" } ], "extendedTypes": [ @@ -100608,7 +100608,7 @@ "fileName": "slider/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/slider/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/slider/index.d.ts#L1" } ] }, @@ -100647,7 +100647,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -100672,7 +100672,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -100710,7 +100710,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -100750,7 +100750,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -100782,7 +100782,7 @@ "fileName": "speeddial/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/speeddial/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/speeddial/index.d.ts#L17" } ], "type": { @@ -100826,7 +100826,7 @@ "fileName": "speeddial/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/speeddial/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/speeddial/index.d.ts#L23" } ], "type": { @@ -100866,7 +100866,7 @@ "fileName": "speeddial/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/speeddial/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/speeddial/index.d.ts#L29" } ], "type": { @@ -100889,7 +100889,7 @@ "fileName": "speeddial/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/speeddial/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/speeddial/index.d.ts#L17" } ] } @@ -100910,7 +100910,7 @@ "fileName": "speeddial/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/speeddial/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/speeddial/index.d.ts#L13" } ], "extendedTypes": [ @@ -100944,7 +100944,7 @@ "fileName": "speeddial/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/speeddial/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/speeddial/index.d.ts#L1" } ] }, @@ -100983,7 +100983,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -101008,7 +101008,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -101046,7 +101046,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -101086,7 +101086,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -101118,7 +101118,7 @@ "fileName": "splitbutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L17" } ], "type": { @@ -101162,7 +101162,7 @@ "fileName": "splitbutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L23" } ], "type": { @@ -101202,7 +101202,7 @@ "fileName": "splitbutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L29" } ], "type": { @@ -101242,7 +101242,7 @@ "fileName": "splitbutton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L35" } ], "type": { @@ -101266,7 +101266,7 @@ "fileName": "splitbutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L17" } ] } @@ -101287,7 +101287,7 @@ "fileName": "splitbutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -101321,7 +101321,7 @@ "fileName": "splitbutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitbutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitbutton/index.d.ts#L1" } ] }, @@ -101360,7 +101360,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -101385,7 +101385,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -101423,7 +101423,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -101463,7 +101463,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -101495,7 +101495,7 @@ "fileName": "splitter/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L17" } ], "type": { @@ -101539,7 +101539,7 @@ "fileName": "splitter/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L23" } ], "type": { @@ -101579,7 +101579,7 @@ "fileName": "splitter/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L29" } ], "type": { @@ -101619,7 +101619,7 @@ "fileName": "splitter/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L35" } ], "type": { @@ -101659,7 +101659,7 @@ "fileName": "splitter/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L41" } ], "type": { @@ -101684,7 +101684,7 @@ "fileName": "splitter/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L17" } ] } @@ -101711,7 +101711,7 @@ "fileName": "splitter/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L46" } ], "type": { @@ -101755,7 +101755,7 @@ "fileName": "splitter/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L52" } ], "type": { @@ -101777,7 +101777,7 @@ "fileName": "splitter/index.d.ts", "line": 46, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L46" } ] } @@ -101804,7 +101804,7 @@ "fileName": "splitter/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L57" } ], "type": { @@ -101848,7 +101848,7 @@ "fileName": "splitter/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L63" } ], "type": { @@ -101888,7 +101888,7 @@ "fileName": "splitter/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L69" } ], "type": { @@ -101928,7 +101928,7 @@ "fileName": "splitter/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L75" } ], "type": { @@ -101957,7 +101957,7 @@ "fileName": "splitter/index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L79" } ], "type": { @@ -102001,7 +102001,7 @@ "fileName": "splitter/index.d.ts", "line": 85, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L85" } ], "type": { @@ -102041,7 +102041,7 @@ "fileName": "splitter/index.d.ts", "line": 91, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L91" } ], "type": { @@ -102081,7 +102081,7 @@ "fileName": "splitter/index.d.ts", "line": 97, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L97" } ], "type": { @@ -102121,7 +102121,7 @@ "fileName": "splitter/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L103" } ], "type": { @@ -102161,7 +102161,7 @@ "fileName": "splitter/index.d.ts", "line": 109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L109" } ], "type": { @@ -102187,7 +102187,7 @@ "fileName": "splitter/index.d.ts", "line": 79, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L79" } ] } @@ -102210,7 +102210,7 @@ "fileName": "splitter/index.d.ts", "line": 57, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L57" } ] } @@ -102233,7 +102233,7 @@ "fileName": "splitter/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L13" } ], "extendedTypes": [ @@ -102267,7 +102267,7 @@ "fileName": "splitter/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/splitter/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/splitter/index.d.ts#L1" } ] }, @@ -102306,7 +102306,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -102331,7 +102331,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -102369,7 +102369,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -102409,7 +102409,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -102441,7 +102441,7 @@ "fileName": "stepper/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L17" } ], "type": { @@ -102485,7 +102485,7 @@ "fileName": "stepper/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L23" } ], "type": { @@ -102507,7 +102507,7 @@ "fileName": "stepper/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L17" } ] } @@ -102534,7 +102534,7 @@ "fileName": "stepper/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L28" } ], "type": { @@ -102578,7 +102578,7 @@ "fileName": "stepper/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L34" } ], "type": { @@ -102618,7 +102618,7 @@ "fileName": "stepper/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L40" } ], "type": { @@ -102658,7 +102658,7 @@ "fileName": "stepper/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L46" } ], "type": { @@ -102698,7 +102698,7 @@ "fileName": "stepper/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L52" } ], "type": { @@ -102723,7 +102723,7 @@ "fileName": "stepper/index.d.ts", "line": 28, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L28" } ] } @@ -102750,7 +102750,7 @@ "fileName": "stepper/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L57" } ], "type": { @@ -102794,7 +102794,7 @@ "fileName": "stepper/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L63" } ], "type": { @@ -102834,7 +102834,7 @@ "fileName": "stepper/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L69" } ], "type": { @@ -102857,7 +102857,7 @@ "fileName": "stepper/index.d.ts", "line": 57, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L57" } ] } @@ -102884,7 +102884,7 @@ "fileName": "stepper/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L74" } ], "type": { @@ -102928,7 +102928,7 @@ "fileName": "stepper/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L80" } ], "type": { @@ -102968,7 +102968,7 @@ "fileName": "stepper/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L86" } ], "type": { @@ -102997,7 +102997,7 @@ "fileName": "stepper/index.d.ts", "line": 90, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L90" } ], "type": { @@ -103041,7 +103041,7 @@ "fileName": "stepper/index.d.ts", "line": 96, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L96" } ], "type": { @@ -103081,7 +103081,7 @@ "fileName": "stepper/index.d.ts", "line": 102, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L102" } ], "type": { @@ -103121,7 +103121,7 @@ "fileName": "stepper/index.d.ts", "line": 108, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L108" } ], "type": { @@ -103161,7 +103161,7 @@ "fileName": "stepper/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L114" } ], "type": { @@ -103201,7 +103201,7 @@ "fileName": "stepper/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L120" } ], "type": { @@ -103227,7 +103227,7 @@ "fileName": "stepper/index.d.ts", "line": 90, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L90" } ] } @@ -103265,7 +103265,7 @@ "fileName": "stepper/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L127" } ], "type": { @@ -103290,7 +103290,7 @@ "fileName": "stepper/index.d.ts", "line": 74, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L74" } ] } @@ -103317,7 +103317,7 @@ "fileName": "stepper/index.d.ts", "line": 132, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L132" } ], "type": { @@ -103361,7 +103361,7 @@ "fileName": "stepper/index.d.ts", "line": 138, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L138" } ], "type": { @@ -103401,7 +103401,7 @@ "fileName": "stepper/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L144" } ], "type": { @@ -103441,7 +103441,7 @@ "fileName": "stepper/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L150" } ], "type": { @@ -103465,7 +103465,7 @@ "fileName": "stepper/index.d.ts", "line": 132, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L132" } ] } @@ -103492,7 +103492,7 @@ "fileName": "stepper/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L155" } ], "type": { @@ -103536,7 +103536,7 @@ "fileName": "stepper/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L161" } ], "type": { @@ -103576,7 +103576,7 @@ "fileName": "stepper/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L167" } ], "type": { @@ -103616,7 +103616,7 @@ "fileName": "stepper/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L173" } ], "type": { @@ -103656,7 +103656,7 @@ "fileName": "stepper/index.d.ts", "line": 179, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L179" } ], "type": { @@ -103696,7 +103696,7 @@ "fileName": "stepper/index.d.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L185" } ], "type": { @@ -103736,7 +103736,7 @@ "fileName": "stepper/index.d.ts", "line": 191, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L191" } ], "type": { @@ -103776,7 +103776,7 @@ "fileName": "stepper/index.d.ts", "line": 197, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L197" } ], "type": { @@ -103816,7 +103816,7 @@ "fileName": "stepper/index.d.ts", "line": 203, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L203" } ], "type": { @@ -103856,7 +103856,7 @@ "fileName": "stepper/index.d.ts", "line": 209, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L209" } ], "type": { @@ -103896,7 +103896,7 @@ "fileName": "stepper/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L215" } ], "type": { @@ -103936,7 +103936,7 @@ "fileName": "stepper/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L221" } ], "type": { @@ -103968,7 +103968,7 @@ "fileName": "stepper/index.d.ts", "line": 155, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L155" } ] } @@ -103995,7 +103995,7 @@ "fileName": "stepper/index.d.ts", "line": 226, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L226" } ], "type": { @@ -104039,7 +104039,7 @@ "fileName": "stepper/index.d.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L232" } ], "type": { @@ -104061,7 +104061,7 @@ "fileName": "stepper/index.d.ts", "line": 226, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L226" } ] } @@ -104088,7 +104088,7 @@ "fileName": "stepper/index.d.ts", "line": 237, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L237" } ], "type": { @@ -104132,7 +104132,7 @@ "fileName": "stepper/index.d.ts", "line": 243, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L243" } ], "type": { @@ -104172,7 +104172,7 @@ "fileName": "stepper/index.d.ts", "line": 249, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L249" } ], "type": { @@ -104212,7 +104212,7 @@ "fileName": "stepper/index.d.ts", "line": 255, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L255" } ], "type": { @@ -104236,7 +104236,7 @@ "fileName": "stepper/index.d.ts", "line": 237, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L237" } ] } @@ -104264,7 +104264,7 @@ "fileName": "stepper/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L13" } ], "extendedTypes": [ @@ -104298,7 +104298,7 @@ "fileName": "stepper/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/stepper/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/stepper/index.d.ts#L1" } ] }, @@ -104337,7 +104337,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -104362,7 +104362,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -104400,7 +104400,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -104440,7 +104440,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -104472,7 +104472,7 @@ "fileName": "steps/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L17" } ], "type": { @@ -104516,7 +104516,7 @@ "fileName": "steps/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L23" } ], "type": { @@ -104538,7 +104538,7 @@ "fileName": "steps/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L17" } ] } @@ -104565,7 +104565,7 @@ "fileName": "steps/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L28" } ], "type": { @@ -104609,7 +104609,7 @@ "fileName": "steps/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L34" } ], "type": { @@ -104631,7 +104631,7 @@ "fileName": "steps/index.d.ts", "line": 28, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L28" } ] } @@ -104658,7 +104658,7 @@ "fileName": "steps/index.d.ts", "line": 39, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L39" } ], "type": { @@ -104702,7 +104702,7 @@ "fileName": "steps/index.d.ts", "line": 45, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L45" } ], "type": { @@ -104731,7 +104731,7 @@ "fileName": "steps/index.d.ts", "line": 49, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L49" } ], "type": { @@ -104775,7 +104775,7 @@ "fileName": "steps/index.d.ts", "line": 55, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L55" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L55" } ], "type": { @@ -104815,7 +104815,7 @@ "fileName": "steps/index.d.ts", "line": 61, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L61" } ], "type": { @@ -104855,7 +104855,7 @@ "fileName": "steps/index.d.ts", "line": 67, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L67" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L67" } ], "type": { @@ -104895,7 +104895,7 @@ "fileName": "steps/index.d.ts", "line": 73, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L73" } ], "type": { @@ -104935,7 +104935,7 @@ "fileName": "steps/index.d.ts", "line": 79, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L79" } ], "type": { @@ -104961,7 +104961,7 @@ "fileName": "steps/index.d.ts", "line": 49, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L49" } ] } @@ -104999,7 +104999,7 @@ "fileName": "steps/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L86" } ], "type": { @@ -105023,7 +105023,7 @@ "fileName": "steps/index.d.ts", "line": 39, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L39" } ] } @@ -105050,7 +105050,7 @@ "fileName": "steps/index.d.ts", "line": 91, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L91" } ], "type": { @@ -105094,7 +105094,7 @@ "fileName": "steps/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L97" } ], "type": { @@ -105134,7 +105134,7 @@ "fileName": "steps/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L103" } ], "type": { @@ -105174,7 +105174,7 @@ "fileName": "steps/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L109" } ], "type": { @@ -105198,7 +105198,7 @@ "fileName": "steps/index.d.ts", "line": 91, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L91" } ] } @@ -105225,7 +105225,7 @@ "fileName": "steps/index.d.ts", "line": 114, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L114" } ], "type": { @@ -105269,7 +105269,7 @@ "fileName": "steps/index.d.ts", "line": 120, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L120" } ], "type": { @@ -105309,7 +105309,7 @@ "fileName": "steps/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L126" } ], "type": { @@ -105349,7 +105349,7 @@ "fileName": "steps/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L132" } ], "type": { @@ -105389,7 +105389,7 @@ "fileName": "steps/index.d.ts", "line": 138, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L138" } ], "type": { @@ -105429,7 +105429,7 @@ "fileName": "steps/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L144" } ], "type": { @@ -105469,7 +105469,7 @@ "fileName": "steps/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L150" } ], "type": { @@ -105509,7 +105509,7 @@ "fileName": "steps/index.d.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L156" } ], "type": { @@ -105549,7 +105549,7 @@ "fileName": "steps/index.d.ts", "line": 162, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L162" } ], "type": { @@ -105589,7 +105589,7 @@ "fileName": "steps/index.d.ts", "line": 168, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L168" } ], "type": { @@ -105629,7 +105629,7 @@ "fileName": "steps/index.d.ts", "line": 174, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L174" } ], "type": { @@ -105669,7 +105669,7 @@ "fileName": "steps/index.d.ts", "line": 180, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L180" } ], "type": { @@ -105701,7 +105701,7 @@ "fileName": "steps/index.d.ts", "line": 114, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L114" } ] } @@ -105726,7 +105726,7 @@ "fileName": "steps/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L13" } ], "extendedTypes": [ @@ -105760,7 +105760,7 @@ "fileName": "steps/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/steps/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/steps/index.d.ts#L1" } ] }, @@ -105799,7 +105799,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -105824,7 +105824,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -105862,7 +105862,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -105902,7 +105902,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -105934,7 +105934,7 @@ "fileName": "tabmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L17" } ], "type": { @@ -105978,7 +105978,7 @@ "fileName": "tabmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L23" } ], "type": { @@ -106000,7 +106000,7 @@ "fileName": "tabmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L17" } ] } @@ -106027,7 +106027,7 @@ "fileName": "tabmenu/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L28" } ], "type": { @@ -106071,7 +106071,7 @@ "fileName": "tabmenu/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L34" } ], "type": { @@ -106111,7 +106111,7 @@ "fileName": "tabmenu/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L40" } ], "type": { @@ -106151,7 +106151,7 @@ "fileName": "tabmenu/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L46" } ], "type": { @@ -106175,7 +106175,7 @@ "fileName": "tabmenu/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L28" } ] } @@ -106202,7 +106202,7 @@ "fileName": "tabmenu/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L51" } ], "type": { @@ -106246,7 +106246,7 @@ "fileName": "tabmenu/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L57" } ], "type": { @@ -106286,7 +106286,7 @@ "fileName": "tabmenu/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L63" } ], "type": { @@ -106326,7 +106326,7 @@ "fileName": "tabmenu/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L69" } ], "type": { @@ -106366,7 +106366,7 @@ "fileName": "tabmenu/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L75" } ], "type": { @@ -106406,7 +106406,7 @@ "fileName": "tabmenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L81" } ], "type": { @@ -106446,7 +106446,7 @@ "fileName": "tabmenu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L87" } ], "type": { @@ -106486,7 +106486,7 @@ "fileName": "tabmenu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L93" } ], "type": { @@ -106526,7 +106526,7 @@ "fileName": "tabmenu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L99" } ], "type": { @@ -106566,7 +106566,7 @@ "fileName": "tabmenu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L105" } ], "type": { @@ -106606,7 +106606,7 @@ "fileName": "tabmenu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L111" } ], "type": { @@ -106646,7 +106646,7 @@ "fileName": "tabmenu/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L117" } ], "type": { @@ -106686,7 +106686,7 @@ "fileName": "tabmenu/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L123" } ], "type": { @@ -106726,7 +106726,7 @@ "fileName": "tabmenu/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L129" } ], "type": { @@ -106766,7 +106766,7 @@ "fileName": "tabmenu/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L135" } ], "type": { @@ -106795,7 +106795,7 @@ "fileName": "tabmenu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L139" } ], "type": { @@ -106839,7 +106839,7 @@ "fileName": "tabmenu/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L145" } ], "type": { @@ -106879,7 +106879,7 @@ "fileName": "tabmenu/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L151" } ], "type": { @@ -106919,7 +106919,7 @@ "fileName": "tabmenu/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L157" } ], "type": { @@ -106959,7 +106959,7 @@ "fileName": "tabmenu/index.d.ts", "line": 163, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L163" } ], "type": { @@ -106999,7 +106999,7 @@ "fileName": "tabmenu/index.d.ts", "line": 169, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L169" } ], "type": { @@ -107025,7 +107025,7 @@ "fileName": "tabmenu/index.d.ts", "line": 139, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L139" } ] } @@ -107059,7 +107059,7 @@ "fileName": "tabmenu/index.d.ts", "line": 51, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L51" } ] } @@ -107086,7 +107086,7 @@ "fileName": "tabmenu/index.d.ts", "line": 175, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L175" } ], "type": { @@ -107130,7 +107130,7 @@ "fileName": "tabmenu/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L181" } ], "type": { @@ -107170,7 +107170,7 @@ "fileName": "tabmenu/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L187" } ], "type": { @@ -107210,7 +107210,7 @@ "fileName": "tabmenu/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L193" } ], "type": { @@ -107234,7 +107234,7 @@ "fileName": "tabmenu/index.d.ts", "line": 175, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L175" } ] } @@ -107261,7 +107261,7 @@ "fileName": "tabmenu/index.d.ts", "line": 198, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L198" } ], "type": { @@ -107305,7 +107305,7 @@ "fileName": "tabmenu/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L204" } ], "type": { @@ -107345,7 +107345,7 @@ "fileName": "tabmenu/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L210" } ], "type": { @@ -107385,7 +107385,7 @@ "fileName": "tabmenu/index.d.ts", "line": 216, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L216" } ], "type": { @@ -107409,7 +107409,7 @@ "fileName": "tabmenu/index.d.ts", "line": 198, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L198" } ] } @@ -107434,7 +107434,7 @@ "fileName": "tabmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -107468,7 +107468,7 @@ "fileName": "tabmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabmenu/index.d.ts#L1" } ] }, @@ -107507,7 +107507,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -107532,7 +107532,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -107570,7 +107570,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -107610,7 +107610,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -107642,7 +107642,7 @@ "fileName": "tabs/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L17" } ], "type": { @@ -107686,7 +107686,7 @@ "fileName": "tabs/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L23" } ], "type": { @@ -107708,7 +107708,7 @@ "fileName": "tabs/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L17" } ] } @@ -107735,7 +107735,7 @@ "fileName": "tabs/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L28" } ], "type": { @@ -107779,7 +107779,7 @@ "fileName": "tabs/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L34" } ], "type": { @@ -107819,7 +107819,7 @@ "fileName": "tabs/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L40" } ], "type": { @@ -107859,7 +107859,7 @@ "fileName": "tabs/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L46" } ], "type": { @@ -107883,7 +107883,7 @@ "fileName": "tabs/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L28" } ] } @@ -107910,7 +107910,7 @@ "fileName": "tabs/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L51" } ], "type": { @@ -107954,7 +107954,7 @@ "fileName": "tabs/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L57" } ], "type": { @@ -107994,7 +107994,7 @@ "fileName": "tabs/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L63" } ], "type": { @@ -108034,7 +108034,7 @@ "fileName": "tabs/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L69" } ], "type": { @@ -108074,7 +108074,7 @@ "fileName": "tabs/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L75" } ], "type": { @@ -108114,7 +108114,7 @@ "fileName": "tabs/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L81" } ], "type": { @@ -108154,7 +108154,7 @@ "fileName": "tabs/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L87" } ], "type": { @@ -108194,7 +108194,7 @@ "fileName": "tabs/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L93" } ], "type": { @@ -108234,7 +108234,7 @@ "fileName": "tabs/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L99" } ], "type": { @@ -108274,7 +108274,7 @@ "fileName": "tabs/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L105" } ], "type": { @@ -108314,7 +108314,7 @@ "fileName": "tabs/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L111" } ], "type": { @@ -108354,7 +108354,7 @@ "fileName": "tabs/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L117" } ], "type": { @@ -108394,7 +108394,7 @@ "fileName": "tabs/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L123" } ], "type": { @@ -108434,7 +108434,7 @@ "fileName": "tabs/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L129" } ], "type": { @@ -108474,7 +108474,7 @@ "fileName": "tabs/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L135" } ], "type": { @@ -108503,7 +108503,7 @@ "fileName": "tabs/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L139" } ], "type": { @@ -108547,7 +108547,7 @@ "fileName": "tabs/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L145" } ], "type": { @@ -108587,7 +108587,7 @@ "fileName": "tabs/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L151" } ], "type": { @@ -108627,7 +108627,7 @@ "fileName": "tabs/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L157" } ], "type": { @@ -108667,7 +108667,7 @@ "fileName": "tabs/index.d.ts", "line": 163, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L163" } ], "type": { @@ -108707,7 +108707,7 @@ "fileName": "tabs/index.d.ts", "line": 169, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L169" } ], "type": { @@ -108733,7 +108733,7 @@ "fileName": "tabs/index.d.ts", "line": 139, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L139" } ] } @@ -108767,7 +108767,7 @@ "fileName": "tabs/index.d.ts", "line": 51, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L51" } ] } @@ -108794,7 +108794,7 @@ "fileName": "tabs/index.d.ts", "line": 175, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L175" } ], "type": { @@ -108838,7 +108838,7 @@ "fileName": "tabs/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L181" } ], "type": { @@ -108878,7 +108878,7 @@ "fileName": "tabs/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L187" } ], "type": { @@ -108918,7 +108918,7 @@ "fileName": "tabs/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L193" } ], "type": { @@ -108947,7 +108947,7 @@ "fileName": "tabs/index.d.ts", "line": 197, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L197" } ], "type": { @@ -108991,7 +108991,7 @@ "fileName": "tabs/index.d.ts", "line": 203, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L203" } ], "type": { @@ -109031,7 +109031,7 @@ "fileName": "tabs/index.d.ts", "line": 209, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L209" } ], "type": { @@ -109071,7 +109071,7 @@ "fileName": "tabs/index.d.ts", "line": 215, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L215" } ], "type": { @@ -109111,7 +109111,7 @@ "fileName": "tabs/index.d.ts", "line": 221, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L221" } ], "type": { @@ -109151,7 +109151,7 @@ "fileName": "tabs/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L227" } ], "type": { @@ -109177,7 +109177,7 @@ "fileName": "tabs/index.d.ts", "line": 197, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L197" } ] } @@ -109200,7 +109200,7 @@ "fileName": "tabs/index.d.ts", "line": 175, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L175" } ] } @@ -109227,7 +109227,7 @@ "fileName": "tabs/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L233" } ], "type": { @@ -109271,7 +109271,7 @@ "fileName": "tabs/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L239" } ], "type": { @@ -109311,7 +109311,7 @@ "fileName": "tabs/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L245" } ], "type": { @@ -109351,7 +109351,7 @@ "fileName": "tabs/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L251" } ], "type": { @@ -109391,7 +109391,7 @@ "fileName": "tabs/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L257" } ], "type": { @@ -109420,7 +109420,7 @@ "fileName": "tabs/index.d.ts", "line": 261, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L261" } ], "type": { @@ -109464,7 +109464,7 @@ "fileName": "tabs/index.d.ts", "line": 267, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L267" } ], "type": { @@ -109504,7 +109504,7 @@ "fileName": "tabs/index.d.ts", "line": 273, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L273" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L273" } ], "type": { @@ -109544,7 +109544,7 @@ "fileName": "tabs/index.d.ts", "line": 279, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L279" } ], "type": { @@ -109584,7 +109584,7 @@ "fileName": "tabs/index.d.ts", "line": 285, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L285" } ], "type": { @@ -109624,7 +109624,7 @@ "fileName": "tabs/index.d.ts", "line": 291, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L291" } ], "type": { @@ -109650,7 +109650,7 @@ "fileName": "tabs/index.d.ts", "line": 261, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L261" } ] } @@ -109688,7 +109688,7 @@ "fileName": "tabs/index.d.ts", "line": 298, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L298" } ], "type": { @@ -109715,7 +109715,7 @@ "fileName": "tabs/index.d.ts", "line": 233, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L233" } ] } @@ -109742,7 +109742,7 @@ "fileName": "tabs/index.d.ts", "line": 303, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L303" } ], "type": { @@ -109786,7 +109786,7 @@ "fileName": "tabs/index.d.ts", "line": 309, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L309" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L309" } ], "type": { @@ -109826,7 +109826,7 @@ "fileName": "tabs/index.d.ts", "line": 315, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L315" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L315" } ], "type": { @@ -109866,7 +109866,7 @@ "fileName": "tabs/index.d.ts", "line": 321, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L321" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L321" } ], "type": { @@ -109890,7 +109890,7 @@ "fileName": "tabs/index.d.ts", "line": 303, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L303" } ] } @@ -109916,7 +109916,7 @@ "fileName": "tabs/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L13" } ], "extendedTypes": [ @@ -109950,7 +109950,7 @@ "fileName": "tabs/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabs/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabs/index.d.ts#L1" } ] }, @@ -109989,7 +109989,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -110014,7 +110014,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -110052,7 +110052,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -110092,7 +110092,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -110124,7 +110124,7 @@ "fileName": "tabview/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L17" } ], "type": { @@ -110168,7 +110168,7 @@ "fileName": "tabview/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L23" } ], "type": { @@ -110190,7 +110190,7 @@ "fileName": "tabview/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L17" } ] } @@ -110217,7 +110217,7 @@ "fileName": "tabview/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L28" } ], "type": { @@ -110261,7 +110261,7 @@ "fileName": "tabview/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L34" } ], "type": { @@ -110301,7 +110301,7 @@ "fileName": "tabview/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L40" } ], "type": { @@ -110324,7 +110324,7 @@ "fileName": "tabview/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L28" } ] } @@ -110351,7 +110351,7 @@ "fileName": "tabview/index.d.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L45" } ], "type": { @@ -110395,7 +110395,7 @@ "fileName": "tabview/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L51" } ], "type": { @@ -110435,7 +110435,7 @@ "fileName": "tabview/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L57" } ], "type": { @@ -110475,7 +110475,7 @@ "fileName": "tabview/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L63" } ], "type": { @@ -110515,7 +110515,7 @@ "fileName": "tabview/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L69" } ], "type": { @@ -110555,7 +110555,7 @@ "fileName": "tabview/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L75" } ], "type": { @@ -110581,7 +110581,7 @@ "fileName": "tabview/index.d.ts", "line": 45, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L45" } ] } @@ -110608,7 +110608,7 @@ "fileName": "tabview/index.d.ts", "line": 80, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L80" } ], "type": { @@ -110652,7 +110652,7 @@ "fileName": "tabview/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L86" } ], "type": { @@ -110692,7 +110692,7 @@ "fileName": "tabview/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L92" } ], "type": { @@ -110715,7 +110715,7 @@ "fileName": "tabview/index.d.ts", "line": 80, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L80" } ] } @@ -110742,7 +110742,7 @@ "fileName": "tabview/index.d.ts", "line": 97, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L97" } ], "type": { @@ -110786,7 +110786,7 @@ "fileName": "tabview/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L103" } ], "type": { @@ -110826,7 +110826,7 @@ "fileName": "tabview/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L109" } ], "type": { @@ -110866,7 +110866,7 @@ "fileName": "tabview/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L115" } ], "type": { @@ -110906,7 +110906,7 @@ "fileName": "tabview/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L121" } ], "type": { @@ -110931,7 +110931,7 @@ "fileName": "tabview/index.d.ts", "line": 97, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L97" } ] } @@ -110956,7 +110956,7 @@ "fileName": "tabview/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L13" } ], "extendedTypes": [ @@ -110990,7 +110990,7 @@ "fileName": "tabview/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tabview/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tabview/index.d.ts#L1" } ] }, @@ -111029,7 +111029,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -111054,7 +111054,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -111092,7 +111092,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -111132,7 +111132,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -111164,7 +111164,7 @@ "fileName": "tag/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L17" } ], "type": { @@ -111208,7 +111208,7 @@ "fileName": "tag/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L23" } ], "type": { @@ -111248,7 +111248,7 @@ "fileName": "tag/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L29" } ], "type": { @@ -111288,7 +111288,7 @@ "fileName": "tag/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L35" } ], "type": { @@ -111328,7 +111328,7 @@ "fileName": "tag/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L41" } ], "type": { @@ -111368,7 +111368,7 @@ "fileName": "tag/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L47" } ], "type": { @@ -111408,7 +111408,7 @@ "fileName": "tag/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L53" } ], "type": { @@ -111435,7 +111435,7 @@ "fileName": "tag/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L17" } ] } @@ -111462,7 +111462,7 @@ "fileName": "tag/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L58" } ], "type": { @@ -111506,7 +111506,7 @@ "fileName": "tag/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L64" } ], "type": { @@ -111528,7 +111528,7 @@ "fileName": "tag/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L58" } ] } @@ -111555,7 +111555,7 @@ "fileName": "tag/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L69" } ], "type": { @@ -111599,7 +111599,7 @@ "fileName": "tag/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L75" } ], "type": { @@ -111639,7 +111639,7 @@ "fileName": "tag/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L81" } ], "type": { @@ -111662,7 +111662,7 @@ "fileName": "tag/index.d.ts", "line": 69, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L69" } ] } @@ -111689,7 +111689,7 @@ "fileName": "tag/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L86" } ], "type": { @@ -111733,7 +111733,7 @@ "fileName": "tag/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L92" } ], "type": { @@ -111773,7 +111773,7 @@ "fileName": "tag/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L98" } ], "type": { @@ -111796,7 +111796,7 @@ "fileName": "tag/index.d.ts", "line": 86, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L86" } ] } @@ -111823,7 +111823,7 @@ "fileName": "tag/index.d.ts", "line": 103, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L103" } ], "type": { @@ -111867,7 +111867,7 @@ "fileName": "tag/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L109" } ], "type": { @@ -111907,7 +111907,7 @@ "fileName": "tag/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L115" } ], "type": { @@ -111930,7 +111930,7 @@ "fileName": "tag/index.d.ts", "line": 103, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L103" } ] } @@ -111957,7 +111957,7 @@ "fileName": "tag/index.d.ts", "line": 120, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L120" } ], "type": { @@ -112001,7 +112001,7 @@ "fileName": "tag/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L126" } ], "type": { @@ -112041,7 +112041,7 @@ "fileName": "tag/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L132" } ], "type": { @@ -112064,7 +112064,7 @@ "fileName": "tag/index.d.ts", "line": 120, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L120" } ] } @@ -112091,7 +112091,7 @@ "fileName": "tag/index.d.ts", "line": 137, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L137" } ], "type": { @@ -112135,7 +112135,7 @@ "fileName": "tag/index.d.ts", "line": 143, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L143" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L143" } ], "type": { @@ -112175,7 +112175,7 @@ "fileName": "tag/index.d.ts", "line": 149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L149" } ], "type": { @@ -112198,7 +112198,7 @@ "fileName": "tag/index.d.ts", "line": 137, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L137" } ] } @@ -112225,7 +112225,7 @@ "fileName": "tag/index.d.ts", "line": 154, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L154" } ], "type": { @@ -112269,7 +112269,7 @@ "fileName": "tag/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L160" } ], "type": { @@ -112309,7 +112309,7 @@ "fileName": "tag/index.d.ts", "line": 166, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L166" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L166" } ], "type": { @@ -112332,7 +112332,7 @@ "fileName": "tag/index.d.ts", "line": 154, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L154" } ] } @@ -112359,7 +112359,7 @@ "fileName": "tag/index.d.ts", "line": 171, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L171" } ], "type": { @@ -112403,7 +112403,7 @@ "fileName": "tag/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L177" } ], "type": { @@ -112443,7 +112443,7 @@ "fileName": "tag/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L183" } ], "type": { @@ -112466,7 +112466,7 @@ "fileName": "tag/index.d.ts", "line": 171, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L171" } ] } @@ -112495,7 +112495,7 @@ "fileName": "tag/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L13" } ], "extendedTypes": [ @@ -112529,7 +112529,7 @@ "fileName": "tag/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tag/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tag/index.d.ts#L1" } ] }, @@ -112568,7 +112568,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -112593,7 +112593,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -112631,7 +112631,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -112671,7 +112671,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -112703,7 +112703,7 @@ "fileName": "terminal/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L17" } ], "type": { @@ -112747,7 +112747,7 @@ "fileName": "terminal/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L23" } ], "type": { @@ -112787,7 +112787,7 @@ "fileName": "terminal/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L29" } ], "type": { @@ -112827,7 +112827,7 @@ "fileName": "terminal/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L35" } ], "type": { @@ -112867,7 +112867,7 @@ "fileName": "terminal/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L41" } ], "type": { @@ -112907,7 +112907,7 @@ "fileName": "terminal/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L47" } ], "type": { @@ -112947,7 +112947,7 @@ "fileName": "terminal/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L53" } ], "type": { @@ -112974,7 +112974,7 @@ "fileName": "terminal/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L17" } ] } @@ -113001,7 +113001,7 @@ "fileName": "terminal/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L58" } ], "type": { @@ -113045,7 +113045,7 @@ "fileName": "terminal/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L64" } ], "type": { @@ -113067,7 +113067,7 @@ "fileName": "terminal/index.d.ts", "line": 58, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L58" } ] } @@ -113094,7 +113094,7 @@ "fileName": "terminal/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L69" } ], "type": { @@ -113138,7 +113138,7 @@ "fileName": "terminal/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L75" } ], "type": { @@ -113160,7 +113160,7 @@ "fileName": "terminal/index.d.ts", "line": 69, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L69" } ] } @@ -113183,7 +113183,7 @@ "fileName": "terminal/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L13" } ], "extendedTypes": [ @@ -113217,7 +113217,7 @@ "fileName": "terminal/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/terminal/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/terminal/index.d.ts#L1" } ] }, @@ -113256,7 +113256,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -113281,7 +113281,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -113319,7 +113319,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -113359,7 +113359,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -113391,7 +113391,7 @@ "fileName": "textarea/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L17" } ], "type": { @@ -113435,7 +113435,7 @@ "fileName": "textarea/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L23" } ], "type": { @@ -113475,7 +113475,7 @@ "fileName": "textarea/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L29" } ], "type": { @@ -113515,7 +113515,7 @@ "fileName": "textarea/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L35" } ], "type": { @@ -113555,7 +113555,7 @@ "fileName": "textarea/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L41" } ], "type": { @@ -113595,7 +113595,7 @@ "fileName": "textarea/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L47" } ], "type": { @@ -113635,7 +113635,7 @@ "fileName": "textarea/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L53" } ], "type": { @@ -113675,7 +113675,7 @@ "fileName": "textarea/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L59" } ], "type": { @@ -113715,7 +113715,7 @@ "fileName": "textarea/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L65" } ], "type": { @@ -113755,7 +113755,7 @@ "fileName": "textarea/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L71" } ], "type": { @@ -113795,7 +113795,7 @@ "fileName": "textarea/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L77" } ], "type": { @@ -113835,7 +113835,7 @@ "fileName": "textarea/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L83" } ], "type": { @@ -113875,7 +113875,7 @@ "fileName": "textarea/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L89" } ], "type": { @@ -113915,7 +113915,7 @@ "fileName": "textarea/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L95" } ], "type": { @@ -113955,7 +113955,7 @@ "fileName": "textarea/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L101" } ], "type": { @@ -113995,7 +113995,7 @@ "fileName": "textarea/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L107" } ], "type": { @@ -114024,7 +114024,7 @@ "fileName": "textarea/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L111" } ], "type": { @@ -114068,7 +114068,7 @@ "fileName": "textarea/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L117" } ], "type": { @@ -114108,7 +114108,7 @@ "fileName": "textarea/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L123" } ], "type": { @@ -114148,7 +114148,7 @@ "fileName": "textarea/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L129" } ], "type": { @@ -114188,7 +114188,7 @@ "fileName": "textarea/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L135" } ], "type": { @@ -114228,7 +114228,7 @@ "fileName": "textarea/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L141" } ], "type": { @@ -114254,7 +114254,7 @@ "fileName": "textarea/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L111" } ] } @@ -114292,7 +114292,7 @@ "fileName": "textarea/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L148" } ], "type": { @@ -114330,7 +114330,7 @@ "fileName": "textarea/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L17" } ] } @@ -114351,7 +114351,7 @@ "fileName": "textarea/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L13" } ], "extendedTypes": [ @@ -114385,7 +114385,7 @@ "fileName": "textarea/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/textarea/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/textarea/index.d.ts#L1" } ] }, @@ -114424,7 +114424,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -114449,7 +114449,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -114487,7 +114487,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -114527,7 +114527,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -114559,7 +114559,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L17" } ], "type": { @@ -114603,7 +114603,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L23" } ], "type": { @@ -114643,7 +114643,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L29" } ], "type": { @@ -114683,7 +114683,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L35" } ], "type": { @@ -114723,7 +114723,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L41" } ], "type": { @@ -114763,7 +114763,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L47" } ], "type": { @@ -114803,7 +114803,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L53" } ], "type": { @@ -114830,7 +114830,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L17" } ] } @@ -114857,7 +114857,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L58" } ], "type": { @@ -114901,7 +114901,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L64" } ], "type": { @@ -114941,7 +114941,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L70" } ], "type": { @@ -114964,7 +114964,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L58" } ] } @@ -114991,7 +114991,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L75" } ], "type": { @@ -115035,7 +115035,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L81" } ], "type": { @@ -115075,7 +115075,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L87" } ], "type": { @@ -115115,7 +115115,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L93" } ], "type": { @@ -115155,7 +115155,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L99" } ], "type": { @@ -115195,7 +115195,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L105" } ], "type": { @@ -115235,7 +115235,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L111" } ], "type": { @@ -115275,7 +115275,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L117" } ], "type": { @@ -115315,7 +115315,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L123" } ], "type": { @@ -115344,7 +115344,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L127" } ], "type": { @@ -115388,7 +115388,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L133" } ], "type": { @@ -115428,7 +115428,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L139" } ], "type": { @@ -115468,7 +115468,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L145" } ], "type": { @@ -115492,7 +115492,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 127, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L127" } ] } @@ -115520,7 +115520,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 75, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L75" } ] } @@ -115547,7 +115547,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 151, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L151" } ], "type": { @@ -115591,7 +115591,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L157" } ], "type": { @@ -115631,7 +115631,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L163" } ], "type": { @@ -115671,7 +115671,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L169" } ], "type": { @@ -115711,7 +115711,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L175" } ], "type": { @@ -115736,7 +115736,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 151, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L151" } ] } @@ -115763,7 +115763,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 180, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L180" } ], "type": { @@ -115807,7 +115807,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L186" } ], "type": { @@ -115847,7 +115847,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L192" } ], "type": { @@ -115887,7 +115887,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L198" } ], "type": { @@ -115927,7 +115927,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L204" } ], "type": { @@ -115952,7 +115952,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 180, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L180" } ] } @@ -115979,7 +115979,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 209, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L209" } ], "type": { @@ -116023,7 +116023,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L215" } ], "type": { @@ -116045,7 +116045,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 209, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L209" } ] } @@ -116071,7 +116071,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -116105,7 +116105,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tieredmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tieredmenu/index.d.ts#L1" } ] }, @@ -116144,7 +116144,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -116169,7 +116169,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -116207,7 +116207,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -116247,7 +116247,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -116279,7 +116279,7 @@ "fileName": "timeline/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L17" } ], "type": { @@ -116323,7 +116323,7 @@ "fileName": "timeline/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L23" } ], "type": { @@ -116345,7 +116345,7 @@ "fileName": "timeline/index.d.ts", "line": 17, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L17" } ] } @@ -116372,7 +116372,7 @@ "fileName": "timeline/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L28" } ], "type": { @@ -116405,7 +116405,7 @@ "fileName": "timeline/index.d.ts", "line": 32, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L32" } ], "type": { @@ -116449,7 +116449,7 @@ "fileName": "timeline/index.d.ts", "line": 38, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L38" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L38" } ], "type": { @@ -116471,7 +116471,7 @@ "fileName": "timeline/index.d.ts", "line": 32, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L32" } ] } @@ -116491,7 +116491,7 @@ "fileName": "timeline/index.d.ts", "line": 28, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L28" } ] } @@ -116518,7 +116518,7 @@ "fileName": "timeline/index.d.ts", "line": 44, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L44" } ], "type": { @@ -116551,7 +116551,7 @@ "fileName": "timeline/index.d.ts", "line": 48, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L48" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L48" } ], "type": { @@ -116595,7 +116595,7 @@ "fileName": "timeline/index.d.ts", "line": 54, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L54" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L54" } ], "type": { @@ -116617,7 +116617,7 @@ "fileName": "timeline/index.d.ts", "line": 48, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L48" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L48" } ] } @@ -116637,7 +116637,7 @@ "fileName": "timeline/index.d.ts", "line": 44, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L44" } ] } @@ -116664,7 +116664,7 @@ "fileName": "timeline/index.d.ts", "line": 60, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L60" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L60" } ], "type": { @@ -116708,7 +116708,7 @@ "fileName": "timeline/index.d.ts", "line": 66, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L66" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L66" } ], "type": { @@ -116748,7 +116748,7 @@ "fileName": "timeline/index.d.ts", "line": 72, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L72" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L72" } ], "type": { @@ -116788,7 +116788,7 @@ "fileName": "timeline/index.d.ts", "line": 78, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L78" } ], "type": { @@ -116828,7 +116828,7 @@ "fileName": "timeline/index.d.ts", "line": 84, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L84" } ], "type": { @@ -116868,7 +116868,7 @@ "fileName": "timeline/index.d.ts", "line": 90, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L90" } ], "type": { @@ -116897,7 +116897,7 @@ "fileName": "timeline/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L94" } ], "type": { @@ -116941,7 +116941,7 @@ "fileName": "timeline/index.d.ts", "line": 100, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L100" } ], "type": { @@ -116981,7 +116981,7 @@ "fileName": "timeline/index.d.ts", "line": 106, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L106" } ], "type": { @@ -117021,7 +117021,7 @@ "fileName": "timeline/index.d.ts", "line": 112, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L112" } ], "type": { @@ -117061,7 +117061,7 @@ "fileName": "timeline/index.d.ts", "line": 118, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L118" } ], "type": { @@ -117086,7 +117086,7 @@ "fileName": "timeline/index.d.ts", "line": 94, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L94" } ] } @@ -117111,7 +117111,7 @@ "fileName": "timeline/index.d.ts", "line": 60, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L60" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L60" } ] } @@ -117138,7 +117138,7 @@ "fileName": "timeline/index.d.ts", "line": 124, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L124" } ], "type": { @@ -117182,7 +117182,7 @@ "fileName": "timeline/index.d.ts", "line": 130, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L130" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L130" } ], "type": { @@ -117222,7 +117222,7 @@ "fileName": "timeline/index.d.ts", "line": 136, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L136" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L136" } ], "type": { @@ -117245,7 +117245,7 @@ "fileName": "timeline/index.d.ts", "line": 124, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L124" } ] } @@ -117270,7 +117270,7 @@ "fileName": "timeline/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L13" } ], "extendedTypes": [ @@ -117304,7 +117304,7 @@ "fileName": "timeline/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/timeline/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/timeline/index.d.ts#L1" } ] }, @@ -117343,7 +117343,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -117368,7 +117368,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -117406,7 +117406,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -117446,7 +117446,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -117478,7 +117478,7 @@ "fileName": "toast/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L17" } ], "type": { @@ -117522,7 +117522,7 @@ "fileName": "toast/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L23" } ], "type": { @@ -117562,7 +117562,7 @@ "fileName": "toast/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L29" } ], "type": { @@ -117602,7 +117602,7 @@ "fileName": "toast/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L35" } ], "type": { @@ -117642,7 +117642,7 @@ "fileName": "toast/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L41" } ], "type": { @@ -117667,7 +117667,7 @@ "fileName": "toast/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L17" } ] } @@ -117694,7 +117694,7 @@ "fileName": "toast/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L46" } ], "type": { @@ -117738,7 +117738,7 @@ "fileName": "toast/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L52" } ], "type": { @@ -117760,7 +117760,7 @@ "fileName": "toast/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L46" } ] } @@ -117787,7 +117787,7 @@ "fileName": "toast/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L57" } ], "type": { @@ -117831,7 +117831,7 @@ "fileName": "toast/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L63" } ], "type": { @@ -117871,7 +117871,7 @@ "fileName": "toast/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L69" } ], "type": { @@ -117894,7 +117894,7 @@ "fileName": "toast/index.d.ts", "line": 57, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L57" } ] } @@ -117921,7 +117921,7 @@ "fileName": "toast/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L74" } ], "type": { @@ -117965,7 +117965,7 @@ "fileName": "toast/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L80" } ], "type": { @@ -117987,7 +117987,7 @@ "fileName": "toast/index.d.ts", "line": 74, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L74" } ] } @@ -118014,7 +118014,7 @@ "fileName": "toast/index.d.ts", "line": 85, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L85" } ], "type": { @@ -118058,7 +118058,7 @@ "fileName": "toast/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L91" } ], "type": { @@ -118098,7 +118098,7 @@ "fileName": "toast/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L97" } ], "type": { @@ -118121,7 +118121,7 @@ "fileName": "toast/index.d.ts", "line": 85, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L85" } ] } @@ -118148,7 +118148,7 @@ "fileName": "toast/index.d.ts", "line": 102, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L102" } ], "type": { @@ -118192,7 +118192,7 @@ "fileName": "toast/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L108" } ], "type": { @@ -118232,7 +118232,7 @@ "fileName": "toast/index.d.ts", "line": 114, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L114" } ], "type": { @@ -118255,7 +118255,7 @@ "fileName": "toast/index.d.ts", "line": 102, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L102" } ] } @@ -118282,7 +118282,7 @@ "fileName": "toast/index.d.ts", "line": 119, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L119" } ], "type": { @@ -118326,7 +118326,7 @@ "fileName": "toast/index.d.ts", "line": 125, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L125" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L125" } ], "type": { @@ -118366,7 +118366,7 @@ "fileName": "toast/index.d.ts", "line": 131, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L131" } ], "type": { @@ -118406,7 +118406,7 @@ "fileName": "toast/index.d.ts", "line": 137, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L137" } ], "type": { @@ -118435,7 +118435,7 @@ "fileName": "toast/index.d.ts", "line": 141, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L141" } ], "type": { @@ -118479,7 +118479,7 @@ "fileName": "toast/index.d.ts", "line": 147, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L147" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L147" } ], "type": { @@ -118519,7 +118519,7 @@ "fileName": "toast/index.d.ts", "line": 153, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L153" } ], "type": { @@ -118559,7 +118559,7 @@ "fileName": "toast/index.d.ts", "line": 159, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L159" } ], "type": { @@ -118583,7 +118583,7 @@ "fileName": "toast/index.d.ts", "line": 141, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L141" } ] } @@ -118606,7 +118606,7 @@ "fileName": "toast/index.d.ts", "line": 119, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L119" } ] } @@ -118633,7 +118633,7 @@ "fileName": "toast/index.d.ts", "line": 165, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L165" } ], "type": { @@ -118677,7 +118677,7 @@ "fileName": "toast/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L171" } ], "type": { @@ -118699,7 +118699,7 @@ "fileName": "toast/index.d.ts", "line": 165, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L165" } ] } @@ -118726,7 +118726,7 @@ "fileName": "toast/index.d.ts", "line": 176, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L176" } ], "type": { @@ -118770,7 +118770,7 @@ "fileName": "toast/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L182" } ], "type": { @@ -118810,7 +118810,7 @@ "fileName": "toast/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L188" } ], "type": { @@ -118850,7 +118850,7 @@ "fileName": "toast/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L194" } ], "type": { @@ -118890,7 +118890,7 @@ "fileName": "toast/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L200" } ], "type": { @@ -118930,7 +118930,7 @@ "fileName": "toast/index.d.ts", "line": 206, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L206" } ], "type": { @@ -118956,7 +118956,7 @@ "fileName": "toast/index.d.ts", "line": 176, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L176" } ] } @@ -118983,7 +118983,7 @@ "fileName": "toast/index.d.ts", "line": 211, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L211" } ], "type": { @@ -119027,7 +119027,7 @@ "fileName": "toast/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L217" } ], "type": { @@ -119067,7 +119067,7 @@ "fileName": "toast/index.d.ts", "line": 223, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L223" } ], "type": { @@ -119107,7 +119107,7 @@ "fileName": "toast/index.d.ts", "line": 229, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L229" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L229" } ], "type": { @@ -119147,7 +119147,7 @@ "fileName": "toast/index.d.ts", "line": 235, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L235" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L235" } ], "type": { @@ -119187,7 +119187,7 @@ "fileName": "toast/index.d.ts", "line": 241, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L241" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L241" } ], "type": { @@ -119216,7 +119216,7 @@ "fileName": "toast/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L245" } ], "type": { @@ -119260,7 +119260,7 @@ "fileName": "toast/index.d.ts", "line": 251, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L251" } ], "type": { @@ -119289,7 +119289,7 @@ "fileName": "toast/index.d.ts", "line": 255, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L255" } ], "type": { @@ -119333,7 +119333,7 @@ "fileName": "toast/index.d.ts", "line": 261, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L261" } ], "type": { @@ -119373,7 +119373,7 @@ "fileName": "toast/index.d.ts", "line": 267, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L267" } ], "type": { @@ -119396,7 +119396,7 @@ "fileName": "toast/index.d.ts", "line": 255, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L255" } ] } @@ -119417,7 +119417,7 @@ "fileName": "toast/index.d.ts", "line": 245, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L245" } ] } @@ -119442,7 +119442,7 @@ "fileName": "toast/index.d.ts", "line": 211, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L211" } ] } @@ -119469,7 +119469,7 @@ "fileName": "toast/index.d.ts", "line": 274, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L274" } ], "type": { @@ -119513,7 +119513,7 @@ "fileName": "toast/index.d.ts", "line": 280, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L280" } ], "type": { @@ -119553,7 +119553,7 @@ "fileName": "toast/index.d.ts", "line": 286, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L286" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L286" } ], "type": { @@ -119593,7 +119593,7 @@ "fileName": "toast/index.d.ts", "line": 292, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L292" } ], "type": { @@ -119633,7 +119633,7 @@ "fileName": "toast/index.d.ts", "line": 298, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L298" } ], "type": { @@ -119673,7 +119673,7 @@ "fileName": "toast/index.d.ts", "line": 304, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L304" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L304" } ], "type": { @@ -119702,7 +119702,7 @@ "fileName": "toast/index.d.ts", "line": 308, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L308" } ], "type": { @@ -119746,7 +119746,7 @@ "fileName": "toast/index.d.ts", "line": 314, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L314" } ], "type": { @@ -119775,7 +119775,7 @@ "fileName": "toast/index.d.ts", "line": 318, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L318" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L318" } ], "type": { @@ -119819,7 +119819,7 @@ "fileName": "toast/index.d.ts", "line": 324, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L324" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L324" } ], "type": { @@ -119859,7 +119859,7 @@ "fileName": "toast/index.d.ts", "line": 330, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L330" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L330" } ], "type": { @@ -119882,7 +119882,7 @@ "fileName": "toast/index.d.ts", "line": 318, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L318" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L318" } ] } @@ -119903,7 +119903,7 @@ "fileName": "toast/index.d.ts", "line": 308, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L308" } ] } @@ -119928,7 +119928,7 @@ "fileName": "toast/index.d.ts", "line": 274, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L274" } ] } @@ -119955,7 +119955,7 @@ "fileName": "toast/index.d.ts", "line": 337, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L337" } ], "type": { @@ -119999,7 +119999,7 @@ "fileName": "toast/index.d.ts", "line": 343, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L343" } ], "type": { @@ -120039,7 +120039,7 @@ "fileName": "toast/index.d.ts", "line": 349, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L349" } ], "type": { @@ -120079,7 +120079,7 @@ "fileName": "toast/index.d.ts", "line": 355, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L355" } ], "type": { @@ -120119,7 +120119,7 @@ "fileName": "toast/index.d.ts", "line": 361, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L361" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L361" } ], "type": { @@ -120159,7 +120159,7 @@ "fileName": "toast/index.d.ts", "line": 367, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L367" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L367" } ], "type": { @@ -120188,7 +120188,7 @@ "fileName": "toast/index.d.ts", "line": 371, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L371" } ], "type": { @@ -120232,7 +120232,7 @@ "fileName": "toast/index.d.ts", "line": 377, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L377" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L377" } ], "type": { @@ -120261,7 +120261,7 @@ "fileName": "toast/index.d.ts", "line": 381, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L381" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L381" } ], "type": { @@ -120305,7 +120305,7 @@ "fileName": "toast/index.d.ts", "line": 387, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L387" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L387" } ], "type": { @@ -120345,7 +120345,7 @@ "fileName": "toast/index.d.ts", "line": 393, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L393" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L393" } ], "type": { @@ -120368,7 +120368,7 @@ "fileName": "toast/index.d.ts", "line": 381, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L381" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L381" } ] } @@ -120389,7 +120389,7 @@ "fileName": "toast/index.d.ts", "line": 371, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L371" } ] } @@ -120414,7 +120414,7 @@ "fileName": "toast/index.d.ts", "line": 337, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L337" } ] } @@ -120441,7 +120441,7 @@ "fileName": "toast/index.d.ts", "line": 400, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L400" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L400" } ], "type": { @@ -120485,7 +120485,7 @@ "fileName": "toast/index.d.ts", "line": 406, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L406" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L406" } ], "type": { @@ -120525,7 +120525,7 @@ "fileName": "toast/index.d.ts", "line": 412, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L412" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L412" } ], "type": { @@ -120565,7 +120565,7 @@ "fileName": "toast/index.d.ts", "line": 418, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L418" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L418" } ], "type": { @@ -120605,7 +120605,7 @@ "fileName": "toast/index.d.ts", "line": 424, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L424" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L424" } ], "type": { @@ -120645,7 +120645,7 @@ "fileName": "toast/index.d.ts", "line": 430, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L430" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L430" } ], "type": { @@ -120674,7 +120674,7 @@ "fileName": "toast/index.d.ts", "line": 434, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L434" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L434" } ], "type": { @@ -120718,7 +120718,7 @@ "fileName": "toast/index.d.ts", "line": 440, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L440" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L440" } ], "type": { @@ -120747,7 +120747,7 @@ "fileName": "toast/index.d.ts", "line": 444, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L444" } ], "type": { @@ -120791,7 +120791,7 @@ "fileName": "toast/index.d.ts", "line": 450, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L450" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L450" } ], "type": { @@ -120831,7 +120831,7 @@ "fileName": "toast/index.d.ts", "line": 456, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L456" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L456" } ], "type": { @@ -120854,7 +120854,7 @@ "fileName": "toast/index.d.ts", "line": 444, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L444" } ] } @@ -120875,7 +120875,7 @@ "fileName": "toast/index.d.ts", "line": 434, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L434" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L434" } ] } @@ -120900,7 +120900,7 @@ "fileName": "toast/index.d.ts", "line": 400, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L400" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L400" } ] } @@ -120927,7 +120927,7 @@ "fileName": "toast/index.d.ts", "line": 463, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L463" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L463" } ], "type": { @@ -120971,7 +120971,7 @@ "fileName": "toast/index.d.ts", "line": 469, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L469" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L469" } ], "type": { @@ -121011,7 +121011,7 @@ "fileName": "toast/index.d.ts", "line": 475, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L475" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L475" } ], "type": { @@ -121051,7 +121051,7 @@ "fileName": "toast/index.d.ts", "line": 481, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L481" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L481" } ], "type": { @@ -121091,7 +121091,7 @@ "fileName": "toast/index.d.ts", "line": 487, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L487" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L487" } ], "type": { @@ -121131,7 +121131,7 @@ "fileName": "toast/index.d.ts", "line": 493, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L493" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L493" } ], "type": { @@ -121160,7 +121160,7 @@ "fileName": "toast/index.d.ts", "line": 497, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L497" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L497" } ], "type": { @@ -121204,7 +121204,7 @@ "fileName": "toast/index.d.ts", "line": 503, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L503" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L503" } ], "type": { @@ -121233,7 +121233,7 @@ "fileName": "toast/index.d.ts", "line": 507, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L507" } ], "type": { @@ -121277,7 +121277,7 @@ "fileName": "toast/index.d.ts", "line": 513, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L513" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L513" } ], "type": { @@ -121317,7 +121317,7 @@ "fileName": "toast/index.d.ts", "line": 519, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L519" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L519" } ], "type": { @@ -121340,7 +121340,7 @@ "fileName": "toast/index.d.ts", "line": 507, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L507" } ] } @@ -121361,7 +121361,7 @@ "fileName": "toast/index.d.ts", "line": 497, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L497" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L497" } ] } @@ -121386,7 +121386,7 @@ "fileName": "toast/index.d.ts", "line": 463, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L463" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L463" } ] } @@ -121413,7 +121413,7 @@ "fileName": "toast/index.d.ts", "line": 526, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L526" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L526" } ], "type": { @@ -121457,7 +121457,7 @@ "fileName": "toast/index.d.ts", "line": 532, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L532" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L532" } ], "type": { @@ -121497,7 +121497,7 @@ "fileName": "toast/index.d.ts", "line": 538, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L538" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L538" } ], "type": { @@ -121537,7 +121537,7 @@ "fileName": "toast/index.d.ts", "line": 544, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L544" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L544" } ], "type": { @@ -121577,7 +121577,7 @@ "fileName": "toast/index.d.ts", "line": 550, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L550" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L550" } ], "type": { @@ -121617,7 +121617,7 @@ "fileName": "toast/index.d.ts", "line": 556, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L556" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L556" } ], "type": { @@ -121646,7 +121646,7 @@ "fileName": "toast/index.d.ts", "line": 560, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L560" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L560" } ], "type": { @@ -121690,7 +121690,7 @@ "fileName": "toast/index.d.ts", "line": 566, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L566" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L566" } ], "type": { @@ -121719,7 +121719,7 @@ "fileName": "toast/index.d.ts", "line": 570, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L570" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L570" } ], "type": { @@ -121763,7 +121763,7 @@ "fileName": "toast/index.d.ts", "line": 576, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L576" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L576" } ], "type": { @@ -121803,7 +121803,7 @@ "fileName": "toast/index.d.ts", "line": 582, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L582" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L582" } ], "type": { @@ -121826,7 +121826,7 @@ "fileName": "toast/index.d.ts", "line": 570, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L570" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L570" } ] } @@ -121847,7 +121847,7 @@ "fileName": "toast/index.d.ts", "line": 560, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L560" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L560" } ] } @@ -121872,7 +121872,7 @@ "fileName": "toast/index.d.ts", "line": 526, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L526" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L526" } ] } @@ -121907,7 +121907,7 @@ "fileName": "toast/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L13" } ], "extendedTypes": [ @@ -121941,7 +121941,7 @@ "fileName": "toast/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toast/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toast/index.d.ts#L1" } ] }, @@ -121980,7 +121980,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -122005,7 +122005,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -122043,7 +122043,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -122083,7 +122083,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -122115,7 +122115,7 @@ "fileName": "togglebutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L17" } ], "type": { @@ -122159,7 +122159,7 @@ "fileName": "togglebutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L23" } ], "type": { @@ -122199,7 +122199,7 @@ "fileName": "togglebutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L29" } ], "type": { @@ -122239,7 +122239,7 @@ "fileName": "togglebutton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L35" } ], "type": { @@ -122279,7 +122279,7 @@ "fileName": "togglebutton/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L41" } ], "type": { @@ -122319,7 +122319,7 @@ "fileName": "togglebutton/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L47" } ], "type": { @@ -122359,7 +122359,7 @@ "fileName": "togglebutton/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L53" } ], "type": { @@ -122399,7 +122399,7 @@ "fileName": "togglebutton/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L59" } ], "type": { @@ -122439,7 +122439,7 @@ "fileName": "togglebutton/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L65" } ], "type": { @@ -122468,7 +122468,7 @@ "fileName": "togglebutton/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L69" } ], "type": { @@ -122512,7 +122512,7 @@ "fileName": "togglebutton/index.d.ts", "line": 75, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L75" } ], "type": { @@ -122552,7 +122552,7 @@ "fileName": "togglebutton/index.d.ts", "line": 81, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L81" } ], "type": { @@ -122592,7 +122592,7 @@ "fileName": "togglebutton/index.d.ts", "line": 87, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L87" } ], "type": { @@ -122632,7 +122632,7 @@ "fileName": "togglebutton/index.d.ts", "line": 93, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L93" } ], "type": { @@ -122672,7 +122672,7 @@ "fileName": "togglebutton/index.d.ts", "line": 99, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L99" } ], "type": { @@ -122698,7 +122698,7 @@ "fileName": "togglebutton/index.d.ts", "line": 69, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L69" } ] } @@ -122736,7 +122736,7 @@ "fileName": "togglebutton/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L106" } ], "type": { @@ -122776,7 +122776,7 @@ "fileName": "togglebutton/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L112" } ], "type": { @@ -122816,7 +122816,7 @@ "fileName": "togglebutton/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L118" } ], "type": { @@ -122856,7 +122856,7 @@ "fileName": "togglebutton/index.d.ts", "line": 124, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L124" } ], "type": { @@ -122896,7 +122896,7 @@ "fileName": "togglebutton/index.d.ts", "line": 130, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L130" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L130" } ], "type": { @@ -122936,7 +122936,7 @@ "fileName": "togglebutton/index.d.ts", "line": 136, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L136" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L136" } ], "type": { @@ -122976,7 +122976,7 @@ "fileName": "togglebutton/index.d.ts", "line": 142, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L142" } ], "type": { @@ -123016,7 +123016,7 @@ "fileName": "togglebutton/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L148" } ], "type": { @@ -123056,7 +123056,7 @@ "fileName": "togglebutton/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L154" } ], "type": { @@ -123095,7 +123095,7 @@ "fileName": "togglebutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L17" } ] } @@ -123122,7 +123122,7 @@ "fileName": "togglebutton/index.d.ts", "line": 159, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L159" } ], "type": { @@ -123166,7 +123166,7 @@ "fileName": "togglebutton/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L165" } ], "type": { @@ -123206,7 +123206,7 @@ "fileName": "togglebutton/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L171" } ], "type": { @@ -123246,7 +123246,7 @@ "fileName": "togglebutton/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L177" } ], "type": { @@ -123286,7 +123286,7 @@ "fileName": "togglebutton/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L183" } ], "type": { @@ -123311,7 +123311,7 @@ "fileName": "togglebutton/index.d.ts", "line": 159, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L159" } ] } @@ -123338,7 +123338,7 @@ "fileName": "togglebutton/index.d.ts", "line": 188, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L188" } ], "type": { @@ -123382,7 +123382,7 @@ "fileName": "togglebutton/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L194" } ], "type": { @@ -123422,7 +123422,7 @@ "fileName": "togglebutton/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L200" } ], "type": { @@ -123462,7 +123462,7 @@ "fileName": "togglebutton/index.d.ts", "line": 206, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L206" } ], "type": { @@ -123502,7 +123502,7 @@ "fileName": "togglebutton/index.d.ts", "line": 212, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L212" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L212" } ], "type": { @@ -123527,7 +123527,7 @@ "fileName": "togglebutton/index.d.ts", "line": 188, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L188" } ] } @@ -123550,7 +123550,7 @@ "fileName": "togglebutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -123584,7 +123584,7 @@ "fileName": "togglebutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/togglebutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/togglebutton/index.d.ts#L1" } ] }, @@ -123623,7 +123623,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -123648,7 +123648,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -123686,7 +123686,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -123726,7 +123726,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -123758,7 +123758,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L17" } ], "type": { @@ -123802,7 +123802,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L23" } ], "type": { @@ -123842,7 +123842,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L29" } ], "type": { @@ -123882,7 +123882,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L35" } ], "type": { @@ -123922,7 +123922,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L41" } ], "type": { @@ -123962,7 +123962,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L47" } ], "type": { @@ -123991,7 +123991,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L51" } ], "type": { @@ -124035,7 +124035,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L57" } ], "type": { @@ -124075,7 +124075,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L63" } ], "type": { @@ -124115,7 +124115,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L69" } ], "type": { @@ -124155,7 +124155,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 75, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L75" } ], "type": { @@ -124195,7 +124195,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 81, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L81" } ], "type": { @@ -124221,7 +124221,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 51, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L51" } ] } @@ -124259,7 +124259,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L88" } ], "type": { @@ -124299,7 +124299,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L94" } ], "type": { @@ -124339,7 +124339,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L100" } ], "type": { @@ -124379,7 +124379,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L106" } ], "type": { @@ -124419,7 +124419,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L112" } ], "type": { @@ -124459,7 +124459,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L118" } ], "type": { @@ -124499,7 +124499,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 124, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L124" } ], "type": { @@ -124539,7 +124539,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 130, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L130" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L130" } ], "type": { @@ -124579,7 +124579,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 136, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L136" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L136" } ], "type": { @@ -124619,7 +124619,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 142, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L142" } ], "type": { @@ -124659,7 +124659,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L148" } ], "type": { @@ -124699,7 +124699,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L154" } ], "type": { @@ -124739,7 +124739,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L160" } ], "type": { @@ -124779,7 +124779,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L17" } ] } @@ -124806,7 +124806,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 165, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L165" } ], "type": { @@ -124850,7 +124850,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L171" } ], "type": { @@ -124890,7 +124890,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L177" } ], "type": { @@ -124930,7 +124930,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L183" } ], "type": { @@ -124970,7 +124970,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 189, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L189" } ], "type": { @@ -125010,7 +125010,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L195" } ], "type": { @@ -125050,7 +125050,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 201, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L201" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L201" } ], "type": { @@ -125090,7 +125090,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 207, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L207" } ], "type": { @@ -125118,7 +125118,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 165, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L165" } ] } @@ -125140,7 +125140,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L13" } ], "extendedTypes": [ @@ -125174,7 +125174,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toggleswitch/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toggleswitch/index.d.ts#L1" } ] }, @@ -125213,7 +125213,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -125238,7 +125238,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -125276,7 +125276,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -125316,7 +125316,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -125348,7 +125348,7 @@ "fileName": "toolbar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L17" } ], "type": { @@ -125392,7 +125392,7 @@ "fileName": "toolbar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L23" } ], "type": { @@ -125432,7 +125432,7 @@ "fileName": "toolbar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L29" } ], "type": { @@ -125472,7 +125472,7 @@ "fileName": "toolbar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L35" } ], "type": { @@ -125512,7 +125512,7 @@ "fileName": "toolbar/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L41" } ], "type": { @@ -125552,7 +125552,7 @@ "fileName": "toolbar/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L47" } ], "type": { @@ -125592,7 +125592,7 @@ "fileName": "toolbar/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L53" } ], "type": { @@ -125619,7 +125619,7 @@ "fileName": "toolbar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L17" } ] } @@ -125640,7 +125640,7 @@ "fileName": "toolbar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L13" } ], "extendedTypes": [ @@ -125674,7 +125674,7 @@ "fileName": "toolbar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/toolbar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/toolbar/index.d.ts#L1" } ] }, @@ -125713,7 +125713,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -125738,7 +125738,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -125776,7 +125776,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -125816,7 +125816,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -125848,7 +125848,7 @@ "fileName": "tooltip/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L17" } ], "type": { @@ -125892,7 +125892,7 @@ "fileName": "tooltip/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L23" } ], "type": { @@ -125932,7 +125932,7 @@ "fileName": "tooltip/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L29" } ], "type": { @@ -125972,7 +125972,7 @@ "fileName": "tooltip/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L35" } ], "type": { @@ -126012,7 +126012,7 @@ "fileName": "tooltip/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L41" } ], "type": { @@ -126052,7 +126052,7 @@ "fileName": "tooltip/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L47" } ], "type": { @@ -126092,7 +126092,7 @@ "fileName": "tooltip/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L53" } ], "type": { @@ -126132,7 +126132,7 @@ "fileName": "tooltip/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L59" } ], "type": { @@ -126160,7 +126160,7 @@ "fileName": "tooltip/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L17" } ] } @@ -126181,7 +126181,7 @@ "fileName": "tooltip/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L13" } ], "extendedTypes": [ @@ -126215,7 +126215,7 @@ "fileName": "tooltip/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tooltip/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tooltip/index.d.ts#L1" } ] }, @@ -126254,7 +126254,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -126279,7 +126279,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -126317,7 +126317,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -126357,7 +126357,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -126389,7 +126389,7 @@ "fileName": "tree/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L17" } ], "type": { @@ -126433,7 +126433,7 @@ "fileName": "tree/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L23" } ], "type": { @@ -126473,7 +126473,7 @@ "fileName": "tree/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L29" } ], "type": { @@ -126513,7 +126513,7 @@ "fileName": "tree/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L35" } ], "type": { @@ -126553,7 +126553,7 @@ "fileName": "tree/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L41" } ], "type": { @@ -126593,7 +126593,7 @@ "fileName": "tree/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L47" } ], "type": { @@ -126633,7 +126633,7 @@ "fileName": "tree/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L53" } ], "type": { @@ -126660,7 +126660,7 @@ "fileName": "tree/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L17" } ] } @@ -126687,7 +126687,7 @@ "fileName": "tree/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L58" } ], "type": { @@ -126731,7 +126731,7 @@ "fileName": "tree/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L64" } ], "type": { @@ -126771,7 +126771,7 @@ "fileName": "tree/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L70" } ], "type": { @@ -126811,7 +126811,7 @@ "fileName": "tree/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L76" } ], "type": { @@ -126851,7 +126851,7 @@ "fileName": "tree/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L82" } ], "type": { @@ -126891,7 +126891,7 @@ "fileName": "tree/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L88" } ], "type": { @@ -126931,7 +126931,7 @@ "fileName": "tree/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L94" } ], "type": { @@ -126971,7 +126971,7 @@ "fileName": "tree/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L100" } ], "type": { @@ -127000,7 +127000,7 @@ "fileName": "tree/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L104" } ], "type": { @@ -127044,7 +127044,7 @@ "fileName": "tree/index.d.ts", "line": 110, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L110" } ], "type": { @@ -127084,7 +127084,7 @@ "fileName": "tree/index.d.ts", "line": 116, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L116" } ], "type": { @@ -127124,7 +127124,7 @@ "fileName": "tree/index.d.ts", "line": 122, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L122" } ], "type": { @@ -127164,7 +127164,7 @@ "fileName": "tree/index.d.ts", "line": 128, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L128" } ], "type": { @@ -127204,7 +127204,7 @@ "fileName": "tree/index.d.ts", "line": 134, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L134" } ], "type": { @@ -127230,7 +127230,7 @@ "fileName": "tree/index.d.ts", "line": 104, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L104" } ] } @@ -127268,7 +127268,7 @@ "fileName": "tree/index.d.ts", "line": 141, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L141" } ], "type": { @@ -127298,7 +127298,7 @@ "fileName": "tree/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L58" } ] } @@ -127325,7 +127325,7 @@ "fileName": "tree/index.d.ts", "line": 146, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L146" } ], "type": { @@ -127369,7 +127369,7 @@ "fileName": "tree/index.d.ts", "line": 152, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L152" } ], "type": { @@ -127409,7 +127409,7 @@ "fileName": "tree/index.d.ts", "line": 158, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L158" } ], "type": { @@ -127449,7 +127449,7 @@ "fileName": "tree/index.d.ts", "line": 164, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L164" } ], "type": { @@ -127473,7 +127473,7 @@ "fileName": "tree/index.d.ts", "line": 146, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L146" } ] } @@ -127500,7 +127500,7 @@ "fileName": "tree/index.d.ts", "line": 169, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L169" } ], "type": { @@ -127544,7 +127544,7 @@ "fileName": "tree/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L175" } ], "type": { @@ -127584,7 +127584,7 @@ "fileName": "tree/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L181" } ], "type": { @@ -127624,7 +127624,7 @@ "fileName": "tree/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L187" } ], "type": { @@ -127664,7 +127664,7 @@ "fileName": "tree/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L193" } ], "type": { @@ -127704,7 +127704,7 @@ "fileName": "tree/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L199" } ], "type": { @@ -127744,7 +127744,7 @@ "fileName": "tree/index.d.ts", "line": 205, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L205" } ], "type": { @@ -127784,7 +127784,7 @@ "fileName": "tree/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L211" } ], "type": { @@ -127813,7 +127813,7 @@ "fileName": "tree/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L215" } ], "type": { @@ -127857,7 +127857,7 @@ "fileName": "tree/index.d.ts", "line": 221, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L221" } ], "type": { @@ -127897,7 +127897,7 @@ "fileName": "tree/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L227" } ], "type": { @@ -127937,7 +127937,7 @@ "fileName": "tree/index.d.ts", "line": 233, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L233" } ], "type": { @@ -127977,7 +127977,7 @@ "fileName": "tree/index.d.ts", "line": 239, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L239" } ], "type": { @@ -128017,7 +128017,7 @@ "fileName": "tree/index.d.ts", "line": 245, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L245" } ], "type": { @@ -128043,7 +128043,7 @@ "fileName": "tree/index.d.ts", "line": 215, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L215" } ] } @@ -128070,7 +128070,7 @@ "fileName": "tree/index.d.ts", "line": 169, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L169" } ] } @@ -128097,7 +128097,7 @@ "fileName": "tree/index.d.ts", "line": 251, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L251" } ], "type": { @@ -128141,7 +128141,7 @@ "fileName": "tree/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L257" } ], "type": { @@ -128163,7 +128163,7 @@ "fileName": "tree/index.d.ts", "line": 251, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L251" } ] } @@ -128188,7 +128188,7 @@ "fileName": "tree/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L13" } ], "extendedTypes": [ @@ -128222,7 +128222,7 @@ "fileName": "tree/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/tree/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/tree/index.d.ts#L1" } ] }, @@ -128261,7 +128261,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -128286,7 +128286,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -128324,7 +128324,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -128364,7 +128364,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -128396,7 +128396,7 @@ "fileName": "treeselect/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L17" } ], "type": { @@ -128440,7 +128440,7 @@ "fileName": "treeselect/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L23" } ], "type": { @@ -128480,7 +128480,7 @@ "fileName": "treeselect/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L29" } ], "type": { @@ -128520,7 +128520,7 @@ "fileName": "treeselect/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L35" } ], "type": { @@ -128560,7 +128560,7 @@ "fileName": "treeselect/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L41" } ], "type": { @@ -128600,7 +128600,7 @@ "fileName": "treeselect/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L47" } ], "type": { @@ -128640,7 +128640,7 @@ "fileName": "treeselect/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L53" } ], "type": { @@ -128680,7 +128680,7 @@ "fileName": "treeselect/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L59" } ], "type": { @@ -128720,7 +128720,7 @@ "fileName": "treeselect/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L65" } ], "type": { @@ -128760,7 +128760,7 @@ "fileName": "treeselect/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L71" } ], "type": { @@ -128800,7 +128800,7 @@ "fileName": "treeselect/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L77" } ], "type": { @@ -128840,7 +128840,7 @@ "fileName": "treeselect/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L83" } ], "type": { @@ -128880,7 +128880,7 @@ "fileName": "treeselect/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L89" } ], "type": { @@ -128920,7 +128920,7 @@ "fileName": "treeselect/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L95" } ], "type": { @@ -128960,7 +128960,7 @@ "fileName": "treeselect/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L101" } ], "type": { @@ -129000,7 +129000,7 @@ "fileName": "treeselect/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L107" } ], "type": { @@ -129029,7 +129029,7 @@ "fileName": "treeselect/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L111" } ], "type": { @@ -129073,7 +129073,7 @@ "fileName": "treeselect/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L117" } ], "type": { @@ -129113,7 +129113,7 @@ "fileName": "treeselect/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L123" } ], "type": { @@ -129153,7 +129153,7 @@ "fileName": "treeselect/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L129" } ], "type": { @@ -129193,7 +129193,7 @@ "fileName": "treeselect/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L135" } ], "type": { @@ -129233,7 +129233,7 @@ "fileName": "treeselect/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L141" } ], "type": { @@ -129259,7 +129259,7 @@ "fileName": "treeselect/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L111" } ] } @@ -129297,7 +129297,7 @@ "fileName": "treeselect/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L148" } ], "type": { @@ -129335,7 +129335,7 @@ "fileName": "treeselect/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L17" } ] } @@ -129362,7 +129362,7 @@ "fileName": "treeselect/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L153" } ], "type": { @@ -129406,7 +129406,7 @@ "fileName": "treeselect/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L159" } ], "type": { @@ -129446,7 +129446,7 @@ "fileName": "treeselect/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L165" } ], "type": { @@ -129469,7 +129469,7 @@ "fileName": "treeselect/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L153" } ] } @@ -129496,7 +129496,7 @@ "fileName": "treeselect/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L170" } ], "type": { @@ -129540,7 +129540,7 @@ "fileName": "treeselect/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L176" } ], "type": { @@ -129580,7 +129580,7 @@ "fileName": "treeselect/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L182" } ], "type": { @@ -129620,7 +129620,7 @@ "fileName": "treeselect/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L188" } ], "type": { @@ -129660,7 +129660,7 @@ "fileName": "treeselect/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L194" } ], "type": { @@ -129700,7 +129700,7 @@ "fileName": "treeselect/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L200" } ], "type": { @@ -129726,7 +129726,7 @@ "fileName": "treeselect/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L170" } ] } @@ -129753,7 +129753,7 @@ "fileName": "treeselect/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L205" } ], "type": { @@ -129797,7 +129797,7 @@ "fileName": "treeselect/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L211" } ], "type": { @@ -129819,7 +129819,7 @@ "fileName": "treeselect/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L205" } ] } @@ -129846,7 +129846,7 @@ "fileName": "treeselect/index.d.ts", "line": 216, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L216" } ], "type": { @@ -129890,7 +129890,7 @@ "fileName": "treeselect/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L222" } ], "type": { @@ -129912,7 +129912,7 @@ "fileName": "treeselect/index.d.ts", "line": 216, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L216" } ] } @@ -129939,7 +129939,7 @@ "fileName": "treeselect/index.d.ts", "line": 227, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L227" } ], "type": { @@ -129983,7 +129983,7 @@ "fileName": "treeselect/index.d.ts", "line": 233, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L233" } ], "type": { @@ -130005,7 +130005,7 @@ "fileName": "treeselect/index.d.ts", "line": 227, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L227" } ] } @@ -130031,7 +130031,7 @@ "fileName": "treeselect/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L13" } ], "extendedTypes": [ @@ -130065,7 +130065,7 @@ "fileName": "treeselect/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treeselect/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treeselect/index.d.ts#L1" } ] }, @@ -130104,7 +130104,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -130129,7 +130129,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -130167,7 +130167,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -130207,7 +130207,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -130239,7 +130239,7 @@ "fileName": "treetable/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L17" } ], "type": { @@ -130283,7 +130283,7 @@ "fileName": "treetable/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L23" } ], "type": { @@ -130323,7 +130323,7 @@ "fileName": "treetable/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L29" } ], "type": { @@ -130346,7 +130346,7 @@ "fileName": "treetable/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L17" } ] } @@ -130373,7 +130373,7 @@ "fileName": "treetable/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L34" } ], "type": { @@ -130417,7 +130417,7 @@ "fileName": "treetable/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L40" } ], "type": { @@ -130457,7 +130457,7 @@ "fileName": "treetable/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L46" } ], "type": { @@ -130497,7 +130497,7 @@ "fileName": "treetable/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L52" } ], "type": { @@ -130537,7 +130537,7 @@ "fileName": "treetable/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L58" } ], "type": { @@ -130577,7 +130577,7 @@ "fileName": "treetable/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L64" } ], "type": { @@ -130603,7 +130603,7 @@ "fileName": "treetable/index.d.ts", "line": 34, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L34" } ] } @@ -130630,7 +130630,7 @@ "fileName": "treetable/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L69" } ], "type": { @@ -130674,7 +130674,7 @@ "fileName": "treetable/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L75" } ], "type": { @@ -130714,7 +130714,7 @@ "fileName": "treetable/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L81" } ], "type": { @@ -130754,7 +130754,7 @@ "fileName": "treetable/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L87" } ], "type": { @@ -130794,7 +130794,7 @@ "fileName": "treetable/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L93" } ], "type": { @@ -130834,7 +130834,7 @@ "fileName": "treetable/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L99" } ], "type": { @@ -130874,7 +130874,7 @@ "fileName": "treetable/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L105" } ], "type": { @@ -130914,7 +130914,7 @@ "fileName": "treetable/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L111" } ], "type": { @@ -130954,7 +130954,7 @@ "fileName": "treetable/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L117" } ], "type": { @@ -130994,7 +130994,7 @@ "fileName": "treetable/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L123" } ], "type": { @@ -131023,7 +131023,7 @@ "fileName": "treetable/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L127" } ], "type": { @@ -131067,7 +131067,7 @@ "fileName": "treetable/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L133" } ], "type": { @@ -131107,7 +131107,7 @@ "fileName": "treetable/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L139" } ], "type": { @@ -131147,7 +131147,7 @@ "fileName": "treetable/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L145" } ], "type": { @@ -131187,7 +131187,7 @@ "fileName": "treetable/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L151" } ], "type": { @@ -131227,7 +131227,7 @@ "fileName": "treetable/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L157" } ], "type": { @@ -131253,7 +131253,7 @@ "fileName": "treetable/index.d.ts", "line": 127, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L127" } ] } @@ -131282,7 +131282,7 @@ "fileName": "treetable/index.d.ts", "line": 69, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L69" } ] } @@ -131309,7 +131309,7 @@ "fileName": "treetable/index.d.ts", "line": 163, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L163" } ], "type": { @@ -131353,7 +131353,7 @@ "fileName": "treetable/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L169" } ], "type": { @@ -131375,7 +131375,7 @@ "fileName": "treetable/index.d.ts", "line": 163, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L163" } ] } @@ -131402,7 +131402,7 @@ "fileName": "treetable/index.d.ts", "line": 174, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L174" } ], "type": { @@ -131446,7 +131446,7 @@ "fileName": "treetable/index.d.ts", "line": 180, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L180" } ], "type": { @@ -131486,7 +131486,7 @@ "fileName": "treetable/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L186" } ], "type": { @@ -131526,7 +131526,7 @@ "fileName": "treetable/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L192" } ], "type": { @@ -131566,7 +131566,7 @@ "fileName": "treetable/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L198" } ], "type": { @@ -131606,7 +131606,7 @@ "fileName": "treetable/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L204" } ], "type": { @@ -131646,7 +131646,7 @@ "fileName": "treetable/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L210" } ], "type": { @@ -131675,7 +131675,7 @@ "fileName": "treetable/index.d.ts", "line": 214, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L214" } ], "type": { @@ -131719,7 +131719,7 @@ "fileName": "treetable/index.d.ts", "line": 220, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L220" } ], "type": { @@ -131759,7 +131759,7 @@ "fileName": "treetable/index.d.ts", "line": 226, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L226" } ], "type": { @@ -131799,7 +131799,7 @@ "fileName": "treetable/index.d.ts", "line": 232, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L232" } ], "type": { @@ -131839,7 +131839,7 @@ "fileName": "treetable/index.d.ts", "line": 238, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L238" } ], "type": { @@ -131879,7 +131879,7 @@ "fileName": "treetable/index.d.ts", "line": 244, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L244" } ], "type": { @@ -131905,7 +131905,7 @@ "fileName": "treetable/index.d.ts", "line": 214, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L214" } ] } @@ -131931,7 +131931,7 @@ "fileName": "treetable/index.d.ts", "line": 174, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L174" } ] } @@ -131958,7 +131958,7 @@ "fileName": "treetable/index.d.ts", "line": 250, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L250" } ], "type": { @@ -132002,7 +132002,7 @@ "fileName": "treetable/index.d.ts", "line": 256, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L256" } ], "type": { @@ -132042,7 +132042,7 @@ "fileName": "treetable/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L262" } ], "type": { @@ -132082,7 +132082,7 @@ "fileName": "treetable/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L268" } ], "type": { @@ -132122,7 +132122,7 @@ "fileName": "treetable/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L274" } ], "type": { @@ -132147,7 +132147,7 @@ "fileName": "treetable/index.d.ts", "line": 250, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L250" } ] } @@ -132174,7 +132174,7 @@ "fileName": "treetable/index.d.ts", "line": 279, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L279" } ], "type": { @@ -132218,7 +132218,7 @@ "fileName": "treetable/index.d.ts", "line": 285, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L285" } ], "type": { @@ -132258,7 +132258,7 @@ "fileName": "treetable/index.d.ts", "line": 291, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L291" } ], "type": { @@ -132298,7 +132298,7 @@ "fileName": "treetable/index.d.ts", "line": 297, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L297" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L297" } ], "type": { @@ -132338,7 +132338,7 @@ "fileName": "treetable/index.d.ts", "line": 303, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L303" } ], "type": { @@ -132363,7 +132363,7 @@ "fileName": "treetable/index.d.ts", "line": 279, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L279" } ] } @@ -132390,7 +132390,7 @@ "fileName": "treetable/index.d.ts", "line": 308, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L308" } ], "type": { @@ -132434,7 +132434,7 @@ "fileName": "treetable/index.d.ts", "line": 314, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L314" } ], "type": { @@ -132456,7 +132456,7 @@ "fileName": "treetable/index.d.ts", "line": 308, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L308" } ] } @@ -132483,7 +132483,7 @@ "fileName": "treetable/index.d.ts", "line": 319, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L319" } ], "type": { @@ -132527,7 +132527,7 @@ "fileName": "treetable/index.d.ts", "line": 325, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L325" } ], "type": { @@ -132567,7 +132567,7 @@ "fileName": "treetable/index.d.ts", "line": 331, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L331" } ], "type": { @@ -132607,7 +132607,7 @@ "fileName": "treetable/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L337" } ], "type": { @@ -132647,7 +132647,7 @@ "fileName": "treetable/index.d.ts", "line": 343, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L343" } ], "type": { @@ -132687,7 +132687,7 @@ "fileName": "treetable/index.d.ts", "line": 349, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L349" } ], "type": { @@ -132713,7 +132713,7 @@ "fileName": "treetable/index.d.ts", "line": 319, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L319" } ] } @@ -132740,7 +132740,7 @@ "fileName": "treetable/index.d.ts", "line": 354, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L354" } ], "type": { @@ -132784,7 +132784,7 @@ "fileName": "treetable/index.d.ts", "line": 360, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L360" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L360" } ], "type": { @@ -132824,7 +132824,7 @@ "fileName": "treetable/index.d.ts", "line": 366, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L366" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L366" } ], "type": { @@ -132864,7 +132864,7 @@ "fileName": "treetable/index.d.ts", "line": 372, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L372" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L372" } ], "type": { @@ -132904,7 +132904,7 @@ "fileName": "treetable/index.d.ts", "line": 378, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L378" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L378" } ], "type": { @@ -132944,7 +132944,7 @@ "fileName": "treetable/index.d.ts", "line": 384, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L384" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L384" } ], "type": { @@ -132984,7 +132984,7 @@ "fileName": "treetable/index.d.ts", "line": 390, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L390" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L390" } ], "type": { @@ -133011,7 +133011,7 @@ "fileName": "treetable/index.d.ts", "line": 354, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L354" } ] } @@ -133038,7 +133038,7 @@ "fileName": "treetable/index.d.ts", "line": 395, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L395" } ], "type": { @@ -133082,7 +133082,7 @@ "fileName": "treetable/index.d.ts", "line": 401, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L401" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L401" } ], "type": { @@ -133122,7 +133122,7 @@ "fileName": "treetable/index.d.ts", "line": 407, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L407" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L407" } ], "type": { @@ -133145,7 +133145,7 @@ "fileName": "treetable/index.d.ts", "line": 395, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L395" } ] } @@ -133172,7 +133172,7 @@ "fileName": "treetable/index.d.ts", "line": 412, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L412" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L412" } ], "type": { @@ -133216,7 +133216,7 @@ "fileName": "treetable/index.d.ts", "line": 418, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L418" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L418" } ], "type": { @@ -133256,7 +133256,7 @@ "fileName": "treetable/index.d.ts", "line": 424, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L424" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L424" } ], "type": { @@ -133279,7 +133279,7 @@ "fileName": "treetable/index.d.ts", "line": 412, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L412" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L412" } ] } @@ -133306,7 +133306,7 @@ "fileName": "treetable/index.d.ts", "line": 429, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L429" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L429" } ], "type": { @@ -133350,7 +133350,7 @@ "fileName": "treetable/index.d.ts", "line": 435, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L435" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L435" } ], "type": { @@ -133372,7 +133372,7 @@ "fileName": "treetable/index.d.ts", "line": 429, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L429" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L429" } ] } @@ -133399,7 +133399,7 @@ "fileName": "treetable/index.d.ts", "line": 440, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L440" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L440" } ], "type": { @@ -133443,7 +133443,7 @@ "fileName": "treetable/index.d.ts", "line": 446, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L446" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L446" } ], "type": { @@ -133483,7 +133483,7 @@ "fileName": "treetable/index.d.ts", "line": 452, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L452" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L452" } ], "type": { @@ -133523,7 +133523,7 @@ "fileName": "treetable/index.d.ts", "line": 458, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L458" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L458" } ], "type": { @@ -133563,7 +133563,7 @@ "fileName": "treetable/index.d.ts", "line": 464, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L464" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L464" } ], "type": { @@ -133603,7 +133603,7 @@ "fileName": "treetable/index.d.ts", "line": 470, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L470" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L470" } ], "type": { @@ -133643,7 +133643,7 @@ "fileName": "treetable/index.d.ts", "line": 476, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L476" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L476" } ], "type": { @@ -133683,7 +133683,7 @@ "fileName": "treetable/index.d.ts", "line": 482, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L482" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L482" } ], "type": { @@ -133712,7 +133712,7 @@ "fileName": "treetable/index.d.ts", "line": 486, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L486" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L486" } ], "type": { @@ -133756,7 +133756,7 @@ "fileName": "treetable/index.d.ts", "line": 492, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L492" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L492" } ], "type": { @@ -133796,7 +133796,7 @@ "fileName": "treetable/index.d.ts", "line": 498, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L498" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L498" } ], "type": { @@ -133836,7 +133836,7 @@ "fileName": "treetable/index.d.ts", "line": 504, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L504" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L504" } ], "type": { @@ -133876,7 +133876,7 @@ "fileName": "treetable/index.d.ts", "line": 510, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L510" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L510" } ], "type": { @@ -133916,7 +133916,7 @@ "fileName": "treetable/index.d.ts", "line": 516, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L516" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L516" } ], "type": { @@ -133942,7 +133942,7 @@ "fileName": "treetable/index.d.ts", "line": 486, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L486" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L486" } ] } @@ -133969,7 +133969,7 @@ "fileName": "treetable/index.d.ts", "line": 440, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L440" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L440" } ] } @@ -133996,7 +133996,7 @@ "fileName": "treetable/index.d.ts", "line": 522, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L522" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L522" } ], "type": { @@ -134040,7 +134040,7 @@ "fileName": "treetable/index.d.ts", "line": 528, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L528" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L528" } ], "type": { @@ -134080,7 +134080,7 @@ "fileName": "treetable/index.d.ts", "line": 534, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L534" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L534" } ], "type": { @@ -134103,7 +134103,7 @@ "fileName": "treetable/index.d.ts", "line": 522, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L522" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L522" } ] } @@ -134130,7 +134130,7 @@ "fileName": "treetable/index.d.ts", "line": 539, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L539" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L539" } ], "type": { @@ -134174,7 +134174,7 @@ "fileName": "treetable/index.d.ts", "line": 545, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L545" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L545" } ], "type": { @@ -134214,7 +134214,7 @@ "fileName": "treetable/index.d.ts", "line": 551, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L551" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L551" } ], "type": { @@ -134237,7 +134237,7 @@ "fileName": "treetable/index.d.ts", "line": 539, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L539" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L539" } ] } @@ -134273,7 +134273,7 @@ "fileName": "treetable/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L13" } ], "extendedTypes": [ @@ -134307,7 +134307,7 @@ "fileName": "treetable/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/treetable/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/treetable/index.d.ts#L1" } ] }, @@ -134346,7 +134346,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -134371,7 +134371,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -134409,7 +134409,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -134449,7 +134449,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -134481,7 +134481,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L17" } ], "type": { @@ -134525,7 +134525,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L23" } ], "type": { @@ -134565,7 +134565,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L29" } ], "type": { @@ -134588,7 +134588,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 17, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L17" } ] } @@ -134615,7 +134615,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L34" } ], "type": { @@ -134659,7 +134659,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L40" } ], "type": { @@ -134681,7 +134681,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 34, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L34" } ] } @@ -134703,7 +134703,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L13" } ], "extendedTypes": [ @@ -134737,7 +134737,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/839224834fe39d3d40fff36e842de8f51a667b8f/src/app/components/themes/types/virtualscroller/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/62d6ff1089e0e3ecfbe24266d32663d1c1fe2d99/src/app/components/themes/types/virtualscroller/index.d.ts#L1" } ] } @@ -134837,7 +134837,7 @@ } ], "packageName": "primeng", - "packageVersion": "18.0.0-beta.2", + "packageVersion": "18.0.0-beta.3", "readme": [ { "kind": "text", diff --git a/package.json b/package.json index 736376bc0ef..ecaef04f045 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.2", + "version": "18.0.0-beta.3", "license": "SEE LICENSE IN LICENSE.md", "scripts": { "ng": "ng", diff --git a/src/app/components/editor/editor.ts b/src/app/components/editor/editor.ts index 45b3b5c6846..6a03f6f7f06 100755 --- a/src/app/components/editor/editor.ts +++ b/src/app/components/editor/editor.ts @@ -1,23 +1,20 @@ import { CommonModule, isPlatformServer } from '@angular/common'; import { AfterContentInit, + afterNextRender, ChangeDetectionStrategy, Component, ContentChild, ContentChildren, - ElementRef, EventEmitter, - Inject, + forwardRef, + inject, Input, NgModule, Output, - PLATFORM_ID, QueryList, TemplateRef, ViewEncapsulation, - afterNextRender, - forwardRef, - inject, } from '@angular/core'; import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'; import { Header, PrimeTemplate, SharedModule } from 'primeng/api'; @@ -225,7 +222,9 @@ export class Editor extends BaseComponent implements AfterContentInit, ControlVa if (this.quill) { if (value) { const command = (): void => { - this.quill.setContents(this.quill.clipboard.convert(this.dynamicQuill.version.startsWith('2') ? { html: this.value } : this.value)); + this.quill.setContents( + this.quill.clipboard.convert(this.dynamicQuill.version.startsWith('2') ? { html: this.value } : this.value), + ); }; if (this.isAttachedQuillEditorToDOM) { @@ -294,7 +293,7 @@ export class Editor extends BaseComponent implements AfterContentInit, ControlVa formats: this.formats, bounds: this.bounds, debug: this.debug, - scrollingContainer: this.scrollingContainer + scrollingContainer: this.scrollingContainer, }); const isQuill2 = this.dynamicQuill.version.startsWith('2'); @@ -315,7 +314,7 @@ export class Editor extends BaseComponent implements AfterContentInit, ControlVa htmlValue: html, textValue: text, delta: delta, - source: source + source: source, }); this.onModelChange(html); @@ -327,12 +326,12 @@ export class Editor extends BaseComponent implements AfterContentInit, ControlVa this.onSelectionChange.emit({ range: range, oldRange: oldRange, - source: source + source: source, }); }); this.onInit.emit({ - editor: this.quill + editor: this.quill, }); } diff --git a/src/app/components/floatlabel/style/floatlabelstyle.ts b/src/app/components/floatlabel/style/floatlabelstyle.ts index f11fec5e3e8..1a9d0e6be27 100644 --- a/src/app/components/floatlabel/style/floatlabelstyle.ts +++ b/src/app/components/floatlabel/style/floatlabelstyle.ts @@ -101,8 +101,8 @@ const classes = { { 'p-floatlabel-over': props.variant === 'over', 'p-floatlabel-on': props.variant === 'on', - 'p-floatlabel-in': props.variant === 'in' - } + 'p-floatlabel-in': props.variant === 'in', + }, ], }; diff --git a/src/app/components/iftalabel/style/iftalabelstyle.ts b/src/app/components/iftalabel/style/iftalabelstyle.ts index 1eb75d76e17..a44131cfe23 100644 --- a/src/app/components/iftalabel/style/iftalabelstyle.ts +++ b/src/app/components/iftalabel/style/iftalabelstyle.ts @@ -66,7 +66,7 @@ const theme = ({ dt }) => ` `; const classes = { - root: 'p-iftalabel' + root: 'p-iftalabel', }; @Injectable() diff --git a/src/app/components/image/image.ts b/src/app/components/image/image.ts index a04ca43e4a5..1e21285f0d0 100755 --- a/src/app/components/image/image.ts +++ b/src/app/components/image/image.ts @@ -1,15 +1,15 @@ -import { AnimationEvent, animate, style, transition, trigger } from '@angular/animations'; -import { CommonModule, DOCUMENT } from '@angular/common'; +import { animate, AnimationEvent, style, transition, trigger } from '@angular/animations'; +import { CommonModule } from '@angular/common'; import { AfterContentInit, + booleanAttribute, ChangeDetectionStrategy, - ChangeDetectorRef, Component, ContentChildren, ElementRef, EventEmitter, HostListener, - Inject, + inject, Input, NgModule, Output, @@ -17,11 +17,9 @@ import { TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - inject, } from '@angular/core'; import { SafeUrl } from '@angular/platform-browser'; -import { PrimeNGConfig, PrimeTemplate, SharedModule } from 'primeng/api'; +import { PrimeTemplate, SharedModule } from 'primeng/api'; import { DomHandler } from 'primeng/dom'; import { EyeIcon } from 'primeng/icons/eye'; import { RefreshIcon } from 'primeng/icons/refresh'; @@ -159,7 +157,11 @@ import { BaseComponent } from 'primeng/basecomponent'; diff --git a/src/app/components/inputicon/inputicon.ts b/src/app/components/inputicon/inputicon.ts index 68eed2959bb..354bb572405 100755 --- a/src/app/components/inputicon/inputicon.ts +++ b/src/app/components/inputicon/inputicon.ts @@ -14,10 +14,10 @@ import { InputIconStyle } from './style/inputiconstyle'; encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, providers: [InputIconStyle], - host:{ + host: { '[class]': 'styleClass', '[class.p-inputicon]': 'true', - } + }, }) export class InputIcon extends BaseComponent { /** diff --git a/src/app/components/orderlist/orderlist.ts b/src/app/components/orderlist/orderlist.ts index a5a18b10a2b..7e560d5d711 100755 --- a/src/app/components/orderlist/orderlist.ts +++ b/src/app/components/orderlist/orderlist.ts @@ -2,22 +2,22 @@ import { CdkDragDrop, DragDropModule, moveItemInArray } from '@angular/cdk/drag- import { CommonModule, isPlatformBrowser } from '@angular/common'; import { AfterContentInit, + booleanAttribute, ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChildren, ElementRef, EventEmitter, + inject, Input, NgModule, + numberAttribute, Output, QueryList, TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - inject, - numberAttribute, } from '@angular/core'; import { FilterService, PrimeNGConfig, PrimeTemplate, SharedModule } from 'primeng/api'; import { ButtonModule, ButtonProps } from 'primeng/button'; @@ -35,6 +35,7 @@ import { OrderListStyle } from './style/orderliststyle'; import { BaseComponent } from 'primeng/basecomponent'; import { Listbox, ListboxModule } from 'primeng/listbox'; import { FormsModule } from '@angular/forms'; + /** * OrderList is used to managed the order of a collection. * @group Components @@ -310,7 +311,7 @@ export class OrderList extends BaseComponent implements AfterContentInit { get value(): any[] | undefined { return this._value; } - + /** * Used to pass all properties of the ButtonProps to the Button component. * @group Props @@ -327,19 +328,19 @@ export class OrderList extends BaseComponent implements AfterContentInit { * Used to pass all properties of the ButtonProps to the move top button inside the component. * @group Props */ - @Input() moveTopButtonProps : ButtonProps; + @Input() moveTopButtonProps: ButtonProps; /** * Used to pass all properties of the ButtonProps to the move down button inside the component. * @group Props */ - @Input() moveDownButtonProps : ButtonProps; + @Input() moveDownButtonProps: ButtonProps; /** * Used to pass all properties of the ButtonProps to the move bottom button inside the component. * @group Props */ - @Input() moveBottomButtonProps : ButtonProps; + @Input() moveBottomButtonProps: ButtonProps; /** * Callback to invoke on selection change. diff --git a/src/app/components/package.json b/src/app/components/package.json index 099a887c449..c0827050eeb 100644 --- a/src/app/components/package.json +++ b/src/app/components/package.json @@ -1,6 +1,6 @@ { "name": "primeng", - "version": "18.0.0-beta.2", + "version": "18.0.0-beta.3", "repository": { "type": "git", "url": "https://github.com/primefaces/primeng" diff --git a/src/app/components/panelmenu/panelmenu.ts b/src/app/components/panelmenu/panelmenu.ts index 4dbcb2503a6..70c16c94838 100644 --- a/src/app/components/panelmenu/panelmenu.ts +++ b/src/app/components/panelmenu/panelmenu.ts @@ -2,27 +2,27 @@ import { animate, state, style, transition, trigger } from '@angular/animations' import { CommonModule } from '@angular/common'; import { AfterContentInit, + booleanAttribute, ChangeDetectionStrategy, Component, + computed, ContentChildren, ElementRef, EventEmitter, + forwardRef, Inject, + inject, Input, NgModule, + numberAttribute, OnChanges, Output, QueryList, + signal, SimpleChanges, TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - computed, - forwardRef, - inject, - numberAttribute, - signal, } from '@angular/core'; import { RouterModule } from '@angular/router'; import { MenuItem, PrimeTemplate, SharedModule } from 'primeng/api'; @@ -578,9 +578,7 @@ export class PanelMenuList implements OnChanges { } // Recreate processedItems with updated 'expanded' states - this.processedItems.set( - this.createProcessedItems(this.items || [], 0, {}, '') - ); + this.processedItems.set(this.createProcessedItems(this.items || [], 0, {}, '')); // Update activeItemPath const activeItemPath = this.activeItemPath().filter((p) => p.parentKey !== processedItem.parentKey); diff --git a/src/app/components/rating/rating.ts b/src/app/components/rating/rating.ts index 3d458555c9e..af5abd46b73 100755 --- a/src/app/components/rating/rating.ts +++ b/src/app/components/rating/rating.ts @@ -251,10 +251,10 @@ export class Rating extends BaseComponent implements OnInit, ControlValueAccesso onOptionSelect(event, value) { if (this.focusedOptionIndex === value || value === this.value) { - this.focusedOptionIndex.set(-1) + this.focusedOptionIndex.set(-1); this.updateModel(event, null); } else { - this.focusedOptionIndex.set(value) + this.focusedOptionIndex.set(value); this.updateModel(event, value || null); } } diff --git a/src/app/components/speeddial/speeddial.ts b/src/app/components/speeddial/speeddial.ts index 3c6bedc9a90..3af08121c2e 100644 --- a/src/app/components/speeddial/speeddial.ts +++ b/src/app/components/speeddial/speeddial.ts @@ -2,23 +2,23 @@ import { CommonModule, isPlatformBrowser } from '@angular/common'; import { AfterContentInit, AfterViewInit, + booleanAttribute, ChangeDetectionStrategy, Component, ContentChildren, ElementRef, EventEmitter, + inject, Input, NgModule, + numberAttribute, OnDestroy, Output, QueryList, + signal, TemplateRef, ViewChild, ViewEncapsulation, - booleanAttribute, - inject, - numberAttribute, - signal, } from '@angular/core'; import { RouterModule } from '@angular/router'; import { MenuItem, PrimeTemplate, SharedModule, TooltipOptions } from 'primeng/api'; @@ -405,7 +405,7 @@ export class SpeedDial extends BaseComponent implements AfterViewInit, AfterCont if (item.command) { item.command({ originalEvent: e, item }); } - + this.hide(); this.isItemClicked = true; diff --git a/src/app/components/themes/aura/aura.ts b/src/app/components/themes/aura/aura.ts index 5ed6d295894..41d06f1d8ee 100644 --- a/src/app/components/themes/aura/aura.ts +++ b/src/app/components/themes/aura/aura.ts @@ -85,7 +85,6 @@ import virtualscroller from './virtualscroller'; import tooltip from './tooltip'; import ripple from './ripple'; - export const Aura = { primitive: { borderRadius: { diff --git a/src/app/components/themes/aura/floatlabel/index.ts b/src/app/components/themes/aura/floatlabel/index.ts index 1467e248360..7bb61c0fddc 100644 --- a/src/app/components/themes/aura/floatlabel/index.ts +++ b/src/app/components/themes/aura/floatlabel/index.ts @@ -10,27 +10,27 @@ export default { fontWeight: '500', active: { fontSize: '0.75rem', - fontWeight: '400' - } + fontWeight: '400', + }, }, over: { active: { - top: '-1.25rem' - } + top: '-1.25rem', + }, }, in: { input: { - paddingTop: '1.5rem' + paddingTop: '1.5rem', }, active: { - top: '{form.field.padding.y}' - } + top: '{form.field.padding.y}', + }, }, on: { borderRadius: '{border.radius.xs}', active: { background: '{form.field.background}', - padding: '0 0.125rem' - } - } + padding: '0 0.125rem', + }, + }, }; diff --git a/src/app/components/themes/aura/iftalabel/index.ts b/src/app/components/themes/aura/iftalabel/index.ts index 7edbeb5b6c9..3da09bcf6de 100644 --- a/src/app/components/themes/aura/iftalabel/index.ts +++ b/src/app/components/themes/aura/iftalabel/index.ts @@ -7,9 +7,9 @@ export default { positionX: '{form.field.padding.x}', top: '{form.field.padding.y}', fontSize: '0.75rem', - fontWeight: '400' + fontWeight: '400', }, input: { - paddingTop: '1.5rem' - } + paddingTop: '1.5rem', + }, }; diff --git a/src/app/components/themes/lara/floatlabel/index.ts b/src/app/components/themes/lara/floatlabel/index.ts index 7d18833a537..cb04caf8b4b 100644 --- a/src/app/components/themes/lara/floatlabel/index.ts +++ b/src/app/components/themes/lara/floatlabel/index.ts @@ -10,25 +10,25 @@ export default { focus: { top: '-1.25rem', fontSize: '0.875rem', - fontWeight: '400' - } + fontWeight: '400', + }, }, in: { input: { - paddingTop: '1.875rem' + paddingTop: '1.875rem', }, focus: { - top: '{form.field.padding.y}' - } + top: '{form.field.padding.y}', + }, }, on: { input: { paddingTop: '1.25rem', - paddingBottom: '1.25rem' + paddingBottom: '1.25rem', }, focus: { background: '{form.field.background}', - padding: '0 0.125rem' - } - } + padding: '0 0.125rem', + }, + }, }; diff --git a/src/app/components/themes/lara/iftalabel/index.ts b/src/app/components/themes/lara/iftalabel/index.ts index 3b0a4aae764..4ce92e10512 100644 --- a/src/app/components/themes/lara/iftalabel/index.ts +++ b/src/app/components/themes/lara/iftalabel/index.ts @@ -7,9 +7,9 @@ export default { positionX: '{form.field.padding.x}', top: '{form.field.padding.y}', fontSize: '0.875rem', - fontWeight: '400' + fontWeight: '400', }, input: { - paddingTop: '1.875rem' - } + paddingTop: '1.875rem', + }, }; diff --git a/src/app/components/themes/nora/floatlabel/index.ts b/src/app/components/themes/nora/floatlabel/index.ts index 088c922b48a..8a6e7a406a3 100644 --- a/src/app/components/themes/nora/floatlabel/index.ts +++ b/src/app/components/themes/nora/floatlabel/index.ts @@ -10,25 +10,25 @@ export default { focus: { top: '-1.25rem', fontSize: '0.875rem', - fontWeight: '400' - } + fontWeight: '400', + }, }, in: { input: { - paddingTop: '1.5rem' + paddingTop: '1.5rem', }, focus: { - top: '{form.field.padding.y}' - } + top: '{form.field.padding.y}', + }, }, on: { input: { paddingTop: '1rem', - paddingBottom: '1rem' + paddingBottom: '1rem', }, focus: { background: '{form.field.background}', - padding: '0 0.125rem' - } - } + padding: '0 0.125rem', + }, + }, }; diff --git a/src/app/components/themes/nora/iftalabel/index.ts b/src/app/components/themes/nora/iftalabel/index.ts index 5cc6aa652b9..931fafeac7e 100644 --- a/src/app/components/themes/nora/iftalabel/index.ts +++ b/src/app/components/themes/nora/iftalabel/index.ts @@ -7,9 +7,9 @@ export default { positionX: '{form.field.padding.x}', top: '{form.field.padding.y}', fontSize: '0.875rem', - fontWeight: '400' + fontWeight: '400', }, input: { - paddingTop: '1.5rem' - } + paddingTop: '1.5rem', + }, }; diff --git a/src/app/showcase/data/versions.json b/src/app/showcase/data/versions.json index cda87c961f8..5e956e90d24 100644 --- a/src/app/showcase/data/versions.json +++ b/src/app/showcase/data/versions.json @@ -1,6 +1,6 @@ [ { - "version": "18.0.0-beta.2", + "version": "18.0.0-beta.3", "name": "v18", "url": "https://primeng.org" }, diff --git a/src/app/showcase/doc/Image/templatedoc.ts b/src/app/showcase/doc/Image/templatedoc.ts index 0140a566d97..88ad74c7adc 100644 --- a/src/app/showcase/doc/Image/templatedoc.ts +++ b/src/app/showcase/doc/Image/templatedoc.ts @@ -19,7 +19,12 @@ import { Code } from '@domain/code'; image - image + image
    diff --git a/src/app/showcase/doc/apidoc/index.json b/src/app/showcase/doc/apidoc/index.json index 956aca07834..3a6eb1b9bde 100644 --- a/src/app/showcase/doc/apidoc/index.json +++ b/src/app/showcase/doc/apidoc/index.json @@ -4512,52 +4512,57 @@ "name": "styleClass", "optional": false, "readonly": false, - "type": "string", + "type": "InputSignal", + "default": "...", "description": "Class of the element." }, { "name": "style", "optional": false, "readonly": false, - "type": "Object", + "type": "InputSignal", + "default": "...", "description": "Inline style of the element." }, { "name": "badgeSize", "optional": false, "readonly": false, - "type": "\"small\" | \"large\" | \"xlarge\"", + "type": "InputSignal<\"small\" | \"large\" | \"xlarge\">", + "default": "...", + "description": "Size of the badge, valid options are \"large\" and \"xlarge\"." + }, + { + "name": "size", + "optional": false, + "readonly": false, + "type": "InputSignal<\"small\" | \"large\" | \"xlarge\">", + "default": "...", "description": "Size of the badge, valid options are \"large\" and \"xlarge\"." }, { "name": "severity", "optional": false, "readonly": false, - "type": "\"success\" | \"info\" | \"primary\" | \"help\" | \"warn\" | \"danger\" | \"secondary\" | \"contrast\"", + "type": "InputSignal<\"success\" | \"info\" | \"primary\" | \"help\" | \"warn\" | \"danger\" | \"secondary\" | \"contrast\">", + "default": "...", "description": "Severity type of the badge." }, { "name": "value", "optional": false, "readonly": false, - "type": "string | number", + "type": "InputSignal", + "default": "...", "description": "Value to display inside the badge." }, { "name": "badgeDisabled", "optional": false, "readonly": false, - "type": "boolean", - "default": "false", + "type": "InputSignalWithTransform", + "default": "...", "description": "When specified, disables the component." - }, - { - "name": "size", - "optional": false, - "readonly": false, - "type": "\"small\" | \"large\" | \"xlarge\"", - "description": "Size of the badge, valid options are \"large\" and \"xlarge\".", - "deprecated": "use badgeSize instead." } ] } @@ -17263,7 +17268,7 @@ "name": "severity", "optional": false, "readonly": false, - "type": "\"success\" | \"info\" | \"warning\" | \"primary\" | \"help\" | \"danger\" | \"secondary\" | \"contrast\"", + "type": "\"success\" | \"info\" | \"primary\" | \"help\" | \"warn\" | \"danger\" | \"secondary\" | \"contrast\"", "description": "Severity type of the badge." }, { diff --git a/src/app/showcase/doc/autocomplete/dropdowndoc.ts b/src/app/showcase/doc/autocomplete/dropdowndoc.ts index 383b66cb103..7cf0ab85308 100644 --- a/src/app/showcase/doc/autocomplete/dropdowndoc.ts +++ b/src/app/showcase/doc/autocomplete/dropdowndoc.ts @@ -17,12 +17,7 @@ interface AutoCompleteCompleteEvent {

    - +
    `, }) diff --git a/src/app/showcase/doc/autocomplete/forceselectiondoc.ts b/src/app/showcase/doc/autocomplete/forceselectiondoc.ts index c57695d4ace..2ba9e202d99 100644 --- a/src/app/showcase/doc/autocomplete/forceselectiondoc.ts +++ b/src/app/showcase/doc/autocomplete/forceselectiondoc.ts @@ -16,7 +16,13 @@ interface AutoCompleteCompleteEvent {

    - +
    `, }) diff --git a/src/app/showcase/doc/autocomplete/objectsdoc.ts b/src/app/showcase/doc/autocomplete/objectsdoc.ts index 73572a55032..6775ac3e70b 100644 --- a/src/app/showcase/doc/autocomplete/objectsdoc.ts +++ b/src/app/showcase/doc/autocomplete/objectsdoc.ts @@ -17,7 +17,12 @@ interface AutoCompleteCompleteEvent {

    - +
    `, }) diff --git a/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts b/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts index 95bd952a6cf..b6e25ab70ae 100644 --- a/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts +++ b/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts @@ -1,7 +1,6 @@ -import { Component, OnInit } from '@angular/core'; -import { FormControl, FormGroup, ReactiveFormsModule } from '@angular/forms'; +import { Component } from '@angular/core'; +import { FormGroup } from '@angular/forms'; import { Code } from '@domain/code'; -import { CountryService } from '@service/countryservice'; interface AutoCompleteCompleteEvent { originalEvent: Event; @@ -18,11 +17,7 @@ interface AutoCompleteCompleteEvent {
    - +
    `, diff --git a/src/app/showcase/doc/autocomplete/virtualscrolldoc.ts b/src/app/showcase/doc/autocomplete/virtualscrolldoc.ts index 06640c5f9ac..0037c7bbb2b 100644 --- a/src/app/showcase/doc/autocomplete/virtualscrolldoc.ts +++ b/src/app/showcase/doc/autocomplete/virtualscrolldoc.ts @@ -17,7 +17,15 @@ interface AutoCompleteCompleteEvent {

    - +
    `, }) diff --git a/src/app/showcase/doc/avatar/avatardoc.module.ts b/src/app/showcase/doc/avatar/avatardoc.module.ts index c5e339bcea8..0588ade3ab1 100644 --- a/src/app/showcase/doc/avatar/avatardoc.module.ts +++ b/src/app/showcase/doc/avatar/avatardoc.module.ts @@ -33,7 +33,7 @@ import { OverlayBadgeModule } from 'primeng/overlaybadge'; AvatarModule, AvatarGroupModule, BadgeModule, - OverlayBadgeModule + OverlayBadgeModule, ], declarations: [ ImportDoc, diff --git a/src/app/showcase/doc/cascadeselect/cascasdeselectdoc.module.ts b/src/app/showcase/doc/cascadeselect/cascasdeselectdoc.module.ts index 44bc3cdcdbb..2cbf423b801 100644 --- a/src/app/showcase/doc/cascadeselect/cascasdeselectdoc.module.ts +++ b/src/app/showcase/doc/cascadeselect/cascasdeselectdoc.module.ts @@ -19,6 +19,7 @@ import { LoadingDoc } from './loadingdoc'; import { FloatLabelModule } from 'primeng/floatlabel'; import { IftaLabelDoc } from './iftalabeldoc'; import { IftaLabelModule } from 'primeng/iftalabel'; + @NgModule({ imports: [ CommonModule, @@ -29,7 +30,7 @@ import { IftaLabelModule } from 'primeng/iftalabel'; AppDocModule, ReactiveFormsModule, FloatLabelModule, - IftaLabelModule + IftaLabelModule, ], exports: [AppDocModule], declarations: [ diff --git a/src/app/showcase/doc/cascadeselect/templatedoc.ts b/src/app/showcase/doc/cascadeselect/templatedoc.ts index 58bbe844dcc..146a31e2e9d 100644 --- a/src/app/showcase/doc/cascadeselect/templatedoc.ts +++ b/src/app/showcase/doc/cascadeselect/templatedoc.ts @@ -5,10 +5,11 @@ import { Code } from '@domain/code'; selector: 'cascade-select-template-demo', template: ` -

    - Label of an option is used as the display text of an item by default, for custom content support define an option template that gets the option instance as a parameter. In addition value, dropdownicon, - loadingicon, and optiongroupicon slots are provided for further customization. -

    +

    + Label of an option is used as the display text of an item by default, for custom content support define an + option template that gets the option instance as a parameter. In addition value, dropdownicon, + loadingicon, and optiongroupicon slots are provided for further customization. +

    - {{ date.day }} + {{ + date.day + }} {{ date.day }} diff --git a/src/app/showcase/doc/dialog/templatedoc.ts b/src/app/showcase/doc/dialog/templatedoc.ts index 81235278da2..e3cef291be2 100644 --- a/src/app/showcase/doc/dialog/templatedoc.ts +++ b/src/app/showcase/doc/dialog/templatedoc.ts @@ -9,7 +9,7 @@ import { Code } from '@domain/code';
    - +
    diff --git a/src/app/showcase/doc/focustrap/focustrapdoc.module.ts b/src/app/showcase/doc/focustrap/focustrapdoc.module.ts index f10db49891f..a802dec9884 100644 --- a/src/app/showcase/doc/focustrap/focustrapdoc.module.ts +++ b/src/app/showcase/doc/focustrap/focustrapdoc.module.ts @@ -29,7 +29,7 @@ import { AutoFocusModule } from 'primeng/autofocus'; IconFieldModule, InputIconModule, CheckboxModule, - AutoFocusModule + AutoFocusModule, ], declarations: [ImportDoc, BasicDoc], exports: [AppDocModule], diff --git a/src/app/showcase/doc/galleria/advanceddoc.ts b/src/app/showcase/doc/galleria/advanceddoc.ts index af63535af17..8bee89cd30e 100644 --- a/src/app/showcase/doc/galleria/advanceddoc.ts +++ b/src/app/showcase/doc/galleria/advanceddoc.ts @@ -77,12 +77,12 @@ export class AdvancedDoc implements OnInit, OnDestroy { responsiveOptions: any[] = [ { breakpoint: '1300px', - numVisible: 4 + numVisible: 4, }, { breakpoint: '575px', - numVisible: 1 - } + numVisible: 1, + }, ]; ngOnInit() { diff --git a/src/app/showcase/doc/galleria/autoplaydoc.ts b/src/app/showcase/doc/galleria/autoplaydoc.ts index 53a3ac1d9b8..99dcffa2de5 100644 --- a/src/app/showcase/doc/galleria/autoplaydoc.ts +++ b/src/app/showcase/doc/galleria/autoplaydoc.ts @@ -34,12 +34,12 @@ export class AutoPlayDoc implements OnInit { responsiveOptions: any[] = [ { breakpoint: '1300px', - numVisible: 4 + numVisible: 4, }, { breakpoint: '575px', - numVisible: 1 - } + numVisible: 1, + }, ]; constructor(private photoService: PhotoService) {} diff --git a/src/app/showcase/doc/galleria/basicdoc.ts b/src/app/showcase/doc/galleria/basicdoc.ts index 96df5f5df2c..06e4ad090c3 100644 --- a/src/app/showcase/doc/galleria/basicdoc.ts +++ b/src/app/showcase/doc/galleria/basicdoc.ts @@ -41,12 +41,12 @@ export class BasicDoc implements OnInit { this.responsiveOptions = [ { breakpoint: '1300px', - numVisible: 4 + numVisible: 4, }, { breakpoint: '575px', - numVisible: 1 - } + numVisible: 1, + }, ]; } diff --git a/src/app/showcase/doc/galleria/indicator/clickeventdoc.ts b/src/app/showcase/doc/galleria/indicator/clickeventdoc.ts index eda77aa88fe..d1742f49790 100644 --- a/src/app/showcase/doc/galleria/indicator/clickeventdoc.ts +++ b/src/app/showcase/doc/galleria/indicator/clickeventdoc.ts @@ -12,12 +12,7 @@ import { PhotoService } from '@service/photoservice';

    - + diff --git a/src/app/showcase/doc/galleria/navigator/itemthumbnailsdoc.ts b/src/app/showcase/doc/galleria/navigator/itemthumbnailsdoc.ts index 4c45beae785..b4dc9d521c2 100644 --- a/src/app/showcase/doc/galleria/navigator/itemthumbnailsdoc.ts +++ b/src/app/showcase/doc/galleria/navigator/itemthumbnailsdoc.ts @@ -35,12 +35,12 @@ export class ItemThumbnailsDoc implements OnInit { responsiveOptions: any[] = [ { breakpoint: '1300px', - numVisible: 4 + numVisible: 4, }, { breakpoint: '575px', - numVisible: 1 - } + numVisible: 1, + }, ]; constructor(private photoService: PhotoService) {} diff --git a/src/app/showcase/doc/galleria/navigator/itemwithoutthumbnailsdoc.ts b/src/app/showcase/doc/galleria/navigator/itemwithoutthumbnailsdoc.ts index 6d38aba983c..8ea20f94bc9 100644 --- a/src/app/showcase/doc/galleria/navigator/itemwithoutthumbnailsdoc.ts +++ b/src/app/showcase/doc/galleria/navigator/itemwithoutthumbnailsdoc.ts @@ -33,16 +33,16 @@ export class ItemWithoutThumbnailsDoc implements OnInit { responsiveOptions: any[] = [ { breakpoint: '991px', - numVisible: 4 + numVisible: 4, }, { breakpoint: '767px', - numVisible: 3 + numVisible: 3, }, { breakpoint: '575px', - numVisible: 1 - } + numVisible: 1, + }, ]; constructor(private photoService: PhotoService) {} diff --git a/src/app/showcase/doc/iconfield/floatlabeldoc.ts b/src/app/showcase/doc/iconfield/floatlabeldoc.ts index 13dfa7b0b13..92feab36834 100644 --- a/src/app/showcase/doc/iconfield/floatlabeldoc.ts +++ b/src/app/showcase/doc/iconfield/floatlabeldoc.ts @@ -1,4 +1,3 @@ - import { Component } from '@angular/core'; import { Code } from '@domain/code'; @@ -119,5 +118,3 @@ export class IconFieldFloatLabelDemo { }`, }; } - - \ No newline at end of file diff --git a/src/app/showcase/doc/inplace/inputdoc.ts b/src/app/showcase/doc/inplace/inputdoc.ts index 2f761e1f09b..8c1ac2ec55f 100644 --- a/src/app/showcase/doc/inplace/inputdoc.ts +++ b/src/app/showcase/doc/inplace/inputdoc.ts @@ -17,7 +17,7 @@ import { Code } from '@domain/code'; - + diff --git a/src/app/showcase/doc/inputgroup/basicdoc.ts b/src/app/showcase/doc/inputgroup/basicdoc.ts index 9147bdcb093..00a04e48bf4 100644 --- a/src/app/showcase/doc/inputgroup/basicdoc.ts +++ b/src/app/showcase/doc/inputgroup/basicdoc.ts @@ -1,5 +1,6 @@ import { Component } from '@angular/core'; import { Code } from '@domain/code'; + interface City { name: string; code: string; @@ -9,8 +10,8 @@ interface City { template: `

    - A group is created by wrapping the input and add-ons with the p-inputgroup component. Each add-on element is defined as - a child of p-inputgroup-addon component. + A group is created by wrapping the input and add-ons with the p-inputgroup component. Each add-on element is defined + as a child of p-inputgroup-addon component.

    @@ -130,7 +131,7 @@ interface City { standalone: true, imports: [FormsModule, InputGroupModule, InputGroupAddonModule, InputTextModule, SelectModule, InputNumberModule] }) -export class InputGroupBasicDemo { +export class InputGroupBasicDemo { text1: string | undefined; text2: string | undefined; diff --git a/src/app/showcase/doc/inputmask/inputmaskdoc.module.ts b/src/app/showcase/doc/inputmask/inputmaskdoc.module.ts index baa41e2be62..19346f67cef 100644 --- a/src/app/showcase/doc/inputmask/inputmaskdoc.module.ts +++ b/src/app/showcase/doc/inputmask/inputmaskdoc.module.ts @@ -49,7 +49,7 @@ import { IftaLabelModule } from 'primeng/iftalabel'; AccessibilityDoc, ReactiveFormsDoc, FilledDoc, - IftaLabelDoc + IftaLabelDoc, ], }) export class InputMaskDocModule {} diff --git a/src/app/showcase/doc/inputnumber/iftalabeldoc.ts b/src/app/showcase/doc/inputnumber/iftalabeldoc.ts index 9e531235f4c..e87beacc2f2 100644 --- a/src/app/showcase/doc/inputnumber/iftalabeldoc.ts +++ b/src/app/showcase/doc/inputnumber/iftalabeldoc.ts @@ -5,7 +5,10 @@ import { Code } from '@domain/code'; selector: 'ifta-label-doc', template: ` -

    IftaLabel is used to create infield top aligned labels. Visit IftaLabel documentation for more information.

    +

    + IftaLabel is used to create infield top aligned labels. Visit IftaLabel documentation for + more information. +

    diff --git a/src/app/showcase/doc/inputnumber/inputnumberdoc.module.ts b/src/app/showcase/doc/inputnumber/inputnumberdoc.module.ts index cc46d20bd66..f342c953257 100644 --- a/src/app/showcase/doc/inputnumber/inputnumberdoc.module.ts +++ b/src/app/showcase/doc/inputnumber/inputnumberdoc.module.ts @@ -35,7 +35,7 @@ import { IftaLabelModule } from 'primeng/iftalabel'; AppDocModule, FloatLabelModule, FluidModule, - IftaLabelModule + IftaLabelModule, ], exports: [AppDocModule], declarations: [ diff --git a/src/app/showcase/doc/inputtext/disableddoc.ts b/src/app/showcase/doc/inputtext/disableddoc.ts index 5c9de11c963..386641703d8 100644 --- a/src/app/showcase/doc/inputtext/disableddoc.ts +++ b/src/app/showcase/doc/inputtext/disableddoc.ts @@ -14,7 +14,7 @@ import { Code } from '@domain/code'; `, }) export class DisabledDoc { - value: string | undefined = "Disabled" + value: string | undefined = 'Disabled'; code: Code = { basic: ``, diff --git a/src/app/showcase/doc/inputtext/inputtextdoc.module.ts b/src/app/showcase/doc/inputtext/inputtextdoc.module.ts index cc2bd43cbde..6a6e211674e 100644 --- a/src/app/showcase/doc/inputtext/inputtextdoc.module.ts +++ b/src/app/showcase/doc/inputtext/inputtextdoc.module.ts @@ -34,7 +34,7 @@ import { RouterModule } from '@angular/router'; KeyFilterModule, FloatLabelModule, IftaLabelModule, - RouterModule + RouterModule, ], declarations: [ BasicDoc, diff --git a/src/app/showcase/doc/inputtext/invaliddoc.ts b/src/app/showcase/doc/inputtext/invaliddoc.ts index 13b12ff4f57..a1b467522a2 100644 --- a/src/app/showcase/doc/inputtext/invaliddoc.ts +++ b/src/app/showcase/doc/inputtext/invaliddoc.ts @@ -8,7 +8,7 @@ import { Code } from '@domain/code';

    Invalid state style is added using the ng-invalid and ng-dirty class to indicate a failed validation.

    - +
    `, diff --git a/src/app/showcase/doc/listbox/listboxdoc.module.ts b/src/app/showcase/doc/listbox/listboxdoc.module.ts index b55c9defc46..bee471b88ba 100644 --- a/src/app/showcase/doc/listbox/listboxdoc.module.ts +++ b/src/app/showcase/doc/listbox/listboxdoc.module.ts @@ -35,7 +35,7 @@ import { CheckmarkDoc } from './checkmarkdoc'; AccessibilityDoc, ReactiveFormsDoc, VirtualScrollDoc, - CheckmarkDoc + CheckmarkDoc, ], }) export class ListboxDocModule {} diff --git a/src/app/showcase/doc/multiselect/reactiveformsdoc.ts b/src/app/showcase/doc/multiselect/reactiveformsdoc.ts index b1f2658cc2f..4e93f9bee21 100644 --- a/src/app/showcase/doc/multiselect/reactiveformsdoc.ts +++ b/src/app/showcase/doc/multiselect/reactiveformsdoc.ts @@ -16,16 +16,16 @@ interface City { component to a form control.

    -
    - - +
    + + `, }) diff --git a/src/app/showcase/doc/orderlist/filterdoc.ts b/src/app/showcase/doc/orderlist/filterdoc.ts index 546e92a81f3..80272f230c1 100644 --- a/src/app/showcase/doc/orderlist/filterdoc.ts +++ b/src/app/showcase/doc/orderlist/filterdoc.ts @@ -10,12 +10,7 @@ import { ProductService } from '@service/productservice';

    Filter value is checked against the property of an object configured with the filterBy property

    - +
    - +
    diff --git a/src/app/showcase/doc/password/passworddoc.module.ts b/src/app/showcase/doc/password/passworddoc.module.ts index dbb8cabfef9..43f9f1f74c1 100644 --- a/src/app/showcase/doc/password/passworddoc.module.ts +++ b/src/app/showcase/doc/password/passworddoc.module.ts @@ -36,7 +36,7 @@ import { IftaLabelDoc } from './iftalabeldoc'; DividerModule, RouterModule, FloatLabelModule, - IftaLabelModule + IftaLabelModule, ], exports: [AppDocModule], declarations: [ diff --git a/src/app/showcase/doc/rating/readonlydoc.ts b/src/app/showcase/doc/rating/readonlydoc.ts index 3fbbd14b2f6..9b512bd6b60 100644 --- a/src/app/showcase/doc/rating/readonlydoc.ts +++ b/src/app/showcase/doc/rating/readonlydoc.ts @@ -8,7 +8,7 @@ import { Code } from '@domain/code';

    When readOnly present, value cannot be edited.

    - +
    `, diff --git a/src/app/showcase/doc/rating/withoutcanceldoc.ts b/src/app/showcase/doc/rating/withoutcanceldoc.ts index 91aae71e863..62cfbd3f738 100644 --- a/src/app/showcase/doc/rating/withoutcanceldoc.ts +++ b/src/app/showcase/doc/rating/withoutcanceldoc.ts @@ -8,7 +8,7 @@ import { Code } from '@domain/code';

    A cancel icon is displayed to reset the value by default, set cancel as false to remove this option.

    - +
    `, diff --git a/src/app/showcase/doc/scroller/delaydoc.ts b/src/app/showcase/doc/scroller/delaydoc.ts index ca9c3b121b5..e0787e80397 100644 --- a/src/app/showcase/doc/scroller/delaydoc.ts +++ b/src/app/showcase/doc/scroller/delaydoc.ts @@ -17,7 +17,11 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    +
    {{ item }}
    @@ -33,7 +37,11 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    +
    {{ item }}
    @@ -49,7 +57,11 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    +
    {{ item }}
    diff --git a/src/app/showcase/doc/scroller/griddoc.ts b/src/app/showcase/doc/scroller/griddoc.ts index 91164911c9e..937017afd64 100644 --- a/src/app/showcase/doc/scroller/griddoc.ts +++ b/src/app/showcase/doc/scroller/griddoc.ts @@ -19,7 +19,11 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    +
    {{ el }}
    diff --git a/src/app/showcase/doc/scroller/lazyloaddoc.ts b/src/app/showcase/doc/scroller/lazyloaddoc.ts index 48e15a1bbb0..60798d8b9ed 100644 --- a/src/app/showcase/doc/scroller/lazyloaddoc.ts +++ b/src/app/showcase/doc/scroller/lazyloaddoc.ts @@ -31,7 +31,13 @@ interface LazyEvent { [style]="{ width: '200px', height: '200px' }" > -
    {{ item }}
    +
    + {{ item }} +
    diff --git a/src/app/showcase/doc/scroller/loaderdoc.ts b/src/app/showcase/doc/scroller/loaderdoc.ts index f9d500aece5..372e285cdfc 100644 --- a/src/app/showcase/doc/scroller/loaderdoc.ts +++ b/src/app/showcase/doc/scroller/loaderdoc.ts @@ -21,7 +21,11 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    +
    {{ item }}
    @@ -37,12 +41,20 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    +
    {{ item }}
    -
    +
    diff --git a/src/app/showcase/doc/scroller/programmaticdoc.ts b/src/app/showcase/doc/scroller/programmaticdoc.ts index 85a378810f7..a1bc026ad5b 100644 --- a/src/app/showcase/doc/scroller/programmaticdoc.ts +++ b/src/app/showcase/doc/scroller/programmaticdoc.ts @@ -19,7 +19,13 @@ import { Code } from '@domain/code'; [style]="{ width: '200px', height: '200px' }" > -
    {{ item }}
    +
    + {{ item }} +
    diff --git a/src/app/showcase/doc/scrollpanel/customdoc.ts b/src/app/showcase/doc/scrollpanel/customdoc.ts index b0662029da9..c5a6a703850 100644 --- a/src/app/showcase/doc/scrollpanel/customdoc.ts +++ b/src/app/showcase/doc/scrollpanel/customdoc.ts @@ -8,7 +8,7 @@ import { Code } from '@domain/code';

    Scrollbar visuals can be styled for a unified look across different platforms.

    - +

    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis diff --git a/src/app/showcase/doc/select/basicdoc.ts b/src/app/showcase/doc/select/basicdoc.ts index b074359a149..15b6b19f67c 100644 --- a/src/app/showcase/doc/select/basicdoc.ts +++ b/src/app/showcase/doc/select/basicdoc.ts @@ -23,7 +23,6 @@ interface City { `, }) export class BasicDoc implements OnInit { - cities: City[]; selectedCity: City | undefined; diff --git a/src/app/showcase/doc/select/clearicondoc.ts b/src/app/showcase/doc/select/clearicondoc.ts index 9bfe7401e93..ea73c40047b 100644 --- a/src/app/showcase/doc/select/clearicondoc.ts +++ b/src/app/showcase/doc/select/clearicondoc.ts @@ -13,7 +13,14 @@ interface City {

    When showClear is enabled, a clear icon is added to reset the Select.

    - +
    `, diff --git a/src/app/showcase/doc/select/editabledoc.ts b/src/app/showcase/doc/select/editabledoc.ts index 30daf3ae8ad..63bcc673a16 100644 --- a/src/app/showcase/doc/select/editabledoc.ts +++ b/src/app/showcase/doc/select/editabledoc.ts @@ -13,7 +13,14 @@ interface City {

    When editable is present, the input can also be entered with typing.

    - +
    `, diff --git a/src/app/showcase/doc/select/filleddoc.ts b/src/app/showcase/doc/select/filleddoc.ts index 58fb67cf8c8..2c33769d5f8 100644 --- a/src/app/showcase/doc/select/filleddoc.ts +++ b/src/app/showcase/doc/select/filleddoc.ts @@ -16,7 +16,14 @@ interface City {

    - +
    `, diff --git a/src/app/showcase/doc/select/groupdoc.ts b/src/app/showcase/doc/select/groupdoc.ts index f78ef19634d..e3a86a9af17 100644 --- a/src/app/showcase/doc/select/groupdoc.ts +++ b/src/app/showcase/doc/select/groupdoc.ts @@ -9,7 +9,13 @@ import { Code } from '@domain/code';

    Options can be grouped when a nested data structures is provided.

    - +
    Loading state can be used loading property.

    - +
    `, diff --git a/src/app/showcase/doc/selectbutton/basicdoc.ts b/src/app/showcase/doc/selectbutton/basicdoc.ts index 4d6defc061a..4a5f02142dc 100644 --- a/src/app/showcase/doc/selectbutton/basicdoc.ts +++ b/src/app/showcase/doc/selectbutton/basicdoc.ts @@ -8,7 +8,7 @@ import { Code } from '@domain/code';

    SelectButton requires a value to bind and a collection of options.

    - +
    `, diff --git a/src/app/showcase/doc/slider/sliderdoc.module.ts b/src/app/showcase/doc/slider/sliderdoc.module.ts index 3ba283a0570..31d83530158 100644 --- a/src/app/showcase/doc/slider/sliderdoc.module.ts +++ b/src/app/showcase/doc/slider/sliderdoc.module.ts @@ -19,7 +19,17 @@ import { FilterDoc } from './filterdoc'; import { SelectButtonModule } from 'primeng/selectbutton'; @NgModule({ - imports: [CommonModule, AppCodeModule, FormsModule, ReactiveFormsModule, SliderModule, AppDocModule, InputTextModule, SelectButtonModule, RouterModule], + imports: [ + CommonModule, + AppCodeModule, + FormsModule, + ReactiveFormsModule, + SliderModule, + AppDocModule, + InputTextModule, + SelectButtonModule, + RouterModule, + ], exports: [AppDocModule], declarations: [ImportDoc, BasicDoc, InputDoc, StepDoc, RangeDoc, VerticalDoc, FilterDoc, StyleDoc, AccessibilityDoc, ReactiveFormsDoc], }) diff --git a/src/app/showcase/doc/slider/verticaldoc.ts b/src/app/showcase/doc/slider/verticaldoc.ts index d8c1521b0c7..90fa7bc6ff1 100644 --- a/src/app/showcase/doc/slider/verticaldoc.ts +++ b/src/app/showcase/doc/slider/verticaldoc.ts @@ -14,7 +14,7 @@ import { Code } from '@domain/code'; `, }) export class VerticalDoc { - value: number = 50 + value: number = 50; code: Code = { basic: ``, diff --git a/src/app/showcase/doc/speeddial/lineardoc.ts b/src/app/showcase/doc/speeddial/lineardoc.ts index 434f2894c12..2c607dac45d 100644 --- a/src/app/showcase/doc/speeddial/lineardoc.ts +++ b/src/app/showcase/doc/speeddial/lineardoc.ts @@ -126,6 +126,5 @@ export class SpeedDialLinearDemo implements OnInit { ]; } }`, - }; } diff --git a/src/app/showcase/doc/table/filterbasic.ts b/src/app/showcase/doc/table/filterbasic.ts index 8bb4a09b489..4bc03ee0a4d 100644 --- a/src/app/showcase/doc/table/filterbasic.ts +++ b/src/app/showcase/doc/table/filterbasic.ts @@ -105,7 +105,7 @@ import { CustomerService } from '@service/customerservice'; (onChange)="filter($event.value)" placeholder="Select One" [showClear]="true" - style="min-width: 12rem" + style="min-width: 12rem" > diff --git a/src/app/showcase/doc/table/rowexpansiondoc.ts b/src/app/showcase/doc/table/rowexpansiondoc.ts index b9358165a4d..0f998780a8b 100644 --- a/src/app/showcase/doc/table/rowexpansiondoc.ts +++ b/src/app/showcase/doc/table/rowexpansiondoc.ts @@ -78,7 +78,7 @@ import { TableRowCollapseEvent, TableRowExpandEvent } from 'primeng/table';
    -
    Orders for {{ product.name }}
    +
    Orders for {{ product.name }}
    diff --git a/src/app/showcase/doc/table/tabledoc.module.ts b/src/app/showcase/doc/table/tabledoc.module.ts index 4e83630514f..6f4ea3c8edb 100644 --- a/src/app/showcase/doc/table/tabledoc.module.ts +++ b/src/app/showcase/doc/table/tabledoc.module.ts @@ -121,7 +121,7 @@ import { BadgeModule } from 'primeng/badge'; IconFieldModule, InputIconModule, ToggleSwitchModule, - BadgeModule + BadgeModule, ], declarations: [ ImportDoc, diff --git a/src/app/showcase/doc/textarea/texteareadoc.module.ts b/src/app/showcase/doc/textarea/texteareadoc.module.ts index e5db9163fa4..4bcade7948a 100644 --- a/src/app/showcase/doc/textarea/texteareadoc.module.ts +++ b/src/app/showcase/doc/textarea/texteareadoc.module.ts @@ -34,7 +34,7 @@ import { IftaLabelDoc } from './iftalabeldoc'; KeyFilterModule, FloatLabelModule, RouterModule, - IftaLabelModule + IftaLabelModule, ], exports: [AppDocModule], declarations: [ @@ -49,7 +49,7 @@ import { IftaLabelDoc } from './iftalabeldoc'; AccessibilityDoc, ReactiveFormsDoc, FilledDoc, - IftaLabelDoc + IftaLabelDoc, ], }) export class TextareaDocModule {} diff --git a/src/app/showcase/doc/tree/contextmenudoc.ts b/src/app/showcase/doc/tree/contextmenudoc.ts index 228f36755fd..841c2301b52 100644 --- a/src/app/showcase/doc/tree/contextmenudoc.ts +++ b/src/app/showcase/doc/tree/contextmenudoc.ts @@ -10,7 +10,13 @@ import { NodeService } from '@service/nodeservice';

    Tree requires a collection of TreeNode instances as a value.

    - +
    diff --git a/src/app/showcase/doc/tree/virtualscrolldoc.ts b/src/app/showcase/doc/tree/virtualscrolldoc.ts index dd91aa96577..eaee70c6670 100644 --- a/src/app/showcase/doc/tree/virtualscrolldoc.ts +++ b/src/app/showcase/doc/tree/virtualscrolldoc.ts @@ -13,7 +13,13 @@ import { NodeService } from '@service/nodeservice';

    - +
    `, diff --git a/src/app/showcase/doc/treeselect/treeselectdoc.module.ts b/src/app/showcase/doc/treeselect/treeselectdoc.module.ts index 2a55a79c9dc..228b4a44fba 100644 --- a/src/app/showcase/doc/treeselect/treeselectdoc.module.ts +++ b/src/app/showcase/doc/treeselect/treeselectdoc.module.ts @@ -33,7 +33,7 @@ import { IftaLabelDoc } from './iftalabeldoc'; ReactiveFormsModule, RouterModule, FloatLabelModule, - IftaLabelModule + IftaLabelModule, ], exports: [AppDocModule], declarations: [ diff --git a/src/app/showcase/pages/iconfield/index.ts b/src/app/showcase/pages/iconfield/index.ts index 24094782617..ee938a3ac50 100644 --- a/src/app/showcase/pages/iconfield/index.ts +++ b/src/app/showcase/pages/iconfield/index.ts @@ -44,7 +44,7 @@ export class IconFieldDemo { { id: 'iftalabel', label: 'Ifta Label', - component: IftaLabelDoc + component: IftaLabelDoc, }, { id: 'accessibility', diff --git a/src/app/showcase/pages/iftalabel/index.ts b/src/app/showcase/pages/iftalabel/index.ts index 665f1d11975..433265c6117 100755 --- a/src/app/showcase/pages/iftalabel/index.ts +++ b/src/app/showcase/pages/iftalabel/index.ts @@ -38,7 +38,7 @@ export class IftaLabelDemo { { id: 'accessibility', label: 'Accessibility', - component: AccessibilityDoc + component: AccessibilityDoc, }, ]; } diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 858409f2714..6621192cebe 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription, debounceTime } from 'rxjs'; +import { Subscription } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -227,7 +227,7 @@ import { KnobModule } from 'primeng/knob'; 'w-full': !isSlimMenu, }" > - + ・ Slim Mode diff --git a/src/app/showcase/pages/listbox/index.ts b/src/app/showcase/pages/listbox/index.ts index 71bd6fe07a9..e3c435ece69 100644 --- a/src/app/showcase/pages/listbox/index.ts +++ b/src/app/showcase/pages/listbox/index.ts @@ -45,7 +45,7 @@ export class ListboxDemo { { id: 'checkmark', label: 'Checkmark', - component: CheckmarkDoc + component: CheckmarkDoc, }, { id: 'multiple', diff --git a/src/app/showcase/pages/message/index.ts b/src/app/showcase/pages/message/index.ts index ab65f9a2cc5..f5c80a5a7e2 100644 --- a/src/app/showcase/pages/message/index.ts +++ b/src/app/showcase/pages/message/index.ts @@ -5,7 +5,6 @@ import { ImportDoc } from '@doc/message/importdoc'; import { MessageDocModule } from '@doc/message/messagedoc.module'; import { FormDoc } from '@doc/message/formdoc'; import { DynamicDoc } from '@doc/message/dynamicdoc'; -import { ClosableDoc } from '@doc/message/closabledoc'; import { LifeDoc } from '@doc/message/lifedoc'; import { AccessibilityDoc } from '@doc/message/accessibilitydoc'; import { SeverityDoc } from '@doc/message/severitydoc'; @@ -37,7 +36,7 @@ export class MessageDemo { { id: 'severity', label: 'Severity', - component: SeverityDoc + component: SeverityDoc, }, { id: 'icon', diff --git a/src/app/showcase/pages/toolbar/index.ts b/src/app/showcase/pages/toolbar/index.ts index 700c9aa8090..20fd45b576c 100644 --- a/src/app/showcase/pages/toolbar/index.ts +++ b/src/app/showcase/pages/toolbar/index.ts @@ -33,7 +33,7 @@ export class ToolbarDemo { { id: 'custom', label: 'Custom', - component: CustomDoc + component: CustomDoc, }, { id: 'accessibility', diff --git a/src/app/showcase/pages/treeselect/index.ts b/src/app/showcase/pages/treeselect/index.ts index 9546eae84c1..5707cc07c51 100644 --- a/src/app/showcase/pages/treeselect/index.ts +++ b/src/app/showcase/pages/treeselect/index.ts @@ -77,7 +77,7 @@ export class TreeSelectDemo { { id: 'iftalabel', label: 'Ifta Label', - component: IftaLabelDoc + component: IftaLabelDoc, }, { id: 'filled', From d0acbd247a93ac0f0ada0a65b7be3b3b225d66df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:23:11 +0300 Subject: [PATCH 33/49] Init themedoc builder --- .gitignore | 3 +- api-generator/build-apidoc.ts | 4 +- api-generator/build-theming.ts | 92 ++++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 api-generator/build-theming.ts diff --git a/.gitignore b/.gitignore index 7dc352d2419..0df428e5061 100644 --- a/.gitignore +++ b/.gitignore @@ -43,7 +43,8 @@ Thumbs.db # type doc api-generator/typedoc.json +api-generator/themedoc.json .vercel .nx -builder/node_modules \ No newline at end of file +builder/node_modules diff --git a/api-generator/build-apidoc.ts b/api-generator/build-apidoc.ts index 9c0e28aa622..21a0495bf2a 100644 --- a/api-generator/build-apidoc.ts +++ b/api-generator/build-apidoc.ts @@ -44,7 +44,6 @@ async function main() { const project = await app.convert(); await app.generateJson(project, `./api-generator/typedoc.json`); - if (project) { let doc = {}; @@ -85,7 +84,6 @@ async function main() { }; const modules = project.groups.find((g) => g.title === 'Modules'); - if (isProcessable(modules)) { modules.children.forEach((module) => { const name = module.name.replace(/.*\//, ''); @@ -572,6 +570,8 @@ async function main() { doc[name]['types'] = types; } + + // if(isProcessable(module_theming_group)) {} } } }); diff --git a/api-generator/build-theming.ts b/api-generator/build-theming.ts new file mode 100644 index 00000000000..2065162b1a9 --- /dev/null +++ b/api-generator/build-theming.ts @@ -0,0 +1,92 @@ +//@ts-ignore +const TypeDoc = require('typedoc'); +//@ts-ignore +const path = require('path'); +//@ts-ignore +const fs = require('fs'); +//@ts-ignore +const rootDir = path.resolve(__dirname, '../'); +//@ts-ignore +const outputPath = path.resolve(rootDir, 'src/app/showcase/doc/apidoc'); + +// const staticMessages = { +// methods: "Defines methods that can be accessed by the component's reference.", +// emits: 'Defines emit that determine the behavior of the component based on a given condition or report the actions that the component takes.', +// templates: 'Defines the templates used by the component.', +// events: "Defines the custom events used by the component's emitters.", +// interfaces: 'Defines the custom interfaces used by the module.', +// types: 'Defines the custom types used by the module.', +// props: 'Defines the input properties of the component.', +// service: 'Defines the service used by the component', +// }; + +async function theming() { + const app = await TypeDoc.Application.bootstrapWithPlugins({ + // typedoc options here + name: 'PrimeNG', + entryPoints: [`src/app/components/themes/types/accordion/`, `src/app/components/themes/types/panel/`], + entryPointStrategy: 'expand', + hideGenerator: true, + excludeExternals: true, + includeVersion: true, + searchInComments: true, + disableSources: false, + logLevel: 'Error', + sort: ['source-order'], + exclude: ['node_modules', 'src/app/components/**/*spec.ts', 'src/app/components/**/*public_api.ts'], + }); + + const project = await app.convert(); + await app.generateJson(project, `./api-generator/themedoc.json`); + // console.log(project); + if (project) { + let doc = {}; + + const parseText = (text) => { + return text.replace(/{/g, '{').replace(/}/g, '}'); + }; + + const getDeprecatedText = (signature) => { + const deprecatedTag = signature?.comment?.getTag('@deprecated'); + return deprecatedTag ? parseText(deprecatedTag.content[0].text) : undefined; + }; + + const isProcessable = (value) => { + return value && value.children && value.children.length; + }; + + const allowed = (name) => { + return !name.includes('ts-helpers') && !name.includes('icons'); + }; + + const modules = project.groups.find((g) => g.title === 'Modules'); + modules.children.forEach((child) => { + const _name = child.name.split('/').pop(); + doc[_name] = { + name: _name, + properties: {}, + }; + + child.groups.forEach((group) => { + // console.log(group.children); + }); + }); + + let mergedDocs = {}; + + for (const key in doc) { + if (!mergedDocs[key]) { + mergedDocs[key] = { + ...doc[key], + }; + } + } + + const typedocJSON = JSON.stringify(mergedDocs, null, 4); + + !fs.existsSync(outputPath) && fs.mkdirSync(outputPath); + fs.writeFileSync(path.resolve(outputPath, 'index.json'), typedocJSON); + } +} + +theming().catch(console.error); From dcd4dccc7d7a151096237454ce62473f33aac98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:04:45 +0300 Subject: [PATCH 34/49] rebase v18 --- src/app/components/table/style/tablestyle.ts | 1 + .../layout/topbar/app.topbar.component.html | 16 ++++++------- .../pages/landing/herosection.component.ts | 6 ++--- .../showcase/styles/layout/_templates.scss | 6 ++--- .../layout/variables/landing/_dark.scss | 24 +++++++++---------- .../layout/variables/landing/_light.scss | 22 ++++++++--------- 6 files changed, 38 insertions(+), 37 deletions(-) diff --git a/src/app/components/table/style/tablestyle.ts b/src/app/components/table/style/tablestyle.ts index 1dc20325348..92fb0dc5435 100644 --- a/src/app/components/table/style/tablestyle.ts +++ b/src/app/components/table/style/tablestyle.ts @@ -698,6 +698,7 @@ const inlineStyles = { thead: { position: 'sticky' }, tfoot: { position: 'sticky' }, }; + @Injectable() export class TableStyle extends BaseStyle { name = 'datatable'; diff --git a/src/app/showcase/layout/topbar/app.topbar.component.html b/src/app/showcase/layout/topbar/app.topbar.component.html index fb133099645..45c02a4e79f 100644 --- a/src/app/showcase/layout/topbar/app.topbar.component.html +++ b/src/app/showcase/layout/topbar/app.topbar.component.html @@ -123,14 +123,14 @@
  • -
  • -
    \ No newline at end of file +
    diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 6621192cebe..43448fa6ee1 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -759,13 +759,13 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "Achieve sophistication and subtlety with Verona's minimalistic, content-focused design.", + text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' }, { title: 'Freya', link: 'https://primevue.org/templates/freya/', image: 'https://primefaces.org/cdn/primevue/images/layouts/freya-vue.png', - text: "Give your application a sleek, updated look with Freya's chic and modern premium template.", + text: 'Give your application a sleek, updated look with Freya\'s chic and modern premium template.', }, ]; @@ -815,7 +815,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { name: 'Jacob Jones', time: '12.23.2023', title: 'Optimized Workflow Revolution ', - text: "Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it's efficiency like never before. Let's get in touch for a brief demo!", + text: 'Experience a workflow revolution with our intuitive SaaS tool. With enhanced features and optimized processes, it\'s efficiency like never before. Let\'s get in touch for a brief demo!', }, { image: 'https://www.primefaces.org/cdn/primevue/images/landing/apps/avatar8.png', diff --git a/src/assets/showcase/styles/layout/_templates.scss b/src/assets/showcase/styles/layout/_templates.scss index 3b56e1e4a40..762d730b9f4 100644 --- a/src/assets/showcase/styles/layout/_templates.scss +++ b/src/assets/showcase/styles/layout/_templates.scss @@ -26,12 +26,12 @@ @keyframes p-features-order-animation { 0% { clip-path: polygon(0% 100%, 15% 100%, 32% 100%, 54% 100%, 70% 100%, 84% 100%, 100% 100%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 20% { clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, - 100% 100%, 0% 100%); + 100% 100%, 0% 100%); } 40% { @@ -45,4 +45,4 @@ 100% { clip-path: polygon(0 0, 18% 0, 39% 0, 53% 0, 62% 0, 87% 0, 100% 0, 100% 100%, 0 100%); } -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_dark.scss b/src/assets/showcase/styles/layout/variables/landing/_dark.scss index 22932c59cc9..ec442774e80 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_dark.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_dark.scss @@ -18,29 +18,29 @@ --home-blocks-border-left:5px solid #1f2937; --home-blocks-border-bottom:7px solid #1f2937; --home-blocks-border:1px solid #424b57; - --home-blocks-sidebar-bg:var(--p-surface-900); - --home-blocks-list-bg:var(--p-surface-800); - --home-blocks-main-bg:var(--p-surface-950); + --home-blocks-sidebar-bg: var(--p-surface-900); + --home-blocks-list-bg: var(--p-surface-800); + --home-blocks-main-bg: var(--p-surface-950); --home-blocks-main-border:1px solid #424b57; - --home-blocks-item-bg:var(--p-surface-900); - --home-blocks-image-bg:var(--p-surface-800); - --home-blocks-text-color:var(--p-surface-600); + --home-blocks-item-bg: var(--p-surface-900); + --home-blocks-image-bg: var(--p-surface-800); + --home-blocks-text-color: var(--p-surface-600); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, 0.25); --home-blocks-active-border-top:1px solid #424b57; --home-blocks-active-border-right:1px solid #424b57; --home-blocks-active-border-bottom:6px solid #424b57; --home-blocks-active-border-left:4px solid #424b57; --home-blocks-animation-shadow:0px 30px 50px 20px rgba(0, 0, 0, 0.25); - --home-blocks-tablebar-bg:var(--p-surface-700); - --home-blocks-bar-bg:var(--p-surface-700); - --home-blocks-bar-button-bg:var(--p-surface-700); - --home-blocks-circle-bg:var(--p-surface-800); + --home-blocks-tablebar-bg: var(--p-surface-700); + --home-blocks-bar-bg: var(--p-surface-700); + --home-blocks-bar-button-bg: var(--p-surface-700); + --home-blocks-circle-bg: var(--p-surface-800); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0, 0, 0, 0.25); --home-templates-block-border-left:5px solid #424b57; --home-templates-block-border-bottom:7px solid #424b57; --home-templates-line:rgba(255,255,255,.1); - --home-templates-block-hover-bg:var(--p-mask-background); + --home-templates-block-hover-bg: var(--p-mask-background); --home-templates-btn-bg:#1f2937; --home-templates-btn-text-color:#ffffff; --home-templates-btn-shadow:0px 10px 15px 0px rgba(0, 0, 0, 0.25); @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid #424b57; --home-features-card-shadow: none; --home-box-ring-color: color-mix(in srgb, var(--primary-color), transparent 70%); -} \ No newline at end of file +} diff --git a/src/assets/showcase/styles/layout/variables/landing/_light.scss b/src/assets/showcase/styles/layout/variables/landing/_light.scss index ba546d11cdc..c84929681a6 100644 --- a/src/assets/showcase/styles/layout/variables/landing/_light.scss +++ b/src/assets/showcase/styles/layout/variables/landing/_light.scss @@ -18,23 +18,23 @@ --home-blocks-border-left:5px solid rgba(0,0,0,.1); --home-blocks-border-bottom:7px solid rgba(0,0,0,.1); --home-blocks-border:1px solid rgba(0,0,0,.1); - --home-blocks-sidebar-bg:var(--p-surface-100); - --home-blocks-list-bg:var(--p-surface-50); - --home-blocks-main-bg:var(--p-surface-0); + --home-blocks-sidebar-bg: var(--p-surface-100); + --home-blocks-list-bg: var(--p-surface-50); + --home-blocks-main-bg: var(--p-surface-0); --home-blocks-main-border:1px solid rgba(0,0,0,.1); - --home-blocks-item-bg:var(--p-surface-100); - --home-blocks-image-bg:var(--p-surface-200); - --home-blocks-text-color:var(--p-surface-300); + --home-blocks-item-bg: var(--p-surface-100); + --home-blocks-image-bg: var(--p-surface-200); + --home-blocks-text-color: var(--p-surface-300); --home-blocks-active-shadow:0px 30px 50px 0px rgba(0, 0, 0, .1); --home-blocks-active-border-top:1px solid rgba(0,0,0,.07); --home-blocks-active-border-right:1px solid rgba(0,0,0,.07); --home-blocks-active-border-bottom:4px solid rgba(0,0,0,.07); --home-blocks-active-border-left:4px solid rgba(0,0,0,.07); --home-blocks-animation-shadow:0px 30px 50px 10px rgba(0, 0, 0, .2); - --home-blocks-tablebar-bg:var(--p-surface-300); - --home-blocks-bar-bg:var(--p-surface-300); - --home-blocks-bar-button-bg:var(--p-surface-0); - --home-blocks-circle-bg:var(--p-surface-300); + --home-blocks-tablebar-bg: var(--p-surface-300); + --home-blocks-bar-bg: var(--p-surface-300); + --home-blocks-bar-button-bg: var(--p-surface-0); + --home-blocks-circle-bg: var(--p-surface-300); --home-templates-bg:transparent; --home-templates-block-shadow:0px 5px 10px 0px rgba(0,0,0,.1); --home-templates-block-border-left:5px solid #d1d5db; @@ -50,4 +50,4 @@ --home-templates-btn-border-left:3px solid rgba(0,0,0,.1); --home-features-card-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.02), 0px 28px 28px 0px rgba(0, 0, 0, 0.02), 0px 63px 38px 0px rgba(0, 0, 0, 0.01); --home-box-ring-color: var(--p-primary-200); -} \ No newline at end of file +} From f4a968b4ea6e007bd1e0c849d6371f04da61451c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:07:03 +0300 Subject: [PATCH 35/49] Fix typo --- src/app/showcase/pages/landing/herosection.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 43448fa6ee1..d11e9102e2e 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription } from 'rxjs'; +import { Subscription, debounceTime } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -759,7 +759,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { title: 'Verona', link: 'https://primevue.org/templates/verona/', image: 'https://primefaces.org/cdn/primevue/images/layouts/verona-vue.jpg', - text: "'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.' + text: 'Achieve sophistication and subtlety with Verona\'s minimalistic, content-focused design.', }, { title: 'Freya', From 8dbd0744ffb3c92845f8072fc2ab5c59cd9b1e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:26:43 +0300 Subject: [PATCH 36/49] Fix conflict --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index ecaef04f045..a41cad6720d 100644 --- a/package.json +++ b/package.json @@ -99,3 +99,4 @@ "tailwindcss-primeui": "^0.3.4" } } + From cdd46c40964dfcb92946c109186065018386863f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 16 Oct 2024 18:57:24 +0300 Subject: [PATCH 37/49] Update docs --- api-generator/themedoc.json | 148506 +++++++++++++++++++++- src/app/showcase/doc/apidoc/index.json | 8884 +- 2 files changed, 156045 insertions(+), 1345 deletions(-) diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json index 753d2c18b95..68b28e881e5 100644 --- a/api-generator/themedoc.json +++ b/api-generator/themedoc.json @@ -48,7 +48,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L17" } ], "type": { @@ -92,7 +92,7 @@ "fileName": "accordion/index.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L23" } ], "type": { @@ -114,7 +114,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L17" } ] } @@ -141,7 +141,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L28" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "accordion/index.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L34" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "accordion/index.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L40" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L28" } ] } @@ -275,7 +275,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L45" } ], "type": { @@ -319,7 +319,7 @@ "fileName": "accordion/index.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L51" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "accordion/index.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L57" } ], "type": { @@ -399,7 +399,7 @@ "fileName": "accordion/index.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L63" } ], "type": { @@ -439,7 +439,7 @@ "fileName": "accordion/index.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L69" } ], "type": { @@ -479,7 +479,7 @@ "fileName": "accordion/index.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L75" } ], "type": { @@ -519,7 +519,7 @@ "fileName": "accordion/index.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L81" } ], "type": { @@ -559,7 +559,7 @@ "fileName": "accordion/index.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L87" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "accordion/index.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L93" } ], "type": { @@ -639,7 +639,7 @@ "fileName": "accordion/index.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L99" } ], "type": { @@ -679,7 +679,7 @@ "fileName": "accordion/index.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L105" } ], "type": { @@ -719,7 +719,7 @@ "fileName": "accordion/index.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L111" } ], "type": { @@ -759,7 +759,7 @@ "fileName": "accordion/index.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L117" } ], "type": { @@ -788,7 +788,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L121" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "accordion/index.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L127" } ], "type": { @@ -872,7 +872,7 @@ "fileName": "accordion/index.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L133" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "accordion/index.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L139" } ], "type": { @@ -952,7 +952,7 @@ "fileName": "accordion/index.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L145" } ], "type": { @@ -992,7 +992,7 @@ "fileName": "accordion/index.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L151" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L121" } ] } @@ -1045,7 +1045,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L156" } ], "type": { @@ -1089,7 +1089,7 @@ "fileName": "accordion/index.ts", "line": 162, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L162" } ], "type": { @@ -1129,7 +1129,7 @@ "fileName": "accordion/index.ts", "line": 168, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L168" } ], "type": { @@ -1169,7 +1169,7 @@ "fileName": "accordion/index.ts", "line": 174, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L174" } ], "type": { @@ -1209,7 +1209,7 @@ "fileName": "accordion/index.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L180" } ], "type": { @@ -1234,7 +1234,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L156" } ] } @@ -1261,7 +1261,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L185" } ], "type": { @@ -1305,7 +1305,7 @@ "fileName": "accordion/index.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L191" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "accordion/index.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L197" } ], "type": { @@ -1368,7 +1368,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L185" } ] } @@ -1395,7 +1395,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L202" } ], "type": { @@ -1439,7 +1439,7 @@ "fileName": "accordion/index.ts", "line": 208, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L208" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L208" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "accordion/index.ts", "line": 214, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L214" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L202" } ] } @@ -1537,7 +1537,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L45" } ] } @@ -1564,7 +1564,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L220" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "accordion/index.ts", "line": 226, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L226" } ], "type": { @@ -1648,7 +1648,7 @@ "fileName": "accordion/index.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L232" } ], "type": { @@ -1688,7 +1688,7 @@ "fileName": "accordion/index.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L238" } ], "type": { @@ -1728,7 +1728,7 @@ "fileName": "accordion/index.ts", "line": 244, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L244" } ], "type": { @@ -1768,7 +1768,7 @@ "fileName": "accordion/index.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L250" } ], "type": { @@ -1794,7 +1794,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L220" } ] } @@ -1813,7 +1813,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -1838,7 +1838,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -1876,7 +1876,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -1916,14 +1916,14 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" } ] } }, "inheritedFrom": { "type": "reference", - "target": -1, + "target": 1605, "name": "ColorSchemeDesignToken.colorScheme" } } @@ -1945,16 +1945,13 @@ "fileName": "accordion/index.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L13" } ], "extendedTypes": [ { "type": "reference", - "target": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken" - }, + "target": 1604, "typeArguments": [ { "type": "reference", @@ -1982,13 +1979,13 @@ "fileName": "accordion/index.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/accordion/index.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L1" } ] }, { "id": 56, - "name": "themes/panel", + "name": "themes/autocomplete", "variant": "declaration", "kind": 2, "flags": {}, @@ -1996,146 +1993,19 @@ "summary": [ { "kind": "text", - "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" + "text": "AutoComplete Design Tokens\n\n[Live Demo](https://www.primeng.org/autocomplete/)" } ] }, "children": [ { "id": 57, - "name": "PanelDesignTokens", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 84, - "name": "colorScheme", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 85, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 86, - "name": "light", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 10, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L10" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - }, - { - "id": 87, - "name": "dark", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "index.d.ts", - "line": 11, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L11" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 57, - "name": "PanelDesignTokens", - "package": "primeng" - }, - { - "type": "literal", - "value": "colorScheme" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 86, - 87 - ] - } - ], - "sources": [ - { - "fileName": "index.d.ts", - "line": 9, - "character": 18, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/index.d.ts#L9" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "ColorSchemeDesignToken.colorScheme" - } - }, - { + "name": "AutoCompleteDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { "id": 58, "name": "root", "variant": "declaration", @@ -2153,10 +2023,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", + "fileName": "autocomplete/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L17" } ], "type": { @@ -2189,7 +2059,7 @@ "content": [ { "kind": "text", - "text": "panel.background" + "text": "autocomplete.background" } ] } @@ -2197,10 +2067,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", + "fileName": "autocomplete/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L23" } ], "type": { @@ -2210,7 +2080,7 @@ }, { "id": 61, - "name": "borderColor", + "name": "disabledBackground", "variant": "declaration", "kind": 1024, "flags": { @@ -2220,7 +2090,7 @@ "summary": [ { "kind": "text", - "text": "Border color of root" + "text": "Disabled background of root" } ], "blockTags": [ @@ -2229,7 +2099,7 @@ "content": [ { "kind": "text", - "text": "panel.border.color" + "text": "autocomplete.disabled.background" } ] } @@ -2237,10 +2107,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", + "fileName": "autocomplete/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L29" } ], "type": { @@ -2250,7 +2120,7 @@ }, { "id": 62, - "name": "color", + "name": "filledBackground", "variant": "declaration", "kind": 1024, "flags": { @@ -2260,7 +2130,7 @@ "summary": [ { "kind": "text", - "text": "Color of root" + "text": "Filled background of root" } ], "blockTags": [ @@ -2269,7 +2139,7 @@ "content": [ { "kind": "text", - "text": "panel.color" + "text": "autocomplete.filled.background" } ] } @@ -2277,10 +2147,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", + "fileName": "autocomplete/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L35" } ], "type": { @@ -2290,7 +2160,7 @@ }, { "id": 63, - "name": "borderRadius", + "name": "filledFocusBackground", "variant": "declaration", "kind": 1024, "flags": { @@ -2300,7 +2170,7 @@ "summary": [ { "kind": "text", - "text": "Border radius of root" + "text": "Filled focus background of root" } ], "blockTags": [ @@ -2309,7 +2179,7 @@ "content": [ { "kind": "text", - "text": "panel.border.radius" + "text": "autocomplete.filled.focus.background" } ] } @@ -2317,76 +2187,100 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", + "fileName": "autocomplete/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L41" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 60, - 61, - 62, - 63 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 17, - "character": 11, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L17" - } - ] - } - } - }, - { - "id": 64, - "name": "header", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 65, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 64, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 65, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { "id": 66, - "name": "background", + "name": "focusBorderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2396,7 +2290,7 @@ "summary": [ { "kind": "text", - "text": "Background of header" + "text": "Focus border color of root" } ], "blockTags": [ @@ -2405,7 +2299,7 @@ "content": [ { "kind": "text", - "text": "panel.header.background" + "text": "autocomplete.focus.border.color" } ] } @@ -2413,10 +2307,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 52, + "fileName": "autocomplete/index.d.ts", + "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L59" } ], "type": { @@ -2426,7 +2320,7 @@ }, { "id": 67, - "name": "color", + "name": "invalidBorderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2436,7 +2330,7 @@ "summary": [ { "kind": "text", - "text": "Color of header" + "text": "Invalid border color of root" } ], "blockTags": [ @@ -2445,7 +2339,7 @@ "content": [ { "kind": "text", - "text": "panel.header.color" + "text": "autocomplete.invalid.border.color" } ] } @@ -2453,10 +2347,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 58, + "fileName": "autocomplete/index.d.ts", + "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L65" } ], "type": { @@ -2466,7 +2360,7 @@ }, { "id": 68, - "name": "padding", + "name": "color", "variant": "declaration", "kind": 1024, "flags": { @@ -2476,7 +2370,7 @@ "summary": [ { "kind": "text", - "text": "Padding of header" + "text": "Color of root" } ], "blockTags": [ @@ -2485,7 +2379,7 @@ "content": [ { "kind": "text", - "text": "panel.header.padding" + "text": "autocomplete.color" } ] } @@ -2493,10 +2387,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 64, + "fileName": "autocomplete/index.d.ts", + "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L71" } ], "type": { @@ -2506,7 +2400,7 @@ }, { "id": 69, - "name": "borderColor", + "name": "disabledColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2516,7 +2410,7 @@ "summary": [ { "kind": "text", - "text": "Border color of header" + "text": "Disabled color of root" } ], "blockTags": [ @@ -2525,7 +2419,7 @@ "content": [ { "kind": "text", - "text": "panel.header.border.color" + "text": "autocomplete.disabled.color" } ] } @@ -2533,10 +2427,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 70, + "fileName": "autocomplete/index.d.ts", + "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L77" } ], "type": { @@ -2546,7 +2440,7 @@ }, { "id": 70, - "name": "borderWidth", + "name": "placeholderColor", "variant": "declaration", "kind": 1024, "flags": { @@ -2556,7 +2450,7 @@ "summary": [ { "kind": "text", - "text": "Border width of header" + "text": "Placeholder color of root" } ], "blockTags": [ @@ -2565,7 +2459,7 @@ "content": [ { "kind": "text", - "text": "panel.header.border.width" + "text": "autocomplete.placeholder.color" } ] } @@ -2573,10 +2467,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 76, + "fileName": "autocomplete/index.d.ts", + "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L83" } ], "type": { @@ -2586,7 +2480,87 @@ }, { "id": 71, - "name": "borderRadius", + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 72, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 73, + "name": "paddingY", "variant": "declaration", "kind": 1024, "flags": { @@ -2596,7 +2570,7 @@ "summary": [ { "kind": "text", - "text": "Border radius of header" + "text": "Padding y of root" } ], "blockTags": [ @@ -2605,7 +2579,7 @@ "content": [ { "kind": "text", - "text": "panel.header.border.radius" + "text": "autocomplete.padding.y" } ] } @@ -2613,78 +2587,20 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 82, + "fileName": "autocomplete/index.d.ts", + "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L101" } ], "type": { "type": "intrinsic", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 66, - 67, - 68, - 69, - 70, - 71 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 46, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L46" - } - ] - } - } - }, - { - "id": 72, - "name": "toggleableHeader", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the toggleable header section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 73, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ + }, { "id": 74, - "name": "padding", + "name": "borderRadius", "variant": "declaration", "kind": 1024, "flags": { @@ -2694,7 +2610,7 @@ "summary": [ { "kind": "text", - "text": "Padding of toggleable header" + "text": "Border radius of root" } ], "blockTags": [ @@ -2703,7 +2619,7 @@ "content": [ { "kind": "text", - "text": "panel.toggleable.header.padding" + "text": "autocomplete.border.radius" } ] } @@ -2711,259 +2627,20 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 93, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L93" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 74 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 87, - "character": 23, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L87" - } - ] - } - } - }, - { - "id": 75, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the title section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 76, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 77, - "name": "fontWeight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Font weight of title" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.title.font.weight" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 104, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L104" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 77 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 98, - "character": 12, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L98" - } - ] - } - } - }, - { - "id": 78, - "name": "content", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the content section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 79, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 80, - "name": "padding", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Padding of content" - } - ], - "blockTags": [ - { - "tag": "@designToken", - "content": [ - { - "kind": "text", - "text": "panel.content.padding" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 115, - "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L115" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 80 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 109, - "character": 14, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L109" - } - ] - } - } - }, - { - "id": 81, - "name": "footer", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used to pass tokens of the footer section" - } - ] - }, - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 4, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 82, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 83, - "name": "padding", + "fileName": "autocomplete/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 75, + "name": "focusRing", "variant": "declaration", "kind": 1024, "flags": { @@ -2973,7 +2650,264 @@ "summary": [ { "kind": "text", - "text": "Padding of footer" + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 76, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 77, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 78, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 79, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 80, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 81, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 77, + 78, + 79, + 80, + 81 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 82, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" } ], "blockTags": [ @@ -2982,7 +2916,7 @@ "content": [ { "kind": "text", - "text": "panel.footer.padding" + "text": "autocomplete.transition.duration" } ] } @@ -2990,10 +2924,10 @@ }, "sources": [ { - "fileName": "panel/index.d.ts", - "line": 126, + "fileName": "autocomplete/index.d.ts", + "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L148" } ], "type": { @@ -3006,448 +2940,147110 @@ { "title": "Properties", "children": [ - 83 + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 82 ] } ], "sources": [ { - "fileName": "panel/index.d.ts", - "line": 120, - "character": 13, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L120" + "fileName": "autocomplete/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L17" } ] } } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 84, - 58, - 64, - 72, - 75, - 78, - 81 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 13, - "character": 17, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L13" - } - ], - "extendedTypes": [ + }, { - "type": "reference", - "target": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken" - }, - "typeArguments": [ + "id": 83, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ { - "type": "reference", - "target": 57, - "name": "PanelDesignTokens", - "package": "primeng" + "fileName": "autocomplete/index.d.ts", + "line": 153, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L153" } ], - "name": "ColorSchemeDesignToken", - "package": "primeng" - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 57 - ] - } - ], - "sources": [ - { - "fileName": "panel/index.d.ts", - "line": 1, - "character": 0, - "url": "https://github.com/primefaces/primeng/blob/c7dac38bdb42b808b4914e047fe28922cbae05f5/src/app/components/themes/types/panel/index.d.ts#L1" - } - ] - } - ], - "groups": [ - { - "title": "Modules", - "children": [ - 1, - 56 - ] - } - ], - "packageName": "primeng", - "packageVersion": "18.0.0-beta.1", - "readme": [ - { - "kind": "text", - "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." - } - ], - "symbolIdMap": { - "1": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "" - }, - "2": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens" - }, - "3": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.root" - }, - "4": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "5": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.transitionDuration" - }, - "6": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.panel" - }, - "7": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "8": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" - }, - "9": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" - }, - "10": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.header" - }, - "11": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type" - }, - "12": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.color" - }, - "13": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.hoverColor" - }, - "14": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "type": { + "type": "reflection", + "declaration": { + "id": 84, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 85, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 159, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 86, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 87, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 88, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L177" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 89, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 183, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 85, + 86, + 87, + 88, + 89 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 153, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L153" + } + ] + } + } + }, + { + "id": 90, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 188, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L188" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 91, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 92, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 93, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 92, + 93 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 188, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L188" + } + ] + } + } + }, + { + "id": 94, + "name": "option", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option section" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 205, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L205" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 95, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 96, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 97, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 217, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L217" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 98, + "name": "selectedFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.selected.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 223, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L223" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 99, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 229, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L229" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 100, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 235, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L235" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 101, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 241, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L241" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 102, + "name": "selectedFocusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.selected.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 247, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L247" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 103, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 253, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L253" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 104, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 259, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L259" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 205, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L205" + } + ] + } + } + }, + { + "id": 105, + "name": "optionGroup", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option group section" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 264, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L264" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 106, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 107, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.group.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 270, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L270" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 108, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.group.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 276, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L276" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 109, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.group.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 282, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L282" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 110, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.option.group.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 288, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L288" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 107, + 108, + 109, + 110 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 264, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L264" + } + ] + } + } + }, + { + "id": 111, + "name": "dropdown", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dropdown section" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 293, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L293" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 112, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 113, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 299, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L299" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 114, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 305, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L305" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 115, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 311, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L311" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 116, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 317, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L317" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 117, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 323, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L323" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 118, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of dropdown" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 327, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L327" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 119, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 120, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 333, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L333" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 121, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 339, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L339" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 122, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 345, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L345" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 123, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 351, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L351" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 124, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 357, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L357" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 120, + 121, + 122, + 123, + 124 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 327, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L327" + } + ] + } + } + }, + { + "id": 125, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 364, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L364" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 126, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 370, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L370" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 127, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 376, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L376" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 128, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 382, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L382" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 129, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 388, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L388" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 130, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.dropdown.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 394, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L394" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 113, + 114, + 115, + 116, + 117, + 118, + 125, + 126, + 127, + 128, + 129, + 130 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 293, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L293" + } + ] + } + } + }, + { + "id": 131, + "name": "chip", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the chip section" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 399, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L399" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 132, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 133, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of chip" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.chip.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 405, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L405" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 133 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 399, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L399" + } + ] + } + } + }, + { + "id": 134, + "name": "emptyMessage", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the empty message section" + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 410, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L410" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 135, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 136, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of empty message" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "autocomplete.empty.message.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 416, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L416" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 136 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 410, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L410" + } + ] + } + } + }, + { + "id": 137, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 138, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 139, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "AutoCompleteDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 140, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "AutoCompleteDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 139, + 140 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 58, + 83, + 90, + 94, + 105, + 111, + 131, + 134, + 137 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 57, + "name": "AutoCompleteDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 57 + ] + } + ], + "sources": [ + { + "fileName": "autocomplete/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L1" + } + ] + }, + { + "id": 141, + "name": "themes/avatar", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Avatar Design Tokens\n\n[Live Demo](https://www.primeng.org/avatar/)" + } + ] + }, + "children": [ + { + "id": 142, + "name": "AvatarDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 143, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 144, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 145, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 146, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 147, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 148, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 149, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 145, + 146, + 147, + 148, + 149 + ] + } + ], + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 150, + "name": "group", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the group section" + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 52, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L52" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 151, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 152, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.group.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 153, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Offset of group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.group.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 152, + 153 + ] + } + ], + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 52, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L52" + } + ] + } + } + }, + { + "id": 154, + "name": "lg", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the lg section" + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 155, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 156, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of lg" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.lg.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 157, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of lg" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.lg.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 158, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of lg" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.lg.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 156, + 157, + 158 + ] + } + ], + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 69, + "character": 9, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 159, + "name": "xl", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the xl section" + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 92, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L92" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 160, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 161, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of xl" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.xl.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 98, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 162, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of xl" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.xl.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 163, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of xl" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "avatar.xl.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 110, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L110" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 161, + 162, + 163 + ] + } + ], + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 92, + "character": 9, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L92" + } + ] + } + } + }, + { + "id": 164, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 165, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 166, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 142, + "name": "AvatarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 167, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 142, + "name": "AvatarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 166, + 167 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 143, + 150, + 154, + 159, + 164 + ] + } + ], + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 142, + "name": "AvatarDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 142 + ] + } + ], + "sources": [ + { + "fileName": "avatar/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L1" + } + ] + }, + { + "id": 168, + "name": "themes/badge", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Badge Design Tokens\n\n[Live Demo](https://www.primeng.org/badge/)" + } + ] + }, + "children": [ + { + "id": 169, + "name": "BadgeDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 170, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 171, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 172, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 173, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 174, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 175, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 176, + "name": "minWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Min width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.min.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 177, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 172, + 173, + 174, + 175, + 176, + 177 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 178, + "name": "dot", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dot section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 179, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 180, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of dot" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.dot.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 180 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 58, + "character": 10, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 181, + "name": "sm", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the sm section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 182, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 183, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of sm" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.sm.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 184, + "name": "minWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Min width of sm" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.sm.min.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 185, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of sm" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.sm.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 183, + 184, + 185 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 69, + "character": 9, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 186, + "name": "lg", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the lg section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 92, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L92" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 187, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 188, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of lg" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.lg.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 98, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 189, + "name": "minWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Min width of lg" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.lg.min.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 190, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of lg" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.lg.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 110, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L110" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 188, + 189, + 190 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 92, + "character": 9, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L92" + } + ] + } + } + }, + { + "id": 191, + "name": "xl", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the xl section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 115, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L115" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 192, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 193, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of xl" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.xl.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 194, + "name": "minWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Min width of xl" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.xl.min.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 195, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of xl" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.xl.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 133, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 193, + 194, + 195 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 115, + "character": 9, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L115" + } + ] + } + } + }, + { + "id": 196, + "name": "primary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the primary section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 138, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L138" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 197, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 198, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of primary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.primary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 144, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L144" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 199, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of primary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.primary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 150, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L150" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 198, + 199 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 138, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L138" + } + ] + } + } + }, + { + "id": 200, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the secondary section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 155, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L155" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 201, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 202, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.secondary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 203, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 167, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 202, + 203 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 155, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L155" + } + ] + } + } + }, + { + "id": 204, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the success section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 172, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L172" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 205, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 206, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.success.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 178, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L178" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 207, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 184, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L184" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 206, + 207 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 172, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L172" + } + ] + } + } + }, + { + "id": 208, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the info section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 189, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L189" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 209, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 210, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.info.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 195, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L195" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 211, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 201, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L201" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 210, + 211 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 189, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L189" + } + ] + } + } + }, + { + "id": 212, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the warn section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 206, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L206" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 213, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 214, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.warn.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 212, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L212" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 215, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 218, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L218" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 214, + 215 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 206, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L206" + } + ] + } + } + }, + { + "id": 216, + "name": "danger", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the danger section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 223, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L223" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 217, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 218, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of danger" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.danger.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 229, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L229" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 219, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of danger" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.danger.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 235, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L235" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 218, + 219 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 223, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L223" + } + ] + } + } + }, + { + "id": 220, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the contrast section" + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 240, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L240" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 221, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 222, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.contrast.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 246, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L246" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 223, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "badge.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 252, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L252" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 222, + 223 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 240, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L240" + } + ] + } + } + }, + { + "id": 224, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 225, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 226, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 169, + "name": "BadgeDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 227, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 169, + "name": "BadgeDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 226, + 227 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 170, + 178, + 181, + 186, + 191, + 196, + 200, + 204, + 208, + 212, + 216, + 220, + 224 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 169, + "name": "BadgeDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 169 + ] + } + ], + "sources": [ + { + "fileName": "badge/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L1" + } + ] + }, + { + "id": 228, + "name": "themes/blockui", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "BlockUI Design Tokens\n\n[Live Demo](https://www.primeng.org/blockui/)" + } + ] + }, + "children": [ + { + "id": 229, + "name": "BlockUIDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 230, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "blockui/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 231, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 232, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "blockui.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "blockui/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 232 + ] + } + ], + "sources": [ + { + "fileName": "blockui/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 233, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 234, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 235, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 229, + "name": "BlockUIDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 236, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 229, + "name": "BlockUIDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 235, + 236 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 230, + 233 + ] + } + ], + "sources": [ + { + "fileName": "blockui/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 229, + "name": "BlockUIDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 229 + ] + } + ], + "sources": [ + { + "fileName": "blockui/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L1" + } + ] + }, + { + "id": 237, + "name": "themes/breadcrumb", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Breadcrumb Design Tokens\n\n[Live Demo](https://www.primeng.org/breadcrumb/)" + } + ] + }, + "children": [ + { + "id": 238, + "name": "BreadcrumbDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 239, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 240, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 241, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 242, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 243, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 244, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 241, + 242, + 243, + 244 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 245, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 246, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 247, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 248, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 249, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 250, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 251, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 74, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 252, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 253, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 80, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 254, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon hover color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 86, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 253, + 254 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 74, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 255, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of item" + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 91, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L91" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 256, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 257, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 97, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 258, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 103, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 259, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 109, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 260, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 115, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 261, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.item.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 121, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 257, + 258, + 259, + 260, + 261 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 91, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L91" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 247, + 248, + 249, + 250, + 251, + 255 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 46, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 262, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 127, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L127" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 263, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 264, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "breadcrumb.separator.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 133, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 264 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 127, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L127" + } + ] + } + } + }, + { + "id": 265, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 266, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 267, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 238, + "name": "BreadcrumbDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 268, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 238, + "name": "BreadcrumbDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 267, + 268 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 239, + 245, + 262, + 265 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 238, + "name": "BreadcrumbDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 238 + ] + } + ], + "sources": [ + { + "fileName": "breadcrumb/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L1" + } + ] + }, + { + "id": 269, + "name": "themes/button", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Button Design Tokens\n\n[Live Demo](https://www.primeng.org/button/)" + } + ] + }, + "children": [ + { + "id": 270, + "name": "ButtonDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 271, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 272, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 273, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 274, + "name": "roundedBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Rounded border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.rounded.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 275, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 276, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 277, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 278, + "name": "iconOnlyWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon only width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.icon.only.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 279, + "name": "sm", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L57" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 280, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 281, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.sm.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 63, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 282, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.sm.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 69, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 283, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.sm.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 75, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 281, + 282, + 283 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 57, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L57" + } + ] + } + } + }, + { + "id": 284, + "name": "lg", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L80" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 285, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 286, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.lg.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 86, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 287, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.lg.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 92, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 288, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.lg.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 286, + 287, + 288 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 80, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L80" + } + ] + } + } + }, + { + "id": 289, + "name": "label", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Label of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L103" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 290, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 291, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Label font weight of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.label.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 109, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 291 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 103, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L103" + } + ] + } + } + }, + { + "id": 292, + "name": "raisedShadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raised shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.raised.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 116, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L116" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 293, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 120, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 294, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 295, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 126, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 296, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 132, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 297, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 138, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 295, + 296, + 297 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 120, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L120" + } + ] + } + } + }, + { + "id": 298, + "name": "badgeSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Badge size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.badge.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 299, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 151, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 300, + "name": "primary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 155, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L155" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 301, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 302, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 161, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 303, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 167, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 304, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 173, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 305, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 179, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L179" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 306, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 185, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L185" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 307, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 191, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L191" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 308, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 197, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L197" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 309, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 203, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L203" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 310, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 209, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L209" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 311, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 213, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L213" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 312, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 313, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 219, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L219" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 314, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.primary.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 225, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L225" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 313, + 314 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 213, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L213" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 155, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L155" + } + ] + } + } + }, + { + "id": 315, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 231, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L231" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 316, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 317, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 237, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L237" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 318, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 243, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L243" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 319, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 249, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L249" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 320, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 255, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L255" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 321, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 261, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L261" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 322, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 267, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L267" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 323, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 273, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L273" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 324, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 279, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L279" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 325, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 285, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L285" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 326, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 289, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L289" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 327, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 328, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 295, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L295" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 329, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.secondary.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 301, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L301" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 328, + 329 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 289, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L289" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 231, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L231" + } + ] + } + } + }, + { + "id": 330, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 307, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L307" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 331, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 332, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 313, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L313" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 333, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 319, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L319" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 334, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 325, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L325" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 335, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 331, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L331" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 336, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 337, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L337" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 337, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 343, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L343" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 338, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 349, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L349" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 339, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 355, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L355" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 340, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 361, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L361" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 341, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 365, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L365" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 342, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 343, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 371, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L371" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 344, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.info.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 377, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L377" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 343, + 344 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 365, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L365" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 307, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L307" + } + ] + } + } + }, + { + "id": 345, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 383, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L383" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 346, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 347, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 389, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L389" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 348, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 395, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L395" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 349, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 401, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L401" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 350, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 407, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L407" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 351, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 413, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L413" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 352, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 419, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L419" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 353, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 425, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L425" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 354, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 431, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L431" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 355, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 437, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L437" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 356, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 441, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L441" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 357, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 358, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 447, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L447" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 359, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.success.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 453, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L453" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 358, + 359 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 441, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L441" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 383, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L383" + } + ] + } + } + }, + { + "id": 360, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 459, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L459" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 361, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 362, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 465, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L465" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 363, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 471, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L471" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 364, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 477, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L477" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 365, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 483, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L483" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 366, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 489, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L489" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 367, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 495, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L495" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 368, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 501, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L501" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 369, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 507, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L507" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 370, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 513, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L513" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 371, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 517, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L517" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 372, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 373, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 523, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L523" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 374, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.warn.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 529, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L529" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 373, + 374 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 517, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L517" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 459, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L459" + } + ] + } + } + }, + { + "id": 375, + "name": "help", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 535, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L535" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 376, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 377, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 541, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L541" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 378, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 547, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L547" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 379, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 553, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L553" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 380, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 559, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L559" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 381, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 565, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L565" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 382, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 571, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L571" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 383, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 577, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L577" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 384, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 583, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L583" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 385, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 589, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L589" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 386, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 593, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L593" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 387, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 388, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 599, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L599" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 389, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.help.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 605, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L605" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 388, + 389 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 593, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L593" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 535, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L535" + } + ] + } + } + }, + { + "id": 390, + "name": "danger", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 611, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L611" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 391, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 392, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 617, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L617" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 393, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 623, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L623" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 394, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 629, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L629" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 395, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 635, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L635" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 396, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 641, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L641" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 397, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 647, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L647" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 398, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 653, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L653" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 399, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 659, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L659" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 400, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 665, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L665" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 401, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 669, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L669" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 402, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 403, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 675, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L675" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 404, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.danger.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 681, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L681" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 403, + 404 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 669, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L669" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 611, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L611" + } + ] + } + } + }, + { + "id": 405, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 687, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L687" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 406, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 407, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 693, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L693" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 408, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 699, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L699" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 409, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast active background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 705, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L705" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 410, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 711, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L711" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 411, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 717, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L717" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 412, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast active border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 723, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L723" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 413, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 729, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L729" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 414, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 735, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L735" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 415, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast active color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 741, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L741" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 416, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 745, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L745" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 417, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 418, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 751, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L751" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 419, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.contrast.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 757, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L757" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 418, + 419 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 745, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L745" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 687, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L687" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 284, + 289, + 292, + 293, + 298, + 299, + 300, + 315, + 330, + 345, + 360, + 375, + 390, + 405 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 420, + "name": "outlined", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the outlined section" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 764, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L764" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 421, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 422, + "name": "primary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 768, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L768" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 423, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 424, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.primary.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 774, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L774" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 425, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.primary.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 780, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L780" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 426, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.primary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 786, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L786" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 427, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.primary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 792, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L792" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 424, + 425, + 426, + 427 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 768, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L768" + } + ] + } + } + }, + { + "id": 428, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 797, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L797" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 429, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 430, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.secondary.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 803, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L803" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 431, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.secondary.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 809, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L809" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 432, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.secondary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 815, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L815" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 433, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 821, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L821" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 430, + 431, + 432, + 433 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 797, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L797" + } + ] + } + } + }, + { + "id": 434, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 826, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L826" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 435, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 436, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.success.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 832, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L832" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 437, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.success.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 838, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L838" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 438, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.success.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 844, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L844" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 439, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 850, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L850" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 436, + 437, + 438, + 439 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 826, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L826" + } + ] + } + } + }, + { + "id": 440, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 855, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L855" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 441, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 442, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.info.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 861, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L861" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 443, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.info.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 867, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L867" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 444, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.info.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 873, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L873" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 445, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 879, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L879" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 442, + 443, + 444, + 445 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 855, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L855" + } + ] + } + } + }, + { + "id": 446, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 884, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L884" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 447, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 448, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.warn.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 890, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L890" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 449, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.warn.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 896, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L896" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 450, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.warn.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 902, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L902" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 451, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 908, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L908" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 448, + 449, + 450, + 451 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 884, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L884" + } + ] + } + } + }, + { + "id": 452, + "name": "help", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 913, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L913" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 453, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 454, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.help.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 919, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L919" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 455, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.help.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 925, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L925" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 456, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.help.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 931, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L931" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 457, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.help.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 937, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L937" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 454, + 455, + 456, + 457 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 913, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L913" + } + ] + } + } + }, + { + "id": 458, + "name": "danger", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 942, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L942" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 459, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 460, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.danger.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 948, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L948" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 461, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.danger.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 954, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L954" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 462, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.danger.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 960, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L960" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 463, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.danger.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 966, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L966" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 460, + 461, + 462, + 463 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 942, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L942" + } + ] + } + } + }, + { + "id": 464, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 971, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L971" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 465, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 466, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.contrast.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 977, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L977" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 467, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.contrast.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 983, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L983" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 468, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.contrast.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 989, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L989" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 469, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Contrast color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 995, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L995" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 466, + 467, + 468, + 469 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 971, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L971" + } + ] + } + } + }, + { + "id": 470, + "name": "plain", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain of outlined" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1000, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1000" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 471, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 472, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain hover background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.plain.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1006, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1006" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 473, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain active background of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.plain.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1012, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1012" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 474, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain border color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.plain.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1018, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1018" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 475, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain color of outlined" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.outlined.plain.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1024, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1024" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 472, + 473, + 474, + 475 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1000, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1000" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 422, + 428, + 434, + 440, + 446, + 452, + 458, + 464, + 470 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 764, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L764" + } + ] + } + } + }, + { + "id": 476, + "name": "text", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the text section" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1030, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1030" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 477, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 478, + "name": "primary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1034, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1034" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 479, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 480, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.primary.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1040, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1040" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 481, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.primary.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1046, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1046" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 482, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Primary color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.primary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1052, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1052" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 480, + 481, + 482 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1034, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1034" + } + ] + } + } + }, + { + "id": 483, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1057, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1057" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 484, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 485, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.secondary.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1063, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1063" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 486, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.secondary.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1069, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1069" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 487, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Secondary color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1075, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1075" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 485, + 486, + 487 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1057, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1057" + } + ] + } + } + }, + { + "id": 488, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1080, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1080" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 489, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 490, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.success.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1086, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1086" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 491, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.success.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1092, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1092" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 492, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Success color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1098, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1098" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 490, + 491, + 492 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1080, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1080" + } + ] + } + } + }, + { + "id": 493, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1103" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 494, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 495, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.info.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1109, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 496, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.info.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1115, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 497, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1121, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 495, + 496, + 497 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1103, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1103" + } + ] + } + } + }, + { + "id": 498, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1126" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 499, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 500, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.warn.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1132, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 501, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.warn.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1138, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 502, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Warn color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1144, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1144" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 500, + 501, + 502 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1126, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1126" + } + ] + } + } + }, + { + "id": 503, + "name": "help", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1149, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1149" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 504, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 505, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.help.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1155, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1155" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 506, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.help.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1161, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 507, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Help color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.help.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1167, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 505, + 506, + 507 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1149, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1149" + } + ] + } + } + }, + { + "id": 508, + "name": "danger", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1172, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1172" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 509, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 510, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.danger.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1178, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1178" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 511, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.danger.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1184, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1184" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 512, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Danger color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.danger.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1190, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1190" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 510, + 511, + 512 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1172, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1172" + } + ] + } + } + }, + { + "id": 513, + "name": "plain", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain of text" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1195, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1195" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 514, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 515, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain hover background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.plain.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1201, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1201" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 516, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain active background of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.plain.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1207, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1207" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 517, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Plain color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.text.plain.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1213, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1213" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 515, + 516, + 517 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1195, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1195" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 478, + 483, + 488, + 493, + 498, + 503, + 508, + 513 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1030, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1030" + } + ] + } + } + }, + { + "id": 518, + "name": "link", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the link section" + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1219, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1219" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 519, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 520, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.link.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1225, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1225" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 521, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.link.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1231, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1231" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 522, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "button.link.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1237, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1237" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 520, + 521, + 522 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1219, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1219" + } + ] + } + } + }, + { + "id": 523, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 524, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 525, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 270, + "name": "ButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 526, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 270, + "name": "ButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 525, + 526 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 271, + 420, + 476, + 518, + 523 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 270, + "name": "ButtonDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 270 + ] + } + ], + "sources": [ + { + "fileName": "button/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1" + } + ] + }, + { + "id": 527, + "name": "themes/card", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Card Design Tokens\n\n[Live Demo](https://www.primeng.org/card/)" + } + ] + }, + "children": [ + { + "id": 528, + "name": "CardDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 529, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 530, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 531, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 532, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 533, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 534, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 531, + 532, + 533, + 534 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 535, + "name": "body", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the body section" + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 536, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 537, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of body" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.body.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 538, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of body" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.body.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 537, + 538 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 46, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 539, + "name": "caption", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the caption section" + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 63, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L63" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 540, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 541, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of caption" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.caption.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 541 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 63, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L63" + } + ] + } + } + }, + { + "id": 542, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 74, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 543, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 544, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.title.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 545, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 544, + 545 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 74, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 546, + "name": "subtitle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the subtitle section" + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 91, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L91" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 547, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 548, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of subtitle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "card.subtitle.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 97, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 548 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 91, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L91" + } + ] + } + } + }, + { + "id": 549, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 550, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 551, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 528, + "name": "CardDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 552, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 528, + "name": "CardDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 551, + 552 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 529, + 535, + 539, + 542, + 546, + 549 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 528, + "name": "CardDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 528 + ] + } + ], + "sources": [ + { + "fileName": "card/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L1" + } + ] + }, + { + "id": 553, + "name": "themes/carousel", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Carousel Design Tokens\n\n[Live Demo](https://www.primeng.org/carousel/)" + } + ] + }, + "children": [ + { + "id": 554, + "name": "CarouselDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 555, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 556, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 557, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 557 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 558, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 559, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 560, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.content.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 560 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 561, + "name": "indicatorList", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the indicator list section" + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 39, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L39" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 562, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 563, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of indicator list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 45, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L45" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 564, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of indicator list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 51, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L51" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 563, + 564 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 39, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L39" + } + ] + } + } + }, + { + "id": 565, + "name": "indicator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the indicator section" + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 56, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L56" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 566, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 567, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 62, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L62" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 568, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 569, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 74, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 570, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of indicator" + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 78, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L78" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 571, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 572, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 84, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L84" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 573, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 90, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L90" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 574, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 96, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L96" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 575, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 102, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L102" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 576, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 108, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L108" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 572, + 573, + 574, + 575, + 576 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 78, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L78" + } + ] + } + } + }, + { + "id": 577, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 578, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 579, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "carousel.indicator.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 567, + 568, + 569, + 570, + 577, + 578, + 579 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 56, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L56" + } + ] + } + } + }, + { + "id": 580, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 581, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 582, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 554, + "name": "CarouselDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 583, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 554, + "name": "CarouselDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 582, + 583 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 555, + 558, + 561, + 565, + 580 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 554, + "name": "CarouselDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 554 + ] + } + ], + "sources": [ + { + "fileName": "carousel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L1" + } + ] + }, + { + "id": 584, + "name": "themes/cascadeselect", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "CascadeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/cascadeselect/)" + } + ] + }, + "children": [ + { + "id": 585, + "name": "CascadeSelectDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 586, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 587, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 588, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 589, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 590, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 591, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 592, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 593, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 594, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 595, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 596, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 597, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 598, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 599, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 600, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 601, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 602, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 603, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 604, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 605, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 606, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 607, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 608, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 609, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 605, + 606, + 607, + 608, + 609 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 610, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 600, + 601, + 602, + 603, + 610 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 611, + "name": "dropdown", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dropdown section" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 153, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L153" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 612, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 613, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.dropdown.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 159, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 614, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.dropdown.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 613, + 614 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 153, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L153" + } + ] + } + } + }, + { + "id": 615, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 170, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L170" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 616, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 617, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 176, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L176" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 618, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 182, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L182" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 619, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 188, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L188" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 620, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 621, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 617, + 618, + 619, + 620, + 621 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 170, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L170" + } + ] + } + } + }, + { + "id": 622, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 205, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L205" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 623, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 624, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 625, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 217, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L217" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 624, + 625 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 205, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L205" + } + ] + } + } + }, + { + "id": 626, + "name": "option", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option section" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 222, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L222" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 627, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 628, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 228, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L228" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 629, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 234, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L234" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 630, + "name": "selectedFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.selected.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 240, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L240" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 631, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 246, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L246" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 632, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 252, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L252" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 633, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 258, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L258" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 634, + "name": "selectedFocusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.selected.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 264, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L264" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 635, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 270, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L270" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 636, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 276, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L276" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 637, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of option" + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 280, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L280" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 638, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 639, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 286, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L286" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 640, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 292, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L292" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 641, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon size of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "cascadeselect.option.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 298, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L298" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 639, + 640, + 641 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 280, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L280" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 222, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L222" + } + ] + } + } + }, + { + "id": 642, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 643, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 644, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 585, + "name": "CascadeSelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 645, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 585, + "name": "CascadeSelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 644, + 645 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 586, + 611, + 615, + 622, + 626, + 642 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 585, + "name": "CascadeSelectDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 585 + ] + } + ], + "sources": [ + { + "fileName": "cascadeselect/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L1" + } + ] + }, + { + "id": 646, + "name": "themes/checkbox", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checkbox Design Tokens\n\n[Live Demo](https://www.primeng.org/checkbox/)" + } + ] + }, + "children": [ + { + "id": 647, + "name": "CheckboxDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 648, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 649, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 650, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 651, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 652, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 653, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 654, + "name": "checkedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.checked.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 655, + "name": "checkedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.checked.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 656, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 657, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 658, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 659, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 660, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 661, + "name": "checkedBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.checked.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 662, + "name": "checkedHoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.checked.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 663, + "name": "checkedFocusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.checked.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 664, + "name": "checkedDisabledBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked disabled border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.checked.disabled.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 665, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 113, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L113" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 666, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 119, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L119" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 667, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L123" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 668, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 669, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 670, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 671, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 672, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 147, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L147" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 673, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 153, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L153" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 669, + 670, + 671, + 672, + 673 + ] + } + ], + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 123, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L123" + } + ] + } + } + }, + { + "id": 674, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 160, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L160" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 674 + ] + } + ], + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 675, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 165, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L165" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 676, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 677, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 678, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L177" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 679, + "name": "checkedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.icon.checked.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 183, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 680, + "name": "checkedHoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.icon.checked.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 189, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L189" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 681, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "checkbox.icon.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 195, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L195" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 677, + 678, + 679, + 680, + 681 + ] + } + ], + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 165, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L165" + } + ] + } + } + }, + { + "id": 682, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 683, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 684, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 647, + "name": "CheckboxDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 685, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 647, + "name": "CheckboxDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 684, + 685 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 648, + 675, + 682 + ] + } + ], + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 647, + "name": "CheckboxDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 647 + ] + } + ], + "sources": [ + { + "fileName": "checkbox/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L1" + } + ] + }, + { + "id": 686, + "name": "themes/chip", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Chip Design Tokens\n\n[Live Demo](https://www.primeng.org/chip/)" + } + ] + }, + "children": [ + { + "id": 687, + "name": "ChipDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 688, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 689, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 690, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 691, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 692, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 693, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 694, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 695, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 696, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 690, + 691, + 692, + 693, + 694, + 695, + 696 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 697, + "name": "image", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the image section" + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 64, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L64" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 698, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 699, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of image" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.image.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 700, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of image" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.image.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 699, + 700 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 64, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L64" + } + ] + } + } + }, + { + "id": 701, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 81, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L81" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 702, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 703, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 704, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 703, + 704 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 81, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L81" + } + ] + } + } + }, + { + "id": 705, + "name": "removeIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the remove icon section" + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 706, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 707, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 708, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of remove icon" + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 108, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L108" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 709, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 710, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 114, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 711, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 120, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L120" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 712, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 126, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 713, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 132, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 714, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 138, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 710, + 711, + 712, + 713, + 714 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 108, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L108" + } + ] + } + } + }, + { + "id": 715, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of remove icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "chip.remove.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 707, + 708, + 715 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 98, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 716, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 717, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 718, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 687, + "name": "ChipDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 719, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 687, + "name": "ChipDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 718, + 719 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 688, + 697, + 701, + 705, + 716 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 687, + "name": "ChipDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 687 + ] + } + ], + "sources": [ + { + "fileName": "chip/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L1" + } + ] + }, + { + "id": 720, + "name": "themes/colorpicker", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ColorPicker Design Tokens\n\n[Live Demo](https://www.primeng.org/colorpicker/)" + } + ] + }, + "children": [ + { + "id": 721, + "name": "ColorPickerDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 722, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 723, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 724, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 724 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 725, + "name": "preview", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the preview section" + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 726, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 727, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 728, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 729, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 730, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of preview" + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 50, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L50" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 731, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 732, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 56, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L56" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 733, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 62, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L62" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 734, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 68, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 735, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 74, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 736, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.preview.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 80, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 732, + 733, + 734, + 735, + 736 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 50, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L50" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 727, + 728, + 729, + 730 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 737, + "name": "panel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the panel section" + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 86, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L86" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 738, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 739, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.panel.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 740, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.panel.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 98, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 741, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.panel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 742, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.panel.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 110, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L110" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 739, + 740, + 741, + 742 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 86, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L86" + } + ] + } + } + }, + { + "id": 743, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the handle section" + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 115, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L115" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 744, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 745, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "colorpicker.handle.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 745 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 115, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L115" + } + ] + } + } + }, + { + "id": 746, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 747, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 748, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 721, + "name": "ColorPickerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 749, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 721, + "name": "ColorPickerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 748, + 749 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 722, + 725, + 737, + 743, + 746 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 721, + "name": "ColorPickerDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 721 + ] + } + ], + "sources": [ + { + "fileName": "colorpicker/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L1" + } + ] + }, + { + "id": 750, + "name": "themes/confirmdialog", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ConfirmDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmdialog/)" + } + ] + }, + "children": [ + { + "id": 751, + "name": "ConfirmDialogDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 752, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 753, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 754, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmdialog.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 755, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmdialog.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 754, + 755 + ] + } + ], + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 756, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 757, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 758, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmdialog.content.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 758 + ] + } + ], + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 34, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L34" + } + ] + } + } + }, + { + "id": 759, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 760, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 761, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 751, + "name": "ConfirmDialogDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 762, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 751, + "name": "ConfirmDialogDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 761, + 762 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 752, + 756, + 759 + ] + } + ], + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 751, + "name": "ConfirmDialogDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 751 + ] + } + ], + "sources": [ + { + "fileName": "confirmdialog/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L1" + } + ] + }, + { + "id": 763, + "name": "themes/confirmpopup", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ConfirmPopup Design Tokens\n\n[Live Demo](https://www.primeng.org/confirmpopup/)" + } + ] + }, + "children": [ + { + "id": 764, + "name": "ConfirmPopupDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 765, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 766, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 767, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 768, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 769, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 770, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 771, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 772, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 773, + "name": "arrowOffset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Arrow offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.arrow.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 767, + 768, + 769, + 770, + 771, + 772, + 773 + ] + } + ], + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 774, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 64, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L64" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 775, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 776, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 777, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.content.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 776, + 777 + ] + } + ], + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 64, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L64" + } + ] + } + } + }, + { + "id": 778, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 81, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L81" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 779, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 780, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 781, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 780, + 781 + ] + } + ], + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 81, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L81" + } + ] + } + } + }, + { + "id": 782, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 783, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 784, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.footer.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 785, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "confirmpopup.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 110, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L110" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 784, + 785 + ] + } + ], + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 98, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 786, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 787, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 788, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 764, + "name": "ConfirmPopupDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 789, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 764, + "name": "ConfirmPopupDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 788, + 789 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 765, + 774, + 778, + 782, + 786 + ] + } + ], + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 764, + "name": "ConfirmPopupDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 764 + ] + } + ], + "sources": [ + { + "fileName": "confirmpopup/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L1" + } + ] + }, + { + "id": 790, + "name": "themes/contextmenu", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ContextMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/contextmenu/)" + } + ] + }, + "children": [ + { + "id": 791, + "name": "ContextMenuDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 792, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 793, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 794, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 795, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 796, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 797, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 798, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 799, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 794, + 795, + 796, + 797, + 798, + 799 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 800, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 801, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 802, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 803, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 802, + 803 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 58, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 804, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 75, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L75" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 805, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 806, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 807, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 808, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 809, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 810, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 811, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 812, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 813, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 814, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L127" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 815, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 816, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 133, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 817, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 139, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 818, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.item.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 816, + 817, + 818 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 127, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L127" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 806, + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 75, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L75" + } + ] + } + } + }, + { + "id": 819, + "name": "submenuIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu icon section" + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 151, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L151" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 820, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 821, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.submenu.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 157, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 822, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.submenu.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 163, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 823, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.submenu.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 824, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.submenu.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 821, + 822, + 823, + 824 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 151, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L151" + } + ] + } + } + }, + { + "id": 825, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 180, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L180" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 826, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 827, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "contextmenu.separator.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 186, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L186" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 827 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 180, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L180" + } + ] + } + } + }, + { + "id": 828, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 829, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 830, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 791, + "name": "ContextMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 831, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 791, + "name": "ContextMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 830, + 831 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 792, + 800, + 804, + 819, + 825, + 828 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 791, + "name": "ContextMenuDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 791 + ] + } + ], + "sources": [ + { + "fileName": "contextmenu/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L1" + } + ] + }, + { + "id": 832, + "name": "themes/table", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "DataTable Design Tokens\n\n[Live Demo](https://www.primeng.org/datatable/)" + } + ] + }, + "children": [ + { + "id": 833, + "name": "DataTableDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 834, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 835, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 836, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 837, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 836, + 837 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 838, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 839, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 840, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 841, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 842, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 843, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 844, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 840, + 841, + 842, + 843, + 844 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 34, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L34" + } + ] + } + } + }, + { + "id": 845, + "name": "headerCell", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header cell section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 846, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 847, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 848, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 849, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 850, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 851, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 852, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 853, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 854, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 855, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 856, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of header cell" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L127" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 857, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 858, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 133, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 859, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 139, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 860, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 861, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 862, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.header.cell.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 157, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 858, + 859, + 860, + 861, + 862 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 127, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L127" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 847, + 848, + 849, + 850, + 851, + 852, + 853, + 854, + 855, + 856 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 69, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 863, + "name": "columnTitle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the column title section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 163, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L163" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 864, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 865, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of column title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 865 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 163, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L163" + } + ] + } + } + }, + { + "id": 866, + "name": "row", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the row section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 174, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L174" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 867, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 868, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 180, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L180" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 869, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 186, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L186" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 870, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 192, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L192" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 871, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 198, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L198" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 872, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 204, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L204" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 873, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 210, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L210" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 874, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of row" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 214, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L214" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 875, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 876, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 220, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L220" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 877, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 226, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L226" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 878, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 232, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L232" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 879, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 238, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L238" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 880, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 244, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L244" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 876, + 877, + 878, + 879, + 880 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 214, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L214" + } + ] + } + } + }, + { + "id": 881, + "name": "stripedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Striped background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.striped.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 251, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L251" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 881 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 174, + "character": 10, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L174" + } + ] + } + } + }, + { + "id": 882, + "name": "bodyCell", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the body cell section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 256, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L256" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 883, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 884, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.body.cell.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 262, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L262" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 885, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.body.cell.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 268, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L268" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 886, + "name": "selectedBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected border color of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.body.cell.selected.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 274, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L274" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 884, + 885, + 886 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 256, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L256" + } + ] + } + } + }, + { + "id": 887, + "name": "footerCell", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer cell section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 279, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L279" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 888, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 889, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.cell.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 285, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L285" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 890, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.cell.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 291, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L291" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 891, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.cell.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 297, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L297" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 892, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.cell.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 303, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L303" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 889, + 890, + 891, + 892 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 279, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L279" + } + ] + } + } + }, + { + "id": 893, + "name": "columnFooter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the column footer section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 308, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L308" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 894, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 895, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of column footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.footer.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 314, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L314" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 895 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 308, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L308" + } + ] + } + } + }, + { + "id": 896, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 319, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L319" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 897, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 898, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 325, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L325" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 899, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 331, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L331" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 900, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 337, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L337" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 901, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 343, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L343" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 902, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 349, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L349" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 898, + 899, + 900, + 901, + 902 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 319, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L319" + } + ] + } + } + }, + { + "id": 903, + "name": "dropPointColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the drop point color section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 354, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L354" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 904, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 905, + "name": "0", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "0 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 360, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L360" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 906, + "name": "1", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "1 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.1" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 366, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L366" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 907, + "name": "2", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "2 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.2" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 372, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L372" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 908, + "name": "3", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "3 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.3" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 378, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L378" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 909, + "name": "4", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "4 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.4" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 384, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L384" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 910, + "name": "5", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "5 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.5" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 390, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L390" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 911, + "name": "6", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "6 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.6" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 396, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L396" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 912, + "name": "7", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "7 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.7" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 402, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L402" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 913, + "name": "8", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "8 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.8" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 408, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L408" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 914, + "name": "9", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "9 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.9" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 414, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L414" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 915, + "name": "10", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "10 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.10" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 420, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L420" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 916, + "name": "11", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "11 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.11" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 426, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L426" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 917, + "name": "12", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "12 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.12" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 432, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L432" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 918, + "name": "13", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "13 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.13" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 438, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L438" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 919, + "name": "14", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "14 of drop point color" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.drop.point.color.14" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 444, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L444" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 905, + 906, + 907, + 908, + 909, + 910, + 911, + 912, + 913, + 914, + 915, + 916, + 917, + 918, + 919 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 354, + "character": 21, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L354" + } + ] + } + } + }, + { + "id": 920, + "name": "columnResizerWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the column resizer width section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 449, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L449" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 921, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 922, + "name": "0", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "0 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.resizer.width.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 455, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L455" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 923, + "name": "1", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "1 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.resizer.width.1" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 461, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L461" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 924, + "name": "2", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "2 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.resizer.width.2" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 467, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L467" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 925, + "name": "3", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "3 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.resizer.width.3" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 473, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L473" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 926, + "name": "4", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "4 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.resizer.width.4" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 479, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L479" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 927, + "name": "5", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "5 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.column.resizer.width.5" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 485, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L485" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 922, + 923, + 924, + 925, + 926, + 927 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 449, + "character": 25, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L449" + } + ] + } + } + }, + { + "id": 928, + "name": "resizeIndicator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the resize indicator section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 490, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L490" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 929, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 930, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of resize indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.resize.indicator.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 496, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L496" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 931, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of resize indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.resize.indicator.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 502, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L502" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 930, + 931 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 490, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L490" + } + ] + } + } + }, + { + "id": 932, + "name": "sortIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the sort icon section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 507, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L507" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 933, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 934, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of sort icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.sort.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 513, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L513" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 935, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of sort icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.sort.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 519, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L519" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 934, + 935 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 507, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L507" + } + ] + } + } + }, + { + "id": 936, + "name": "loadingIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the loading icon section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 524, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L524" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 937, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 938, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of loading icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.loading.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 530, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L530" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 938 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 524, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L524" + } + ] + } + } + }, + { + "id": 939, + "name": "rowToggleButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the row toggle button section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 535, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L535" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 940, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 941, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 541, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L541" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 942, + "name": "selectedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected hover background of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.selected.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 547, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L547" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 943, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 553, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L553" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 944, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 559, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L559" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 945, + "name": "selectedHoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected hover color of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.selected.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 565, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L565" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 946, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 571, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L571" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 947, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 577, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L577" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 948, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of row toggle button" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 581, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L581" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 949, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 950, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 587, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L587" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 951, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 593, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L593" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 952, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 599, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L599" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 953, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 605, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L605" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 954, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of row toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.row.toggle.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 611, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L611" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 950, + 951, + 952, + 953, + 954 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 581, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L581" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 535, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L535" + } + ] + } + } + }, + { + "id": 955, + "name": "filter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the filter section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 617, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L617" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 956, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 957, + "name": "inlineGap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Inline gap of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.inline.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 623, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L623" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 958, + "name": "overlaySelect", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay select of filter" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 627, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L627" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 959, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 960, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay select background of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.select.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 633, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L633" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 961, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay select border color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.select.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 639, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L639" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 962, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay select border radius of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.select.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 645, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L645" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 963, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay select color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.select.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 651, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L651" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 964, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay select shadow of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.select.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 657, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L657" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 960, + 961, + 962, + 963, + 964 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 627, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L627" + } + ] + } + } + }, + { + "id": 965, + "name": "overlayPopover", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover of filter" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 662, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L662" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 966, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 967, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover background of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 668, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L668" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 968, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover border color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 674, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L674" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 969, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover border radius of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 680, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L680" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 970, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 686, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L686" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 971, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover shadow of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 692, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L692" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 972, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover padding of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 698, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L698" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 973, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Overlay popover gap of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.overlay.popover.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 704, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L704" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 967, + 968, + 969, + 970, + 971, + 972, + 973 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 662, + "character": 25, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L662" + } + ] + } + } + }, + { + "id": 974, + "name": "rule", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Rule of filter" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 709, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L709" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 975, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 976, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Rule border color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.rule.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 715, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L715" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 976 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 709, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L709" + } + ] + } + } + }, + { + "id": 977, + "name": "constraintList", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint list of filter" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 720, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L720" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 978, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 979, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint list padding of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 726, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L726" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 980, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint list gap of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 732, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L732" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 979, + 980 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 720, + "character": 25, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L720" + } + ] + } + } + }, + { + "id": 981, + "name": "constraint", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint of filter" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 737, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L737" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 982, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 983, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint focus background of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 743, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L743" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 984, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint selected background of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 749, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L749" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 985, + "name": "selectedFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint selected focus background of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.selected.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 755, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L755" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 986, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 761, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L761" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 987, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint focus color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 767, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L767" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 988, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint selected color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 773, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L773" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 989, + "name": "selectedFocusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint selected focus color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.selected.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 779, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L779" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 990, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint separator of filter" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 783, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L783" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 991, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 992, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint separator border color of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.separator.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 789, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L789" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 992 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 783, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L783" + } + ] + } + } + }, + { + "id": 993, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint padding of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 796, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L796" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 994, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Constraint border radius of filter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.filter.constraint.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 802, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L802" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 983, + 984, + 985, + 986, + 987, + 988, + 989, + 990, + 993, + 994 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 737, + "character": 21, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L737" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 957, + 958, + 965, + 974, + 977, + 981 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 617, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L617" + } + ] + } + } + }, + { + "id": 995, + "name": "paginatorTop", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the paginator top section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 808, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L808" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 996, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 997, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of paginator top" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.paginator.top.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 814, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L814" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 998, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of paginator top" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.paginator.top.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 820, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L820" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 997, + 998 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 808, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L808" + } + ] + } + } + }, + { + "id": 999, + "name": "paginatorBottom", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the paginator bottom section" + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 825, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L825" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1000, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1001, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of paginator bottom" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.paginator.bottom.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 831, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L831" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1002, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of paginator bottom" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datatable.paginator.bottom.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 837, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L837" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1001, + 1002 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 825, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L825" + } + ] + } + } + }, + { + "id": 1003, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1004, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1005, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 833, + "name": "DataTableDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1006, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 833, + "name": "DataTableDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1005, + 1006 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 834, + 838, + 845, + 863, + 866, + 882, + 887, + 893, + 896, + 903, + 920, + 928, + 932, + 936, + 939, + 955, + 995, + 999, + 1003 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 833, + "name": "DataTableDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 833 + ] + } + ], + "sources": [ + { + "fileName": "datatable/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L1" + } + ] + }, + { + "id": 1007, + "name": "themes/dataview", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "DataView Design Tokens\n\n[Live Demo](https://www.primeng.org/dataview/)" + } + ] + }, + "children": [ + { + "id": 1008, + "name": "DataViewDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1009, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1010, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1011, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1012, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1013, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1014, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1011, + 1012, + 1013, + 1014 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1015, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1016, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1017, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1018, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1019, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1020, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1021, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1022, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.header.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1017, + 1018, + 1019, + 1020, + 1021, + 1022 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 1023, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 87, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L87" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1024, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1025, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1026, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.content.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1027, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.content.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1028, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.content.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1029, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1030, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.content.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1025, + 1026, + 1027, + 1028, + 1029, + 1030 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 87, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L87" + } + ] + } + } + }, + { + "id": 1031, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 128, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L128" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1032, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1033, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.footer.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 134, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L134" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1034, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.footer.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 140, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L140" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1035, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.footer.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 146, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L146" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1036, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.footer.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 152, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L152" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1037, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 158, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L158" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1038, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.footer.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 164, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L164" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1033, + 1034, + 1035, + 1036, + 1037, + 1038 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 128, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L128" + } + ] + } + } + }, + { + "id": 1039, + "name": "paginatorTop", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the paginator top section" + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 169, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L169" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1040, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1041, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of paginator top" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.paginator.top.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1042, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of paginator top" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.paginator.top.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1041, + 1042 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 169, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L169" + } + ] + } + } + }, + { + "id": 1043, + "name": "paginatorBottom", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the paginator bottom section" + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 186, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L186" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1044, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1045, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of paginator bottom" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.paginator.bottom.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 192, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L192" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1046, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of paginator bottom" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dataview.paginator.bottom.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 198, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L198" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1045, + 1046 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 186, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L186" + } + ] + } + } + }, + { + "id": 1047, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1048, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1049, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1008, + "name": "DataViewDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1050, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1008, + "name": "DataViewDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1049, + 1050 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1009, + 1015, + 1023, + 1031, + 1039, + 1043, + 1047 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1008, + "name": "DataViewDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1008 + ] + } + ], + "sources": [ + { + "fileName": "dataview/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L1" + } + ] + }, + { + "id": 1051, + "name": "themes/datepicker", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "DatePicker Design Tokens\n\n[Live Demo](https://www.primeng.org/datepicker/)" + } + ] + }, + "children": [ + { + "id": 1052, + "name": "DatePickerDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1053, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1054, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1055, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1055 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1056, + "name": "panel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the panel section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1057, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1058, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.panel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1059, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.panel.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1060, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.panel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1061, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.panel.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1062, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.panel.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1063, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.panel.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1058, + 1059, + 1060, + 1061, + 1062, + 1063 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 28, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 1064, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1065, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1066, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1067, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1068, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1069, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1070, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.header.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1071, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.header.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1066, + 1067, + 1068, + 1069, + 1070, + 1071 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 69, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 1072, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 110, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L110" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1073, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1074, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.title.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 116, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L116" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1075, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 122, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L122" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1074, + 1075 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 110, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L110" + } + ] + } + } + }, + { + "id": 1076, + "name": "dropdown", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dropdown section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 127, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L127" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1077, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1078, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 133, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1079, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1080, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1081, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 151, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1082, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 157, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1083, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of dropdown" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L161" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1084, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1085, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 167, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1086, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 173, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1087, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 179, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L179" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1088, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 185, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L185" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1089, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 191, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L191" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1085, + 1086, + 1087, + 1088, + 1089 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 161, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L161" + } + ] + } + } + }, + { + "id": 1090, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 198, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L198" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1091, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 204, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L204" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1092, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 210, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L210" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1093, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 216, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L216" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1094, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 222, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L222" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1095, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.dropdown.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 228, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L228" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 127, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L127" + } + ] + } + } + }, + { + "id": 1096, + "name": "inputIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the input icon section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 233, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L233" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1097, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1098, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of input icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.input.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 239, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1098 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 233, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L233" + } + ] + } + } + }, + { + "id": 1099, + "name": "selectMonth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the select month section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 244, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L244" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1100, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1101, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of select month" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.month.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 250, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L250" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1102, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of select month" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.month.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 256, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L256" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1103, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of select month" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.month.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 262, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L262" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1104, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of select month" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.month.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 268, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L268" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1105, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of select month" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.month.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 274, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L274" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1101, + 1102, + 1103, + 1104, + 1105 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 244, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L244" + } + ] + } + } + }, + { + "id": 1106, + "name": "selectYear", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the select year section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 279, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L279" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1107, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1108, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of select year" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.year.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 285, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L285" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1109, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of select year" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.year.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 291, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L291" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1110, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of select year" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.year.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 297, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L297" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1111, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of select year" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.year.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 303, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L303" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1112, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of select year" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.select.year.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 309, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L309" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1108, + 1109, + 1110, + 1111, + 1112 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 279, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L279" + } + ] + } + } + }, + { + "id": 1113, + "name": "group", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the group section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 314, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L314" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1114, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1115, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.group.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 320, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L320" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1116, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.group.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 326, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L326" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1115, + 1116 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 314, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L314" + } + ] + } + } + }, + { + "id": 1117, + "name": "dayView", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the day view section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 331, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L331" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1118, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1119, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of day view" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.day.view.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 337, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L337" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1119 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 331, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L331" + } + ] + } + } + }, + { + "id": 1120, + "name": "weekDay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the week day section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 342, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L342" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1121, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1122, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of week day" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.week.day.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 348, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L348" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1123, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of week day" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.week.day.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 354, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L354" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1124, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of week day" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.week.day.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 360, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L360" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1122, + 1123, + 1124 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 342, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L342" + } + ] + } + } + }, + { + "id": 1125, + "name": "date", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the date section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 365, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L365" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1126, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1127, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 371, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L371" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1128, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 377, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L377" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1129, + "name": "rangeSelectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Range selected background of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.range.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 383, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L383" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1130, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 389, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L389" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1131, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 395, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L395" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1132, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 401, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L401" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1133, + "name": "rangeSelectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Range selected color of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.range.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 407, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L407" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1134, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 413, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L413" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1135, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 419, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L419" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1136, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 425, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L425" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1137, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 431, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L431" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1138, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of date" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 435, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L435" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1139, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1140, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 441, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L441" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1141, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 447, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L447" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1142, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 453, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L453" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1143, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 459, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L459" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1144, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of date" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.date.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 465, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L465" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1140, + 1141, + 1142, + 1143, + 1144 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 435, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L435" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 365, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L365" + } + ] + } + } + }, + { + "id": 1145, + "name": "monthView", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the month view section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 471, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L471" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1146, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1147, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of month view" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.month.view.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 477, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L477" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1147 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 471, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L471" + } + ] + } + } + }, + { + "id": 1148, + "name": "month", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the month section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 482, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L482" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1149, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1150, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of month" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.month.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 488, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L488" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1150 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 482, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L482" + } + ] + } + } + }, + { + "id": 1151, + "name": "yearView", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the year view section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 493, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L493" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1152, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1153, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of year view" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.year.view.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 499, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L499" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1153 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 493, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L493" + } + ] + } + } + }, + { + "id": 1154, + "name": "year", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the year section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 504, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L504" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1155, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1156, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of year" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.year.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 510, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L510" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1156 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 504, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L504" + } + ] + } + } + }, + { + "id": 1157, + "name": "buttonbar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the buttonbar section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 515, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L515" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1158, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1159, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of buttonbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.buttonbar.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 521, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L521" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1160, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of buttonbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.buttonbar.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 527, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L527" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1159, + 1160 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 515, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L515" + } + ] + } + } + }, + { + "id": 1161, + "name": "timePicker", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the time picker section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 532, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L532" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1162, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1163, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of time picker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.time.picker.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 538, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L538" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1164, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of time picker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.time.picker.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 544, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L544" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1165, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of time picker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.time.picker.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 550, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L550" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1166, + "name": "buttonGap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Button gap of time picker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.time.picker.button.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 556, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L556" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1163, + 1164, + 1165, + 1166 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 532, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L532" + } + ] + } + } + }, + { + "id": 1167, + "name": "today", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the today section" + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 561, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L561" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1168, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1169, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of today" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.today.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 567, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L567" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1170, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of today" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "datepicker.today.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 573, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L573" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1169, + 1170 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 561, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L561" + } + ] + } + } + }, + { + "id": 1171, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1172, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1173, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1052, + "name": "DatePickerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1174, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1052, + "name": "DatePickerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1173, + 1174 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1053, + 1056, + 1064, + 1072, + 1076, + 1096, + 1099, + 1106, + 1113, + 1117, + 1120, + 1125, + 1145, + 1148, + 1151, + 1154, + 1157, + 1161, + 1167, + 1171 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1052, + "name": "DatePickerDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1052 + ] + } + ], + "sources": [ + { + "fileName": "datepicker/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L1" + } + ] + }, + { + "id": 1175, + "name": "themes/dialog", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Dialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dialog/)" + } + ] + }, + "children": [ + { + "id": 1176, + "name": "DialogDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1177, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1178, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1179, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1180, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1181, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1182, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1183, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1179, + 1180, + 1181, + 1182, + 1183 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1184, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 52, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L52" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1185, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1186, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1187, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.header.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1186, + 1187 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 52, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L52" + } + ] + } + } + }, + { + "id": 1188, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1189, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1190, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.title.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1191, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1190, + 1191 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 69, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 1192, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 86, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L86" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1193, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1194, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1194 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 86, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L86" + } + ] + } + } + }, + { + "id": 1195, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 97, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L97" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1196, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1197, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1198, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.footer.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1197, + 1198 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 97, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L97" + } + ] + } + } + }, + { + "id": 1199, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1200, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1201, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1176, + "name": "DialogDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1202, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1176, + "name": "DialogDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1201, + 1202 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1177, + 1184, + 1188, + 1192, + 1195, + 1199 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1176, + "name": "DialogDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1176 + ] + } + ], + "sources": [ + { + "fileName": "dialog/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L1" + } + ] + }, + { + "id": 1203, + "name": "themes/divider", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Divider Design Tokens\n\n[Live Demo](https://www.primeng.org/divider/)" + } + ] + }, + "children": [ + { + "id": 1204, + "name": "DividerDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1205, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1206, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1207, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1207 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1208, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1209, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1210, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1211, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.content.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1210, + 1211 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 1212, + "name": "horizontal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the horizontal section" + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 45, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L45" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1213, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1214, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of horizontal" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.horizontal.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 51, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L51" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1215, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of horizontal" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.horizontal.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1216, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content of horizontal" + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 61, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L61" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1217, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1218, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content padding of horizontal" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.horizontal.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 67, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L67" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1218 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 61, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L61" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1214, + 1215, + 1216 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 45, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L45" + } + ] + } + } + }, + { + "id": 1219, + "name": "vertical", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the vertical section" + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 73, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L73" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1220, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1221, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of vertical" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.vertical.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 79, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L79" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1222, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of vertical" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.vertical.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 85, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L85" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1223, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content of vertical" + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L89" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1224, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1225, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content padding of vertical" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "divider.vertical.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 95, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1225 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 89, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L89" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1221, + 1222, + 1223 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 73, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L73" + } + ] + } + } + }, + { + "id": 1226, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1227, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1228, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1204, + "name": "DividerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1229, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1204, + "name": "DividerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1228, + 1229 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1205, + 1208, + 1212, + 1219, + 1226 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1204, + "name": "DividerDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1204 + ] + } + ], + "sources": [ + { + "fileName": "divider/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L1" + } + ] + }, + { + "id": 1230, + "name": "themes/dock", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Dock Design Tokens\n\n[Live Demo](https://www.primeng.org/dock/)" + } + ] + }, + "children": [ + { + "id": 1231, + "name": "DockDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1232, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1233, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1234, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1235, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1236, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1237, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1234, + 1235, + 1236, + 1237 + ] + } + ], + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1238, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1239, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1240, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1241, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1242, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1243, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of item" + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L68" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1244, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1245, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 74, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1246, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 80, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1247, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 86, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1248, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 92, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1249, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dock.item.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1245, + 1246, + 1247, + 1248, + 1249 + ] + } + ], + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 68, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L68" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1240, + 1241, + 1242, + 1243 + ] + } + ], + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 46, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 1250, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1251, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1252, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1231, + "name": "DockDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1253, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1231, + "name": "DockDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1252, + 1253 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1232, + 1238, + 1250 + ] + } + ], + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1231, + "name": "DockDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1231 + ] + } + ], + "sources": [ + { + "fileName": "dock/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L1" + } + ] + }, + { + "id": 1254, + "name": "themes/drawer", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Drawer Design Tokens\n\n[Live Demo](https://www.primeng.org/drawer/)" + } + ] + }, + "children": [ + { + "id": 1255, + "name": "DrawerDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1256, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1257, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1258, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1259, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1260, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1261, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1262, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1258, + 1259, + 1260, + 1261, + 1262 + ] + } + ], + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1263, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 52, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L52" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1264, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1265, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1265 + ] + } + ], + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 52, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L52" + } + ] + } + } + }, + { + "id": 1266, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 63, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L63" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1267, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1268, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.title.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1269, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1268, + 1269 + ] + } + ], + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 63, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L63" + } + ] + } + } + }, + { + "id": 1270, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 80, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L80" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1271, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1272, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "drawer.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1272 + ] + } + ], + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 80, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L80" + } + ] + } + } + }, + { + "id": 1273, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1274, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1275, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1255, + "name": "DrawerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1276, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1255, + "name": "DrawerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1275, + 1276 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1256, + 1263, + 1266, + 1270, + 1273 + ] + } + ], + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1255, + "name": "DrawerDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1255 + ] + } + ], + "sources": [ + { + "fileName": "drawer/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L1" + } + ] + }, + { + "id": 1277, + "name": "themes/dynamicdialog", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "DynamicDialog Design Tokens\n\n[Live Demo](https://www.primeng.org/dynamicdialog/)" + } + ] + }, + "children": [ + { + "id": 1278, + "name": "DynamicDialogDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1279, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1280, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1281, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1282, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1283, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1284, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1285, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1281, + 1282, + 1283, + 1284, + 1285 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1286, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 52, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1287, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1288, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1289, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.header.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1288, + 1289 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 52, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" + } + ] + } + } + }, + { + "id": 1290, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1291, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1292, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.title.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1293, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1292, + 1293 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 69, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 1294, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 86, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1295, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1296, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1296 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 86, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" + } + ] + } + } + }, + { + "id": 1297, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 97, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1298, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1299, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1300, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "dialog.footer.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1299, + 1300 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 97, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" + } + ] + } + } + }, + { + "id": 1301, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1302, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1303, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1278, + "name": "DynamicDialogDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1304, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1278, + "name": "DynamicDialogDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1303, + 1304 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1279, + 1286, + 1290, + 1294, + 1297, + 1301 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1278, + "name": "DynamicDialogDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1278 + ] + } + ], + "sources": [ + { + "fileName": "dynamicdialog/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" + } + ] + }, + { + "id": 1305, + "name": "themes/editor", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Editor Design Tokens\n\n[Live Demo](https://www.primeng.org/editor/)" + } + ] + }, + "children": [ + { + "id": 1306, + "name": "EditorDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1307, + "name": "toolbar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toolbar section" + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1308, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1309, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.toolbar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1310, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.toolbar.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1311, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.toolbar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1309, + 1310, + 1311 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 17, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1312, + "name": "toolbarItem", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toolbar item section" + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 40, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L40" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1313, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1314, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of toolbar item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.toolbar.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1315, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of toolbar item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.toolbar.item.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1316, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of toolbar item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.toolbar.item.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1314, + 1315, + 1316 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 40, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L40" + } + ] + } + } + }, + { + "id": 1317, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 63, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L63" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1318, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1319, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1320, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1321, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1322, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1323, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1324, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1319, + 1320, + 1321, + 1322, + 1323, + 1324 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 63, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L63" + } + ] + } + } + }, + { + "id": 1325, + "name": "overlayOption", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay option section" + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 104, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L104" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1326, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1327, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of overlay option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.option.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 110, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L110" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1328, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.option.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 116, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L116" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1329, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of overlay option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.option.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 122, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L122" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1330, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of overlay option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.option.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 128, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L128" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1331, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.overlay.option.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 134, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L134" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1327, + 1328, + 1329, + 1330, + 1331 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 104, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L104" + } + ] + } + } + }, + { + "id": 1332, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 139, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L139" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1333, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1334, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1335, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.content.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 151, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1336, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.content.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 157, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1337, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "editor.content.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 163, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1334, + 1335, + 1336, + 1337 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 139, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L139" + } + ] + } + } + }, + { + "id": 1338, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1339, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1340, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1306, + "name": "EditorDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1341, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1306, + "name": "EditorDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1340, + 1341 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1307, + 1312, + 1317, + 1325, + 1332, + 1338 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1306, + "name": "EditorDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1306 + ] + } + ], + "sources": [ + { + "fileName": "editor/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L1" + } + ] + }, + { + "id": 1342, + "name": "themes/fieldset", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Fieldset Design Tokens\n\n[Live Demo](https://www.primeng.org/fieldset/)" + } + ] + }, + "children": [ + { + "id": 1343, + "name": "FieldsetDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1344, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1345, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1346, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1347, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1348, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1349, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1350, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1351, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1346, + 1347, + 1348, + 1349, + 1350, + 1351 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1352, + "name": "legend", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the legend section" + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1353, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1354, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1355, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1356, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1357, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1358, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1359, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L94" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1360, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 100, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L100" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1361, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 106, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L106" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1362, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 112, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L112" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1363, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 118, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L118" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1364, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of legend" + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 122, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L122" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1365, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1366, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 128, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L128" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1367, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 134, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L134" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1368, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 140, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L140" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1369, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 146, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L146" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1370, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of legend" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.legend.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 152, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L152" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1366, + 1367, + 1368, + 1369, + 1370 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 122, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L122" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 58, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 1371, + "name": "toggleIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toggle icon section" + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 158, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L158" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1372, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1373, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of toggle icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.toggle.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 164, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L164" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1374, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of toggle icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.toggle.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 170, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L170" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1373, + 1374 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 158, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L158" + } + ] + } + } + }, + { + "id": 1375, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 175, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L175" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1376, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1377, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fieldset.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1377 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 175, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L175" + } + ] + } + } + }, + { + "id": 1378, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1379, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1380, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1343, + "name": "FieldsetDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1381, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1343, + "name": "FieldsetDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1380, + 1381 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1344, + 1352, + 1371, + 1375, + 1378 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1343, + "name": "FieldsetDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1343 + ] + } + ], + "sources": [ + { + "fileName": "fieldset/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L1" + } + ] + }, + { + "id": 1382, + "name": "themes/fileupload", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "FileUpload Design Tokens\n\n[Live Demo](https://www.primeng.org/fileupload/)" + } + ] + }, + "children": [ + { + "id": 1383, + "name": "FileUploadDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1384, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1385, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1386, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1387, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1388, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1389, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1390, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1386, + 1387, + 1388, + 1389, + 1390 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1391, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 52, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L52" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1392, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1393, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1394, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1395, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1396, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1397, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.header.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1398, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.header.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1393, + 1394, + 1395, + 1396, + 1397, + 1398 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 52, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L52" + } + ] + } + } + }, + { + "id": 1399, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 93, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L93" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1400, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1401, + "name": "highlightBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Highlight border color of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.content.highlight.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1402, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1401, + 1402 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 93, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L93" + } + ] + } + } + }, + { + "id": 1403, + "name": "file", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the file section" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 110, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L110" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1404, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1405, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of file" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.file.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 116, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L116" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1406, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of file" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.file.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 122, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L122" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1407, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of file" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.file.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 128, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L128" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1408, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info of file" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 132, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L132" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1409, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1410, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Info gap of file" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.file.info.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 138, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1410 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 132, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L132" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1405, + 1406, + 1407, + 1408 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 110, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L110" + } + ] + } + } + }, + { + "id": 1411, + "name": "progressbar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the progressbar section" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 144, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L144" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1412, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1413, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of progressbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.progressbar.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 150, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L150" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1413 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 144, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L144" + } + ] + } + } + }, + { + "id": 1414, + "name": "basic", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the basic section" + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 155, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L155" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1415, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1416, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of basic" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "fileupload.basic.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1416 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 155, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L155" + } + ] + } + } + }, + { + "id": 1417, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1418, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1419, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1383, + "name": "FileUploadDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1420, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1383, + "name": "FileUploadDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1419, + 1420 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1384, + 1391, + 1399, + 1403, + 1411, + 1414, + 1417 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1383, + "name": "FileUploadDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1383 + ] + } + ], + "sources": [ + { + "fileName": "fileupload/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L1" + } + ] + }, + { + "id": 1421, + "name": "themes/floatlabel", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "FloatLabel Design Tokens\n\n[Live Demo](https://www.primeng.org/floatlabel/)" + } + ] + }, + "children": [ + { + "id": 1422, + "name": "FloatLabelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1423, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1424, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1425, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "floatlabel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1426, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "floatlabel.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1427, + "name": "invalidColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "floatlabel.invalid.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1428, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "floatlabel.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1425, + 1426, + 1427, + 1428 + ] + } + ], + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1429, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1430, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1431, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1422, + "name": "FloatLabelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1432, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1422, + "name": "FloatLabelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1431, + 1432 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1423, + 1429 + ] + } + ], + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1422, + "name": "FloatLabelDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1422 + ] + } + ], + "sources": [ + { + "fileName": "floatlabel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L1" + } + ] + }, + { + "id": 1433, + "name": "themes/galleria", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Galleria Design Tokens\n\n[Live Demo](https://www.primeng.org/galleria/)" + } + ] + }, + "children": [ + { + "id": 1434, + "name": "GalleriaDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1435, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1436, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1437, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1438, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1439, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1440, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1437, + 1438, + 1439, + 1440 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1441, + "name": "navButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the nav button section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1442, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1443, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1444, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1445, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1446, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1447, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1448, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1449, + "name": "prev", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Prev of nav button" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L86" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1450, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1451, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Prev border radius of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.prev.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 92, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1451 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 86, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L86" + } + ] + } + } + }, + { + "id": 1452, + "name": "next", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Next of nav button" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 97, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L97" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1453, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1454, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Next border radius of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.next.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 103, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1454 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 97, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L97" + } + ] + } + } + }, + { + "id": 1455, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of nav button" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 108, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L108" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1456, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1457, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 114, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1458, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 120, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L120" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1459, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 126, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1460, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 132, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1461, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 138, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1457, + 1458, + 1459, + 1460, + 1461 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 108, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L108" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1443, + 1444, + 1445, + 1446, + 1447, + 1448, + 1449, + 1452, + 1455 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 46, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 1462, + "name": "navIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the nav icon section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 144, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L144" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1463, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1464, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of nav icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.nav.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 150, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L150" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1464 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 144, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L144" + } + ] + } + } + }, + { + "id": 1465, + "name": "thumbnailsContent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the thumbnails content section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 155, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L155" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1466, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1467, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of thumbnails content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnails.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1468, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of thumbnails content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnails.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 167, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1467, + 1468 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 155, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L155" + } + ] + } + } + }, + { + "id": 1469, + "name": "thumbnailNavButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the thumbnail nav button section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 172, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L172" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1470, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1471, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 178, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L178" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1472, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 184, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L184" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1473, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 190, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L190" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1474, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of thumbnail nav button" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L194" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1475, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1476, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 200, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1477, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 206, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L206" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1478, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 212, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L212" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1479, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 218, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L218" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1480, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 224, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L224" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1476, + 1477, + 1478, + 1479, + 1480 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 194, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L194" + } + ] + } + } + }, + { + "id": 1481, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 231, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L231" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1482, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 237, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L237" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1483, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of thumbnail nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 243, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L243" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1471, + 1472, + 1473, + 1474, + 1481, + 1482, + 1483 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 172, + "character": 25, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L172" + } + ] + } + } + }, + { + "id": 1484, + "name": "thumbnailNavButtonIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the thumbnail nav button icon section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 248, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L248" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1485, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1486, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of thumbnail nav button icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.thumbnail.nav.button.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 254, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L254" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1486 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 248, + "character": 29, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L248" + } + ] + } + } + }, + { + "id": 1487, + "name": "caption", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the caption section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 259, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L259" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1488, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1489, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of caption" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.caption.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 265, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L265" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1490, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of caption" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.caption.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 271, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L271" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1491, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of caption" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.caption.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 277, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L277" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1489, + 1490, + 1491 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 259, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L259" + } + ] + } + } + }, + { + "id": 1492, + "name": "indicatorList", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the indicator list section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 282, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L282" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1493, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1494, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of indicator list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 288, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L288" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1495, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of indicator list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 294, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L294" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1494, + 1495 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 282, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L282" + } + ] + } + } + }, + { + "id": 1496, + "name": "indicatorButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the indicator button section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 299, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L299" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1497, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1498, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 305, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L305" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1499, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 311, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L311" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1500, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 317, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L317" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1501, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 323, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L323" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1502, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of indicator button" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 327, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L327" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1503, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1504, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 333, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L333" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1505, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 339, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L339" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1506, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 345, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L345" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1507, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 351, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L351" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1508, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 357, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L357" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1504, + 1505, + 1506, + 1507, + 1508 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 327, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L327" + } + ] + } + } + }, + { + "id": 1509, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 364, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L364" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1510, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.indicator.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 370, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L370" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1498, + 1499, + 1500, + 1501, + 1502, + 1509, + 1510 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 299, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L299" + } + ] + } + } + }, + { + "id": 1511, + "name": "insetIndicatorList", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the inset indicator list section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 375, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L375" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1512, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1513, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of inset indicator list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.inset.indicator.list.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 381, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L381" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1513 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 375, + "character": 25, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L375" + } + ] + } + } + }, + { + "id": 1514, + "name": "insetIndicatorButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the inset indicator button section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 386, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L386" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1515, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1516, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of inset indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.inset.indicator.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 392, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L392" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1517, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of inset indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.inset.indicator.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 398, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L398" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1518, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of inset indicator button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.inset.indicator.button.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 404, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L404" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1516, + 1517, + 1518 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 386, + "character": 27, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L386" + } + ] + } + } + }, + { + "id": 1519, + "name": "mask", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the mask section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 409, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L409" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1520, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1521, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of mask" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.mask.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 415, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L415" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1522, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of mask" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.mask.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 421, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L421" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1521, + 1522 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 409, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L409" + } + ] + } + } + }, + { + "id": 1523, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the close button section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 426, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L426" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1524, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1525, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 432, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L432" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1526, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 438, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L438" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1527, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 444, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L444" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1528, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 450, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L450" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1529, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 456, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L456" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1530, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 462, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L462" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1531, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 468, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L468" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1532, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of close button" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 472, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L472" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1533, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1534, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 478, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L478" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1535, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 484, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L484" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1536, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 490, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L490" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1537, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 496, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L496" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1538, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 502, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L502" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1534, + 1535, + 1536, + 1537, + 1538 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 472, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L472" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 426, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L426" + } + ] + } + } + }, + { + "id": 1539, + "name": "closeButtonIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the close button icon section" + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 508, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L508" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1540, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1541, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of close button icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "galleria.close.button.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 514, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L514" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1541 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 508, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L508" + } + ] + } + } + }, + { + "id": 1542, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1543, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1544, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1434, + "name": "GalleriaDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1545, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1434, + "name": "GalleriaDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1544, + 1545 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1435, + 1441, + 1462, + 1465, + 1469, + 1484, + 1487, + 1492, + 1496, + 1511, + 1514, + 1519, + 1523, + 1539, + 1542 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1434, + "name": "GalleriaDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1434 + ] + } + ], + "sources": [ + { + "fileName": "galleria/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L1" + } + ] + }, + { + "id": 1546, + "name": "themes/iconfield", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "IconField Design Tokens\n\n[Live Demo](https://www.primeng.org/iconfield/)" + } + ] + }, + "children": [ + { + "id": 1547, + "name": "IconFieldDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1548, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "iconfield/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1549, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1550, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "iconfield.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "iconfield/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1550 + ] + } + ], + "sources": [ + { + "fileName": "iconfield/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1551, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1552, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1553, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1547, + "name": "IconFieldDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1554, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1547, + "name": "IconFieldDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1553, + 1554 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1548, + 1551 + ] + } + ], + "sources": [ + { + "fileName": "iconfield/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1547, + "name": "IconFieldDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1547 + ] + } + ], + "sources": [ + { + "fileName": "iconfield/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L1" + } + ] + }, + { + "id": 1555, + "name": "themes/image", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Image Design Tokens\n\n[Live Demo](https://www.primeng.org/image/)" + } + ] + }, + "children": [ + { + "id": 1556, + "name": "ImageDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1557, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1558, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1559, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1559 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1560, + "name": "preview", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the preview section" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1561, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1562, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of preview" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 32, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L32" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1563, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1564, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon size of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.preview.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 38, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L38" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1564 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 32, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L32" + } + ] + } + } + }, + { + "id": 1565, + "name": "mask", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Mask of preview" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 43, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L43" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1566, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1567, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Mask background of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.preview.mask.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 49, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L49" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1568, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Mask color of preview" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.preview.mask.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 55, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L55" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1567, + 1568 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 43, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L43" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1562, + 1565 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 1569, + "name": "toolbar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toolbar section" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 61, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L61" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1570, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1571, + "name": "position", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Position of toolbar" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L65" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1572, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1573, + "name": "left", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Position left of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.position.left" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 71, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1574, + "name": "right", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Position right of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.position.right" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 77, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1575, + "name": "top", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Position top of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.position.top" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 83, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1576, + "name": "bottom", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Position bottom of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.position.bottom" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 89, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1573, + 1574, + 1575, + 1576 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 65, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L65" + } + ] + } + } + }, + { + "id": 1577, + "name": "blur", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Blur of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.blur" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 96, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L96" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1578, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 102, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L102" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1579, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 108, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L108" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1580, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 114, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1581, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 120, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L120" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1582, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1583, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of toolbar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.toolbar.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 132, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1571, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 61, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L61" + } + ] + } + } + }, + { + "id": 1584, + "name": "action", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the action section" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 137, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L137" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1585, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1586, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 143, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L143" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1587, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 149, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L149" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1588, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 155, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L155" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1589, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1590, + "name": "iconSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon size of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 167, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1591, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 173, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1592, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of action" + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L177" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1593, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1594, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 183, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1595, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 189, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L189" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1596, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 195, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L195" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1597, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 201, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L201" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1598, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of action" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "image.action.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 207, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L207" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1594, + 1595, + 1596, + 1597, + 1598 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 177, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L177" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 137, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L137" + } + ] + } + } + }, + { + "id": 1599, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1600, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1601, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1556, + "name": "ImageDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1602, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1556, + "name": "ImageDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1601, + 1602 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1557, + 1560, + 1569, + 1584, + 1599 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1556, + "name": "ImageDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1556 + ] + } + ], + "sources": [ + { + "fileName": "image/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L1" + } + ] + }, + { + "id": 1603, + "name": "themes", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "[Live Demo](https://www.primeng.org/)" + } + ] + }, + "children": [ + { + "id": 1604, + "name": "ColorSchemeDesignToken", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1605, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1606, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1607, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1609, + "name": "T", + "package": "primeng", + "qualifiedName": "ColorSchemeDesignToken.T", + "refersToTypeParameter": true + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1608, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1609, + "name": "T", + "package": "primeng", + "qualifiedName": "ColorSchemeDesignToken.T", + "refersToTypeParameter": true + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1607, + 1608 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1605 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 8, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L8" + } + ], + "typeParameters": [ + { + "id": 1609, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 2, + "name": "AccordionDesignTokens" + }, + { + "type": "reference", + "target": 57, + "name": "AutoCompleteDesignTokens" + }, + { + "type": "reference", + "target": 142, + "name": "AvatarDesignTokens" + }, + { + "type": "reference", + "target": 169, + "name": "BadgeDesignTokens" + }, + { + "type": "reference", + "target": 229, + "name": "BlockUIDesignTokens" + }, + { + "type": "reference", + "target": 238, + "name": "BreadcrumbDesignTokens" + }, + { + "type": "reference", + "target": 270, + "name": "ButtonDesignTokens" + }, + { + "type": "reference", + "target": 528, + "name": "CardDesignTokens" + }, + { + "type": "reference", + "target": 554, + "name": "CarouselDesignTokens" + }, + { + "type": "reference", + "target": 585, + "name": "CascadeSelectDesignTokens" + }, + { + "type": "reference", + "target": 647, + "name": "CheckboxDesignTokens" + }, + { + "type": "reference", + "target": 687, + "name": "ChipDesignTokens" + }, + { + "type": "reference", + "target": 721, + "name": "ColorPickerDesignTokens" + }, + { + "type": "reference", + "target": 751, + "name": "ConfirmDialogDesignTokens" + }, + { + "type": "reference", + "target": 764, + "name": "ConfirmPopupDesignTokens" + }, + { + "type": "reference", + "target": 791, + "name": "ContextMenuDesignTokens" + }, + { + "type": "reference", + "target": 833, + "name": "DataTableDesignTokens" + }, + { + "type": "reference", + "target": 1008, + "name": "DataViewDesignTokens" + }, + { + "type": "reference", + "target": 1052, + "name": "DatePickerDesignTokens" + }, + { + "type": "reference", + "target": 1176, + "name": "DialogDesignTokens" + }, + { + "type": "reference", + "target": 1204, + "name": "DividerDesignTokens" + }, + { + "type": "reference", + "target": 1231, + "name": "DockDesignTokens" + }, + { + "type": "reference", + "target": 1255, + "name": "DrawerDesignTokens" + }, + { + "type": "reference", + "target": 1278, + "name": "DynamicDialogDesignTokens" + }, + { + "type": "reference", + "target": 1306, + "name": "EditorDesignTokens" + }, + { + "type": "reference", + "target": 1343, + "name": "FieldsetDesignTokens" + }, + { + "type": "reference", + "target": 1383, + "name": "FileUploadDesignTokens" + }, + { + "type": "reference", + "target": 1422, + "name": "FloatLabelDesignTokens" + }, + { + "type": "reference", + "target": 1434, + "name": "GalleriaDesignTokens" + }, + { + "type": "reference", + "target": 1547, + "name": "IconFieldDesignTokens" + }, + { + "type": "reference", + "target": 1556, + "name": "ImageDesignTokens" + }, + { + "type": "reference", + "target": 1682, + "name": "InlineMessageDesignTokens" + }, + { + "type": "reference", + "target": 1735, + "name": "InplaceDesignTokens" + }, + { + "type": "reference", + "target": 1757, + "name": "InputChipsDesignTokens" + }, + { + "type": "reference", + "target": 1793, + "name": "InputGroupDesignTokens" + }, + { + "type": "reference", + "target": 1805, + "name": "InputNumberDesignTokens" + }, + { + "type": "reference", + "target": 1828, + "name": "InputTextDesignTokens" + }, + { + "type": "reference", + "target": 1869, + "name": "KnobDesignTokens" + }, + { + "type": "reference", + "target": 1894, + "name": "ListboxDesignTokens" + }, + { + "type": "reference", + "target": 1953, + "name": "MegaMenuDesignTokens" + }, + { + "type": "reference", + "target": 2035, + "name": "MenuDesignTokens" + }, + { + "type": "reference", + "target": 2074, + "name": "MenubarDesignTokens" + }, + { + "type": "reference", + "target": 2140, + "name": "MessageDesignTokens" + }, + { + "type": "reference", + "target": 2253, + "name": "MeterGroupDesignTokens" + }, + { + "type": "reference", + "target": 2280, + "name": "MultiSelectDesignTokens" + }, + { + "type": "reference", + "target": 2353, + "name": "OrderListDesignTokens" + }, + { + "type": "reference", + "target": 2365, + "name": "OrganizationChartDesignTokens" + }, + { + "type": "reference", + "target": 2408, + "name": "OverlayBadgeDesignTokens" + }, + { + "type": "reference", + "target": 2420, + "name": "PaginatorDesignTokens" + }, + { + "type": "reference", + "target": 2458, + "name": "PanelDesignTokens" + }, + { + "type": "reference", + "target": 2490, + "name": "PanelMenuDesignTokens" + }, + { + "type": "reference", + "target": 2535, + "name": "PasswordDesignTokens" + }, + { + "type": "reference", + "target": 2565, + "name": "PickListDesignTokens" + }, + { + "type": "reference", + "target": 2577, + "name": "PopoverDesignTokens" + }, + { + "type": "reference", + "target": 2595, + "name": "ProgressBarDesignTokens" + }, + { + "type": "reference", + "target": 2614, + "name": "ProgressSpinnerDesignTokens" + }, + { + "type": "reference", + "target": 2626, + "name": "RadioButtonDesignTokens" + }, + { + "type": "reference", + "target": 2664, + "name": "RatingDesignTokens" + }, + { + "type": "reference", + "target": 2680, + "name": "RippleDesignTokens" + }, + { + "type": "reference", + "target": 2689, + "name": "ScrollPanelDesignTokens" + }, + { + "type": "reference", + "target": 2710, + "name": "SelectDesignTokens" + }, + { + "type": "reference", + "target": 2787, + "name": "SelectButtonDesignTokens" + }, + { + "type": "reference", + "target": 2797, + "name": "SkeletonDesignTokens" + }, + { + "type": "reference", + "target": 2808, + "name": "SliderDesignTokens" + }, + { + "type": "reference", + "target": 2847, + "name": "SpeedDialDesignTokens" + }, + { + "type": "reference", + "target": 2857, + "name": "SplitButtonDesignTokens" + }, + { + "type": "reference", + "target": 2868, + "name": "SplitterDesignTokens" + }, + { + "type": "reference", + "target": 2895, + "name": "StepperDesignTokens" + }, + { + "type": "reference", + "target": 2952, + "name": "StepsDesignTokens" + }, + { + "type": "reference", + "target": 2993, + "name": "TabmenuDesignTokens" + }, + { + "type": "reference", + "target": 3040, + "name": "TabsDesignTokens" + }, + { + "type": "reference", + "target": 3108, + "name": "TabViewDesignTokens" + }, + { + "type": "reference", + "target": 3138, + "name": "TagDesignTokens" + }, + { + "type": "reference", + "target": 3183, + "name": "TerminalDesignTokens" + }, + { + "type": "reference", + "target": 3203, + "name": "TextareaDesignTokens" + }, + { + "type": "reference", + "target": 3234, + "name": "TieredMenuDesignTokens" + }, + { + "type": "reference", + "target": 3282, + "name": "TimelineDesignTokens" + }, + { + "type": "reference", + "target": 3318, + "name": "ToastDesignTokens" + }, + { + "type": "reference", + "target": 3452, + "name": "ToggleButtonDesignTokens" + }, + { + "type": "reference", + "target": 3496, + "name": "ToggleSwitchDesignTokens" + }, + { + "type": "reference", + "target": 3538, + "name": "ToolbarDesignTokens" + }, + { + "type": "reference", + "target": 3552, + "name": "TooltipDesignTokens" + }, + { + "type": "reference", + "target": 3567, + "name": "TreeDesignTokens" + }, + { + "type": "reference", + "target": 3622, + "name": "TreeSelectDesignTokens" + }, + { + "type": "reference", + "target": 3673, + "name": "TreeTableDesignTokens" + }, + { + "type": "reference", + "target": 3791, + "name": "VirtualScrollerDesignTokens" + } + ] + }, + { + "id": 1610, + "name": "PaletteDesignToken", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1611, + "name": "50", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 16, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L16" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1612, + "name": "100", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L17" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1613, + "name": "200", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 18, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L18" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1614, + "name": "300", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 19, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L19" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1615, + "name": "400", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 20, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L20" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1616, + "name": "500", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 21, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L21" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1617, + "name": "600", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 22, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L22" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1618, + "name": "700", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 23, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1619, + "name": "800", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 24, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L24" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1620, + "name": "900", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 25, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L25" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1621, + "name": "950", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 26, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L26" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1611, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 15, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L15" + } + ] + }, + { + "id": 1622, + "name": "PrimitiveDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1623, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 30, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L30" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1624, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1625, + "name": "none", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 31, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L31" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1626, + "name": "xs", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 32, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L32" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1627, + "name": "sm", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 33, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L33" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1628, + "name": "md", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1629, + "name": "lg", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1630, + "name": "xl", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 36, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L36" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1625, + 1626, + 1627, + 1628, + 1629, + 1630 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 30, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L30" + } + ] + } + } + }, + { + "id": 1631, + "name": "emerald", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 38, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L38" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1632, + "name": "green", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 39, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L39" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1633, + "name": "lime", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 40, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L40" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1634, + "name": "red", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 41, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L41" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1635, + "name": "orange", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 42, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L42" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1636, + "name": "amber", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 43, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L43" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1637, + "name": "yellow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 44, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L44" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1638, + "name": "teal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 45, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L45" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1639, + "name": "cyan", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L46" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1640, + "name": "sky", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 47, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L47" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1641, + "name": "blue", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 48, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L48" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1642, + "name": "indigo", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 49, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L49" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1643, + "name": "violet", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 50, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L50" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1644, + "name": "purple", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L51" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1645, + "name": "fuchsia", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 52, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L52" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1646, + "name": "pink", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 53, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L53" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1647, + "name": "rose", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 54, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L54" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1648, + "name": "slate", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 55, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L55" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1649, + "name": "gray", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 56, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L56" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1650, + "name": "zinc", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 57, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L57" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1651, + "name": "neutral", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L58" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1652, + "name": "stone", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 59, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L59" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1623, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1650, + 1651, + 1652 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 29, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L29" + } + ], + "indexSignature": { + "id": 1653, + "name": "__index", + "variant": "signature", + "kind": 8192, + "flags": {}, + "sources": [ + { + "fileName": "index.d.ts", + "line": 60, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L60" + } + ], + "parameters": [ + { + "id": 1654, + "name": "key", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 1655, + "name": "SemanticDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1656, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 64, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1657, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 65, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L65" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1658, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1659, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 66, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L66" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1660, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 67, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L67" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1661, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1662, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1663, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1659, + 1660, + 1661, + 1662, + 1663 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 65, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L65" + } + ] + } + } + }, + { + "id": 1664, + "name": "iconSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 72, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L72" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1665, + "name": "anchorGutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 73, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L73" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1666, + "name": "primary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 74, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L74" + } + ], + "type": { + "type": "reference", + "target": 1610, + "name": "PaletteDesignToken", + "package": "primeng" + } + }, + { + "id": 1667, + "name": "formField", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "index.d.ts", + "line": 75, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L75" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1668, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1669, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1670, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1671, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 78, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L78" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1672, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 79, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L79" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1673, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1674, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 80, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1675, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 81, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1676, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 82, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1677, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 83, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1678, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 84, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L84" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1674, + 1675, + 1676, + 1677, + 1678 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 79, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L79" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1669, + 1670, + 1671, + 1672 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 75, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L75" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1656, + 1657, + 1664, + 1665, + 1666, + 1667 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 63, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L63" + } + ], + "indexSignature": { + "id": 1679, + "name": "__index", + "variant": "signature", + "kind": 8192, + "flags": {}, + "sources": [ + { + "fileName": "index.d.ts", + "line": 88, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L88" + } + ], + "parameters": [ + { + "id": 1680, + "name": "key", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1604, + 1610, + 1622, + 1655 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L1" + } + ] + }, + { + "id": 1681, + "name": "themes/inlinemessage", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "InlineMessage Design Tokens\n\n[Live Demo](https://www.primeng.org/inlinemessage/)" + } + ] + }, + "children": [ + { + "id": 1682, + "name": "InlineMessageDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1730, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1731, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1732, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1682, + "name": "InlineMessageDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1733, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1682, + "name": "InlineMessageDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1732, + 1733 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1683, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1684, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1685, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1686, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1687, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1685, + 1686, + 1687 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1688, + "name": "text", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the text section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 40, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L40" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1689, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1690, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.text.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1690 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 40, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L40" + } + ] + } + } + }, + { + "id": 1691, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1692, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1693, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1693 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 51, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 1694, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the info section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 62, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L62" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1695, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1696, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.info.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1697, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.info.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 74, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1698, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1699, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.info.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1696, + 1697, + 1698, + 1699 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 62, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L62" + } + ] + } + } + }, + { + "id": 1700, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the success section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 91, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L91" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1701, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1702, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.success.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 97, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1703, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.success.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1704, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1705, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.success.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1702, + 1703, + 1704, + 1705 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 91, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L91" + } + ] + } + } + }, + { + "id": 1706, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the warn section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1707, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1708, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.warn.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1709, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.warn.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 132, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1710, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 138, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1711, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.warn.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 144, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L144" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1708, + 1709, + 1710, + 1711 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 120, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L120" + } + ] + } + } + }, + { + "id": 1712, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the error section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 149, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L149" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1713, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1714, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.error.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 155, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L155" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1715, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.error.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1716, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.error.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 167, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1717, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.error.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 173, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1714, + 1715, + 1716, + 1717 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 149, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L149" + } + ] + } + } + }, + { + "id": 1718, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the secondary section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 178, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L178" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1719, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1720, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.secondary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 184, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L184" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1721, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.secondary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 190, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L190" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1722, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 196, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L196" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1723, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.secondary.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 202, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L202" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1720, + 1721, + 1722, + 1723 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 178, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L178" + } + ] + } + } + }, + { + "id": 1724, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the contrast section" + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 207, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L207" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1725, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1726, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.contrast.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 213, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L213" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1727, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.contrast.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 219, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L219" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1728, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 225, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L225" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1729, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inlinemessage.contrast.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 231, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L231" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1726, + 1727, + 1728, + 1729 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 207, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L207" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1730, + 1683, + 1688, + 1691, + 1694, + 1700, + 1706, + 1712, + 1718, + 1724 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1682, + "name": "InlineMessageDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1682 + ] + } + ], + "sources": [ + { + "fileName": "inlinemessage/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L1" + } + ] + }, + { + "id": 1734, + "name": "themes/inplace", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Inplace Design Tokens\n\n[Live Demo](https://www.primeng.org/inplace/)" + } + ] + }, + "children": [ + { + "id": 1735, + "name": "InplaceDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1752, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1753, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1754, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1735, + "name": "InplaceDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1755, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1735, + "name": "InplaceDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1754, + 1755 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1736, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1737, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1738, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1739, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1740, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 33, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L33" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1741, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1742, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 39, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L39" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1743, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 45, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L45" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1744, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 51, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L51" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1745, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 57, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1746, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 63, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1742, + 1743, + 1744, + 1745, + 1746 + ] + } + ], + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 33, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L33" + } + ] + } + } + }, + { + "id": 1747, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1738, + 1739, + 1740, + 1747 + ] + } + ], + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1748, + "name": "display", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the display section" + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 75, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L75" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1749, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1750, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of display" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.display.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1751, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of display" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inplace.display.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1750, + 1751 + ] + } + ], + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 75, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L75" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1752, + 1736, + 1748 + ] + } + ], + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1735, + "name": "InplaceDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1735 + ] + } + ], + "sources": [ + { + "fileName": "inplace/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L1" + } + ] + }, + { + "id": 1756, + "name": "themes/inputchips", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "InputChips Design Tokens\n\n[Live Demo](https://www.primeng.org/inputchips/)" + } + ] + }, + "children": [ + { + "id": 1757, + "name": "InputChipsDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1788, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1789, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1790, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1757, + "name": "InputChipsDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1791, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1757, + "name": "InputChipsDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1790, + 1791 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1758, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1759, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1760, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1761, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1762, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1763, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1764, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1765, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1766, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1767, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1768, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1769, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1770, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1771, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1772, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1773, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1774, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1775, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1776, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1777, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1778, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1779, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1780, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1781, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1777, + 1778, + 1779, + 1780, + 1781 + ] + } + ], + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 1782, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1782 + ] + } + ], + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1783, + "name": "chip", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the chip section" + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 153, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L153" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1784, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1785, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of chip" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.chip.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 159, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1786, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of chip" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.chip.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1787, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of chip" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputchips.chip.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1785, + 1786, + 1787 + ] + } + ], + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 153, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L153" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1788, + 1758, + 1783 + ] + } + ], + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1757, + "name": "InputChipsDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1757 + ] + } + ], + "sources": [ + { + "fileName": "inputchips/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L1" + } + ] + }, + { + "id": 1792, + "name": "themes/inputgroup", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "InputGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/inputgroup/)" + } + ] + }, + "children": [ + { + "id": 1793, + "name": "InputGroupDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1800, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1801, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1802, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1793, + "name": "InputGroupDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1803, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1793, + "name": "InputGroupDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1802, + 1803 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1794, + "name": "addon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the addon section" + } + ] + }, + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1795, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1796, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of addon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputgroup.addon.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1797, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of addon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputgroup.addon.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1798, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of addon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputgroup.addon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1799, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of addon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputgroup.addon.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1796, + 1797, + 1798, + 1799 + ] + } + ], + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 17, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1800, + 1794 + ] + } + ], + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1793, + "name": "InputGroupDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1793 + ] + } + ], + "sources": [ + { + "fileName": "inputgroup/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L1" + } + ] + }, + { + "id": 1804, + "name": "themes/inputnumber", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "InputNumber Design Tokens\n\n[Live Demo](https://www.primeng.org/inputnumber/)" + } + ] + }, + "children": [ + { + "id": 1805, + "name": "InputNumberDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1823, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1824, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1825, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1805, + "name": "InputNumberDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1826, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1805, + "name": "InputNumberDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1825, + 1826 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1806, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1807, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1808, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1808 + ] + } + ], + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1809, + "name": "button", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the button section" + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1810, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1811, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1812, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1813, + "name": "verticalPadding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Vertical padding of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.vertical.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1814, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1815, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1816, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1817, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1818, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1819, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1820, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1821, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L94" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1822, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputnumber.button.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 100, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L100" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1811, + 1812, + 1813, + 1814, + 1815, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821, + 1822 + ] + } + ], + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 28, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L28" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1823, + 1806, + 1809 + ] + } + ], + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1805, + "name": "InputNumberDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1805 + ] + } + ], + "sources": [ + { + "fileName": "inputnumber/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L1" + } + ] + }, + { + "id": 1827, + "name": "themes/inputtext", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "InputText Design Tokens\n\n[Live Demo](https://www.primeng.org/inputtext/)" + } + ] + }, + "children": [ + { + "id": 1828, + "name": "InputTextDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1864, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1865, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1866, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1828, + "name": "InputTextDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1867, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1828, + "name": "InputTextDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1866, + 1867 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1829, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1830, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1831, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1832, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1833, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1834, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1835, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1836, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1837, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1838, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1839, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1840, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1841, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1842, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1843, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1844, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1845, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1846, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1847, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1848, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1849, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1850, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1851, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1852, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1848, + 1849, + 1850, + 1851, + 1852 + ] + } + ], + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 1853, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1854, + "name": "sm", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm of root" + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 152, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L152" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1855, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1856, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.sm.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 158, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L158" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1857, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.sm.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 164, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L164" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1858, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Sm padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.sm.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 170, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L170" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1856, + 1857, + 1858 + ] + } + ], + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 152, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L152" + } + ] + } + } + }, + { + "id": 1859, + "name": "lg", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg of root" + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L175" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1860, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1861, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.lg.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 181, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1862, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.lg.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 187, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1863, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lg padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "inputtext.lg.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 193, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1861, + 1862, + 1863 + ] + } + ], + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 175, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L175" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1853, + 1854, + 1859 + ] + } + ], + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1864, + 1829 + ] + } + ], + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1828, + "name": "InputTextDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1828 + ] + } + ], + "sources": [ + { + "fileName": "inputtext/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L1" + } + ] + }, + { + "id": 1868, + "name": "themes/knob", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Knob Design Tokens\n\n[Live Demo](https://www.primeng.org/knob/)" + } + ] + }, + "children": [ + { + "id": 1869, + "name": "KnobDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1889, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1890, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1891, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1869, + "name": "KnobDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1892, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1869, + "name": "KnobDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1891, + 1892 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1870, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1871, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1872, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1873, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 27, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L27" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1874, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1875, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 33, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L33" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1876, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 39, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L39" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1877, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 45, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L45" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1878, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 51, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L51" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1879, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 57, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1875, + 1876, + 1877, + 1878, + 1879 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 27, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L27" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1872, + 1873 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1880, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the value section" + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 63, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L63" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1881, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1882, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of value" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.value.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1882 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 63, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L63" + } + ] + } + } + }, + { + "id": 1883, + "name": "range", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the range section" + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 74, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1884, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1885, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of range" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.range.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1885 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 74, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 1886, + "name": "text", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the text section" + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 85, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L85" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1887, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1888, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "knob.text.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 91, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L91" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1888 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 85, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L85" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1889, + 1870, + 1880, + 1883, + 1886 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1869, + "name": "KnobDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1869 + ] + } + ], + "sources": [ + { + "fileName": "knob/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L1" + } + ] + }, + { + "id": 1893, + "name": "themes/listbox", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Listbox Design Tokens\n\n[Live Demo](https://www.primeng.org/listbox/)" + } + ] + }, + "children": [ + { + "id": 1894, + "name": "ListboxDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 1948, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1949, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1950, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1894, + "name": "ListboxDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 1951, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1894, + "name": "ListboxDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1950, + 1951 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1895, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1896, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1897, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1898, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1899, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1900, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1901, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1902, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1903, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1904, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1905, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1906, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1907, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L81" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1908, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1909, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 87, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1910, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 93, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1911, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 99, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1912, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 105, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1913, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 111, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1909, + 1910, + 1911, + 1912, + 1913 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 81, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L81" + } + ] + } + } + }, + { + "id": 1914, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 118, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L118" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1914 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1915, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 123, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L123" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1916, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1917, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 129, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1918, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 135, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1919, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Header of list" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L139" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1920, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1921, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Header padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.list.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1921 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 139, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L139" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1917, + 1918, + 1919 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 123, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L123" + } + ] + } + } + }, + { + "id": 1922, + "name": "option", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option section" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 151, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L151" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1923, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1924, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 157, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1925, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 163, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1926, + "name": "selectedFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.selected.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1927, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1928, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1929, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 187, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1930, + "name": "selectedFocusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.selected.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 193, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1931, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 199, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L199" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1932, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 205, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L205" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1933, + "name": "stripedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Striped background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.striped.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 151, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L151" + } + ] + } + } + }, + { + "id": 1934, + "name": "optionGroup", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option group section" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 216, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L216" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1935, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1936, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.group.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 222, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L222" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1937, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.group.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 228, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L228" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1938, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.group.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 234, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L234" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1939, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.option.group.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 240, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L240" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1936, + 1937, + 1938, + 1939 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 216, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L216" + } + ] + } + } + }, + { + "id": 1940, + "name": "checkmark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the checkmark section" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 245, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L245" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1941, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1942, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of checkmark" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.checkmark.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 251, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L251" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1943, + "name": "gutterStart", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter start of checkmark" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.checkmark.gutter.start" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 257, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L257" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1944, + "name": "gutterEnd", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter end of checkmark" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.checkmark.gutter.end" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 263, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L263" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1942, + 1943, + 1944 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 245, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L245" + } + ] + } + } + }, + { + "id": 1945, + "name": "emptyMessage", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the empty message section" + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 268, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L268" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1946, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1947, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of empty message" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "listbox.empty.message.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 274, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L274" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1947 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 268, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L268" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1948, + 1895, + 1915, + 1922, + 1934, + 1940, + 1945 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1894, + "name": "ListboxDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1894 + ] + } + ], + "sources": [ + { + "fileName": "listbox/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L1" + } + ] + }, + { + "id": 1952, + "name": "themes/megamenu", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "MegaMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/megamenu/)" + } + ] + }, + "children": [ + { + "id": 1953, + "name": "MegaMenuDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2030, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2031, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2032, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1953, + "name": "MegaMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2033, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1953, + "name": "MegaMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2032, + 2033 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 1954, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1955, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1956, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1957, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1958, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1959, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1960, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1961, + "name": "verticalOrientation", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Vertical orientation of root" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 51, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1962, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1963, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Vertical orientation padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.vertical.orientation.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 57, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1964, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Vertical orientation gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.vertical.orientation.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 63, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1963, + 1964 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 51, + "character": 30, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 1965, + "name": "horizontalOrientation", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Horizontal orientation of root" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L68" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1966, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1967, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Horizontal orientation padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.horizontal.orientation.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 74, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1967 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 68, + "character": 32, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L68" + } + ] + } + } + }, + { + "id": 1968, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1965, + 1968 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 1969, + "name": "baseItem", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the base item section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 86, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L86" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1970, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1971, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of base item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.base.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1972, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of base item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.base.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 98, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1971, + 1972 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 86, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L86" + } + ] + } + } + }, + { + "id": 1973, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 103, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L103" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1974, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1975, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1976, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1977, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1978, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1979, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 133, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1980, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1981, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1982, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 151, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1983, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 155, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L155" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1984, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1985, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 161, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1986, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 167, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1987, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.item.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 173, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1985, + 1986, + 1987 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 155, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L155" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 1981, + 1982, + 1983 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 103, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L103" + } + ] + } + } + }, + { + "id": 1988, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 179, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L179" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1989, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1990, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 185, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L185" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1991, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 191, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L191" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1992, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 197, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L197" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1993, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 203, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L203" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1994, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 209, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L209" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1995, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 215, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L215" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1996, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.overlay.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 221, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L221" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1990, + 1991, + 1992, + 1993, + 1994, + 1995, + 1996 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 179, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L179" + } + ] + } + } + }, + { + "id": 1997, + "name": "submenu", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 226, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L226" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1998, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1999, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 232, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L232" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2000, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 238, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L238" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 1999, + 2000 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 226, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L226" + } + ] + } + } + }, + { + "id": 2001, + "name": "submenuLabel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu label section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 243, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L243" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2002, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2003, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.label.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 249, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L249" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2004, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.label.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 255, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L255" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2005, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.label.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 261, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L261" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2006, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.label.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 267, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L267" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2003, + 2004, + 2005, + 2006 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 243, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L243" + } + ] + } + } + }, + { + "id": 2007, + "name": "submenuIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu icon section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 272, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L272" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2008, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2009, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 278, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L278" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2010, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 284, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L284" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2011, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 290, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L290" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2012, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.submenu.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 296, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L296" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2009, + 2010, + 2011, + 2012 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 272, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L272" + } + ] + } + } + }, + { + "id": 2013, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 301, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L301" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2014, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2015, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.separator.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 307, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L307" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2015 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 301, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L301" + } + ] + } + } + }, + { + "id": 2016, + "name": "mobileButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the mobile button section" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 312, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L312" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2017, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2018, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 318, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L318" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2019, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 324, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L324" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2020, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 330, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L330" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2021, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 336, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L336" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2022, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 342, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L342" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2023, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of mobile button" + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 346, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L346" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2024, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2025, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 352, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L352" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2026, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 358, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L358" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2027, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 364, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L364" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2028, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 370, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L370" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2029, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "megamenu.mobile.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 376, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L376" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2025, + 2026, + 2027, + 2028, + 2029 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 346, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L346" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 312, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L312" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2030, + 1954, + 1969, + 1973, + 1988, + 1997, + 2001, + 2007, + 2013, + 2016 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 1953, + "name": "MegaMenuDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 1953 + ] + } + ], + "sources": [ + { + "fileName": "megamenu/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L1" + } + ] + }, + { + "id": 2034, + "name": "themes/menu", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Menu Design Tokens\n\n[Live Demo](https://www.primeng.org/menu/)" + } + ] + }, + "children": [ + { + "id": 2035, + "name": "MenuDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2069, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2070, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2071, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2035, + "name": "MenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2072, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2035, + "name": "MenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2071, + 2072 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2036, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2037, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2038, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2039, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2040, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2041, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2042, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2043, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2038, + 2039, + 2040, + 2041, + 2042, + 2043 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2044, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2045, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2046, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2047, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2046, + 2047 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 58, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 2048, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 75, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L75" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2049, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2050, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2051, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2052, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2053, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2054, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2055, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2056, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L115" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2057, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2058, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 121, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2059, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.item.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 127, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2058, + 2059 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 115, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L115" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 75, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L75" + } + ] + } + } + }, + { + "id": 2060, + "name": "submenuLabel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu label section" + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 133, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L133" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2061, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2062, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.submenu.label.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2063, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.submenu.label.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2064, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.submenu.label.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 151, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2065, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.submenu.label.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 157, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2062, + 2063, + 2064, + 2065 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 133, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L133" + } + ] + } + } + }, + { + "id": 2066, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 162, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L162" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2067, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2068, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menu.separator.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 168, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L168" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2068 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 162, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L162" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2069, + 2036, + 2044, + 2048, + 2060, + 2066 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2035, + "name": "MenuDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2035 + ] + } + ], + "sources": [ + { + "fileName": "menu/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L1" + } + ] + }, + { + "id": 2073, + "name": "themes/menubar", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Menubar Design Tokens\n\n[Live Demo](https://www.primeng.org/menubar/)" + } + ] + }, + "children": [ + { + "id": 2074, + "name": "MenubarDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2135, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2136, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2137, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2074, + "name": "MenubarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2138, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2074, + "name": "MenubarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2137, + 2138 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2075, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2076, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2077, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2078, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2079, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2080, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2081, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2082, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2083, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2077, + 2078, + 2079, + 2080, + 2081, + 2082, + 2083 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2084, + "name": "baseItem", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the base item section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 64, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L64" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2085, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2086, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of base item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.base.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2087, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of base item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.base.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2086, + 2087 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 64, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L64" + } + ] + } + } + }, + { + "id": 2088, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 81, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L81" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2089, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2090, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2091, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2092, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2093, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2094, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2095, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2096, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2097, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 129, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2098, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 133, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L133" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2099, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2100, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 139, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2101, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2102, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.item.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2100, + 2101, + 2102 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 133, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L133" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 81, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L81" + } + ] + } + } + }, + { + "id": 2103, + "name": "submenu", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 157, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L157" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2104, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2105, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 163, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2106, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2107, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2108, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2109, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 187, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2110, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 193, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2111, + "name": "mobileIndent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Mobile indent of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.mobile.indent" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 199, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L199" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 157, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L157" + } + ] + } + } + }, + { + "id": 2112, + "name": "submenuIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu icon section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 204, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L204" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2113, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2114, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 210, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L210" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2115, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 216, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L216" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2116, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 222, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L222" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2117, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.submenu.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 228, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L228" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2114, + 2115, + 2116, + 2117 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 204, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L204" + } + ] + } + } + }, + { + "id": 2118, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 233, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L233" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2119, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2120, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.separator.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 239, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2120 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 233, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L233" + } + ] + } + } + }, + { + "id": 2121, + "name": "mobileButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the mobile button section" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 244, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L244" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2122, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2123, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 250, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L250" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2124, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 256, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L256" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2125, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 262, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L262" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2126, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 268, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L268" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2127, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 274, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L274" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2128, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of mobile button" + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 278, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L278" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2129, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2130, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 284, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L284" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2131, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 290, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L290" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2132, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 296, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L296" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2133, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 302, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L302" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2134, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of mobile button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "menubar.mobile.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 308, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L308" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2130, + 2131, + 2132, + 2133, + 2134 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 278, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L278" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2123, + 2124, + 2125, + 2126, + 2127, + 2128 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 244, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L244" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2135, + 2075, + 2084, + 2088, + 2103, + 2112, + 2118, + 2121 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2074, + "name": "MenubarDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2074 + ] + } + ], + "sources": [ + { + "fileName": "menubar/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L1" + } + ] + }, + { + "id": 2139, + "name": "themes/message", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Message Design Tokens\n\n[Live Demo](https://www.primeng.org/message/)" + } + ] + }, + "children": [ + { + "id": 2140, + "name": "MessageDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2248, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2249, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2250, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2140, + "name": "MessageDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2251, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2140, + "name": "MessageDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2250, + 2251 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2141, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2142, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2143, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2144, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2145, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2143, + 2144, + 2145 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2146, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 40, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L40" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2147, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2148, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2149, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.content.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2148, + 2149 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 40, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L40" + } + ] + } + } + }, + { + "id": 2150, + "name": "text", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the text section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 57, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L57" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2151, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2152, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.text.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2153, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.text.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2152, + 2153 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 57, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L57" + } + ] + } + } + }, + { + "id": 2154, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 74, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2155, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2156, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2156 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 74, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 2157, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the close button section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 85, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L85" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2158, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2159, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.button.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 91, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L91" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2160, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.button.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 97, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2161, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2162, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of close button" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L107" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2163, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2164, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 113, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L113" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2165, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 119, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L119" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2166, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 125, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L125" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2164, + 2165, + 2166 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 107, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L107" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2159, + 2160, + 2161, + 2162 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 85, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L85" + } + ] + } + } + }, + { + "id": 2167, + "name": "closeIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the close icon section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 131, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L131" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2168, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2169, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of close icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.close.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 137, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L137" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2169 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 131, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L131" + } + ] + } + } + }, + { + "id": 2170, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the info section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 142, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L142" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2171, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2172, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2173, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 154, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L154" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2174, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 160, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L160" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2175, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 166, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L166" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2176, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of info" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 170, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L170" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2177, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2178, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 176, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L176" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2179, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of info" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 180, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L180" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2180, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2181, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 186, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L186" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2182, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.info.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 192, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L192" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2181, + 2182 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 180, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L180" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2178, + 2179 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 170, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L170" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2172, + 2173, + 2174, + 2175, + 2176 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 142, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L142" + } + ] + } + } + }, + { + "id": 2183, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the success section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 199, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L199" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2184, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2185, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 205, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L205" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2186, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2187, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 217, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L217" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2188, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 223, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L223" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2189, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of success" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 227, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L227" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2190, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2191, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 233, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L233" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2192, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of success" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 237, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L237" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2193, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2194, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 243, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L243" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2195, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.success.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 249, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L249" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2194, + 2195 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 237, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L237" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2191, + 2192 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 227, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L227" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2185, + 2186, + 2187, + 2188, + 2189 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 199, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L199" + } + ] + } + } + }, + { + "id": 2196, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the warn section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 256, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L256" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2197, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2198, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 262, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L262" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2199, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 268, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L268" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2200, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 274, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L274" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2201, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 280, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L280" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2202, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of warn" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 284, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L284" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2203, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2204, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 290, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L290" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2205, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of warn" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 294, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L294" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2206, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2207, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 300, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L300" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2208, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.warn.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 306, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L306" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2207, + 2208 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 294, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L294" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2204, + 2205 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 284, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L284" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2198, + 2199, + 2200, + 2201, + 2202 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 256, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L256" + } + ] + } + } + }, + { + "id": 2209, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the error section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 313, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L313" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2210, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2211, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 319, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L319" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2212, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 325, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L325" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2213, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 331, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L331" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2214, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 337, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L337" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2215, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of error" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 341, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L341" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2216, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2217, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 347, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L347" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2218, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of error" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 351, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L351" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2219, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2220, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 357, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L357" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2221, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.error.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 363, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L363" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2220, + 2221 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 351, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L351" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2217, + 2218 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 341, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L341" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2211, + 2212, + 2213, + 2214, + 2215 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 313, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L313" + } + ] + } + } + }, + { + "id": 2222, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the secondary section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 370, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L370" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2223, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2224, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 376, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L376" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2225, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 382, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L382" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2226, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 388, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L388" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2227, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 394, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L394" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2228, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of secondary" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 398, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L398" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2229, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2230, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 404, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L404" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2231, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of secondary" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 408, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L408" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2232, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2233, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 414, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L414" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2234, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.secondary.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 420, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L420" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2233, + 2234 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 408, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L408" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2230, + 2231 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 398, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L398" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2224, + 2225, + 2226, + 2227, + 2228 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 370, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L370" + } + ] + } + } + }, + { + "id": 2235, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the contrast section" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 427, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L427" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2236, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2237, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 433, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L433" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2238, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 439, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L439" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2239, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 445, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L445" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2240, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 451, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L451" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2241, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of contrast" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 455, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L455" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2242, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2243, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 461, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L461" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2244, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of contrast" + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 465, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L465" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2245, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2246, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 471, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L471" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2247, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "message.contrast.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 477, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L477" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2246, + 2247 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 465, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L465" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2243, + 2244 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 455, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L455" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2237, + 2238, + 2239, + 2240, + 2241 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 427, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L427" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2248, + 2141, + 2146, + 2150, + 2154, + 2157, + 2167, + 2170, + 2183, + 2196, + 2209, + 2222, + 2235 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2140, + "name": "MessageDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2140 + ] + } + ], + "sources": [ + { + "fileName": "message/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L1" + } + ] + }, + { + "id": 2252, + "name": "themes/metergroup", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "MeterGroup Design Tokens\n\n[Live Demo](https://www.primeng.org/metergroup/)" + } + ] + }, + "children": [ + { + "id": 2253, + "name": "MeterGroupDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2275, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2276, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2277, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2253, + "name": "MeterGroupDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2278, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2253, + "name": "MeterGroupDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2277, + 2278 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2254, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2255, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2256, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2257, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2256, + 2257 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2258, + "name": "meters", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the meters section" + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2259, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2260, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of meters" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.meters.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2261, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of meters" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.meters.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2260, + 2261 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 34, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L34" + } + ] + } + } + }, + { + "id": 2262, + "name": "label", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the label section" + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2263, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2264, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.label.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2264 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 51, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 2265, + "name": "labelMarker", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the label marker section" + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 62, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L62" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2266, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2267, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of label marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.label.marker.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2267 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 62, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L62" + } + ] + } + } + }, + { + "id": 2268, + "name": "labelIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the label icon section" + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 73, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L73" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2269, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2270, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of label icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.label.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 79, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L79" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2270 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 73, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L73" + } + ] + } + } + }, + { + "id": 2271, + "name": "labelList", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the label list section" + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 84, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L84" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2272, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2273, + "name": "verticalGap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Vertical gap of label list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.label.list.vertical.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 90, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L90" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2274, + "name": "horizontalGap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Horizontal gap of label list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "metergroup.label.list.horizontal.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 96, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L96" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2273, + 2274 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 84, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L84" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2275, + 2254, + 2258, + 2262, + 2265, + 2268, + 2271 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2253, + "name": "MeterGroupDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2253 + ] + } + ], + "sources": [ + { + "fileName": "metergroup/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L1" + } + ] + }, + { + "id": 2279, + "name": "themes/multiselect", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "MultiSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/multiselect/)" + } + ] + }, + "children": [ + { + "id": 2280, + "name": "MultiSelectDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2348, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2349, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2350, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2280, + "name": "MultiSelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2351, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2280, + "name": "MultiSelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2350, + 2351 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2281, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2282, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2283, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2284, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2285, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2286, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2287, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2288, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2289, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2290, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2291, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2292, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2293, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2294, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2295, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2296, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2297, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2298, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2299, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2300, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2301, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2302, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2303, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2304, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2300, + 2301, + 2302, + 2303, + 2304 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 2305, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2305 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2306, + "name": "dropdown", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dropdown section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 153, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L153" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2307, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2308, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.dropdown.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 159, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2309, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.dropdown.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2308, + 2309 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 153, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L153" + } + ] + } + } + }, + { + "id": 2310, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 170, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L170" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2311, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2312, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 176, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L176" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2313, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 182, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L182" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2314, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 188, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L188" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2315, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2316, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2312, + 2313, + 2314, + 2315, + 2316 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 170, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L170" + } + ] + } + } + }, + { + "id": 2317, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 205, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L205" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2318, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2319, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2320, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 217, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L217" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2321, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Header of list" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 221, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L221" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2322, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2323, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Header padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.list.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 227, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L227" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2323 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 221, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L221" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2319, + 2320, + 2321 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 205, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L205" + } + ] + } + } + }, + { + "id": 2324, + "name": "option", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 233, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L233" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2325, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2326, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 239, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2327, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 245, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L245" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2328, + "name": "selectedFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.selected.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 251, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L251" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2329, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 257, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L257" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2330, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 263, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L263" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2331, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 269, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L269" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2332, + "name": "selectedFocusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.selected.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 275, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L275" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2333, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 281, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L281" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2334, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 287, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L287" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2335, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 293, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L293" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 233, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L233" + } + ] + } + } + }, + { + "id": 2336, + "name": "optionGroup", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option group section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 298, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L298" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2337, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2338, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.group.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 304, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L304" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2339, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.group.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 310, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L310" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2340, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.group.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 316, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L316" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2341, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.option.group.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 322, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L322" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2338, + 2339, + 2340, + 2341 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 298, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L298" + } + ] + } + } + }, + { + "id": 2342, + "name": "chip", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the chip section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 327, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L327" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2343, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2344, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of chip" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.chip.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 333, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L333" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2344 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 327, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L327" + } + ] + } + } + }, + { + "id": 2345, + "name": "emptyMessage", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the empty message section" + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 338, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L338" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2346, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2347, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of empty message" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "multiselect.empty.message.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 344, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L344" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2347 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 338, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L338" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2348, + 2281, + 2306, + 2310, + 2317, + 2324, + 2336, + 2342, + 2345 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2280, + "name": "MultiSelectDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2280 + ] + } + ], + "sources": [ + { + "fileName": "multiselect/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L1" + } + ] + }, + { + "id": 2352, + "name": "themes/orderlist", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "OrderList Design Tokens\n\n[Live Demo](https://www.primeng.org/orderlist/)" + } + ] + }, + "children": [ + { + "id": 2353, + "name": "OrderListDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2360, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2361, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2362, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2353, + "name": "OrderListDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2363, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2353, + "name": "OrderListDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2362, + 2363 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2354, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2355, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2356, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "orderlist.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2356 + ] + } + ], + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2357, + "name": "controls", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the controls section" + } + ] + }, + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2358, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2359, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of controls" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "orderlist.controls.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2359 + ] + } + ], + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 28, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L28" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2360, + 2354, + 2357 + ] + } + ], + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2353, + "name": "OrderListDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2353 + ] + } + ], + "sources": [ + { + "fileName": "orderlist/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L1" + } + ] + }, + { + "id": 2364, + "name": "themes/organizationchart", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "OrganizationChart Design Tokens\n\n[Live Demo](https://www.primeng.org/organizationchart/)" + } + ] + }, + "children": [ + { + "id": 2365, + "name": "OrganizationChartDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2403, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2404, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2405, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2365, + "name": "OrganizationChartDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2406, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2365, + "name": "OrganizationChartDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2405, + 2406 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2366, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2367, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2368, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2369, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2368, + 2369 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2370, + "name": "node", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the node section" + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2371, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2372, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2373, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2374, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2375, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2376, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2377, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2378, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2379, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2380, + "name": "toggleablePadding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toggleable padding of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggleable.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2381, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L94" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 34, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L34" + } + ] + } + } + }, + { + "id": 2382, + "name": "nodeToggleButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the node toggle button section" + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 99, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L99" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2383, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2384, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2385, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2386, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2387, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2388, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 129, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2389, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 135, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2390, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 141, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2391, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of node toggle button" + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L145" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2392, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2393, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2394, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 157, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2395, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 163, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2396, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 169, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2397, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.node.toggle.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 175, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2393, + 2394, + 2395, + 2396, + 2397 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 145, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L145" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 99, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L99" + } + ] + } + } + }, + { + "id": 2398, + "name": "connector", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the connector section" + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 181, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L181" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2399, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2400, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of connector" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.connector.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 187, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2401, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of connector" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.connector.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 193, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2402, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of connector" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "organizationchart.connector.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 199, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L199" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2400, + 2401, + 2402 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 181, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L181" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2403, + 2366, + 2370, + 2382, + 2398 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2365, + "name": "OrganizationChartDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2365 + ] + } + ], + "sources": [ + { + "fileName": "organizationchart/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L1" + } + ] + }, + { + "id": 2407, + "name": "themes/overlaybadge", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "OverlayBadge Design Tokens\n\n[Live Demo](https://www.primeng.org/overlaybadge/)" + } + ] + }, + "children": [ + { + "id": 2408, + "name": "OverlayBadgeDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2415, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2416, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2417, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2408, + "name": "OverlayBadgeDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2418, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2408, + "name": "OverlayBadgeDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2417, + 2418 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2409, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2410, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2411, + "name": "outline", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Outline of root" + } + ] + }, + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 21, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L21" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2412, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2413, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Outline width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "overlaybadge.outline.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 27, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L27" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2414, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Outline color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "overlaybadge.outline.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 33, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L33" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2413, + 2414 + ] + } + ], + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 21, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L21" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2411 + ] + } + ], + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2415, + 2409 + ] + } + ], + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2408, + "name": "OverlayBadgeDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2408 + ] + } + ], + "sources": [ + { + "fileName": "overlaybadge/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L1" + } + ] + }, + { + "id": 2419, + "name": "themes/paginator", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Paginator Design Tokens\n\n[Live Demo](https://www.primeng.org/paginator/)" + } + ] + }, + "children": [ + { + "id": 2420, + "name": "PaginatorDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2453, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2454, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2455, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2420, + "name": "PaginatorDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2456, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2420, + "name": "PaginatorDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2455, + 2456 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2421, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2422, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2423, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2424, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2425, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2426, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2427, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2428, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2423, + 2424, + 2425, + 2426, + 2427, + 2428 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2429, + "name": "navButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the nav button section" + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2430, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2431, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2432, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2433, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2434, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2435, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2436, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L94" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2437, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 100, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L100" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2438, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 106, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L106" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2439, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 112, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L112" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2440, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of nav button" + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 116, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L116" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2441, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2442, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 122, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L122" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2443, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 128, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L128" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2444, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 134, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L134" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2445, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 140, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L140" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2446, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.nav.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 146, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L146" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2442, + 2443, + 2444, + 2445, + 2446 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 116, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L116" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 58, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 2447, + "name": "currentPageReport", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the current page report section" + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 152, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L152" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2448, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2449, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of current page report" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.current.page.report.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 158, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L158" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2449 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 152, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L152" + } + ] + } + } + }, + { + "id": 2450, + "name": "jumpToPageInput", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the jump to page input section" + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 163, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L163" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2451, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2452, + "name": "maxWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Max width of jump to page input" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "paginator.jump.to.page.input.max.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2452 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 163, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L163" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2453, + 2421, + 2429, + 2447, + 2450 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2420, + "name": "PaginatorDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2420 + ] + } + ], + "sources": [ + { + "fileName": "paginator/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L1" + } + ] + }, + { + "id": 2457, + "name": "themes/panel", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Panel Design Tokens\n\n[Live Demo](https://www.primeng.org/panel/)" + } + ] + }, + "children": [ + { + "id": 2458, + "name": "PanelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2485, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2486, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2487, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2458, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2488, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2458, + "name": "PanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2487, + 2488 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2459, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2460, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2461, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2462, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2463, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2464, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2461, + 2462, + 2463, + 2464 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2465, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2466, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2467, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2468, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2469, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2470, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2471, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2472, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.header.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2467, + 2468, + 2469, + 2470, + 2471, + 2472 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 2473, + "name": "toggleableHeader", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the toggleable header section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L87" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2474, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2475, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of toggleable header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.toggleable.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2475 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 87, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L87" + } + ] + } + } + }, + { + "id": 2476, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the title section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L98" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2477, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2478, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L104" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2478 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 98, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L98" + } + ] + } + } + }, + { + "id": 2479, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L109" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2480, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2481, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2481 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 109, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L109" + } + ] + } + } + }, + { + "id": 2482, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2483, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2484, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panel.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2484 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 120, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L120" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2485, + 2459, + 2465, + 2473, + 2476, + 2479, + 2482 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2458, + "name": "PanelDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2458 + ] + } + ], + "sources": [ + { + "fileName": "panel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L1" + } + ] + }, + { + "id": 2489, + "name": "themes/panelmenu", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "PanelMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/panelmenu/)" + } + ] + }, + "children": [ + { + "id": 2490, + "name": "PanelMenuDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2530, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2531, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2532, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2490, + "name": "PanelMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2533, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2490, + "name": "PanelMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2532, + 2533 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2491, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2492, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2493, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2494, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2493, + 2494 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2495, + "name": "panel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the panel section" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2496, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2497, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2498, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2499, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2500, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2501, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2502, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2503, + "name": "first", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "First of panel" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 74, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2504, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2505, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "First border width of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.first.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 80, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2506, + "name": "topBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "First top border radius of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.first.top.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 86, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2505, + 2506 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 74, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 2507, + "name": "last", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Last of panel" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 91, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L91" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2508, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2509, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Last border width of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.last.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 97, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2510, + "name": "bottomBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Last bottom border radius of panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.panel.last.bottom.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 103, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2509, + 2510 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 91, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L91" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2507 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 34, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L34" + } + ] + } + } + }, + { + "id": 2511, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 109, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L109" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2512, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2513, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2514, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2515, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2516, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 133, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2517, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2518, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 145, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2519, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 149, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L149" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2520, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2521, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 155, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L155" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2522, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.item.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 161, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2521, + 2522 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 149, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L149" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 109, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L109" + } + ] + } + } + }, + { + "id": 2523, + "name": "submenu", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu section" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 167, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L167" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2524, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2525, + "name": "indent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indent of submenu" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.submenu.indent" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 173, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2525 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 167, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L167" + } + ] + } + } + }, + { + "id": 2526, + "name": "submenuIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu icon section" + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 178, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L178" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2527, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2528, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.submenu.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 184, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L184" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2529, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "panelmenu.submenu.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 190, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L190" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2528, + 2529 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 178, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L178" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2530, + 2491, + 2495, + 2511, + 2523, + 2526 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2490, + "name": "PanelMenuDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2490 + ] + } + ], + "sources": [ + { + "fileName": "panelmenu/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L1" + } + ] + }, + { + "id": 2534, + "name": "themes/password", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Password Design Tokens\n\n[Live Demo](https://www.primeng.org/password/)" + } + ] + }, + "children": [ + { + "id": 2535, + "name": "PasswordDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2560, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2561, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2562, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2535, + "name": "PasswordDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2563, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2535, + "name": "PasswordDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2562, + 2563 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2536, + "name": "meter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the meter section" + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2537, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2538, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of meter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.meter.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2539, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of meter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.meter.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2540, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of meter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.meter.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2538, + 2539, + 2540 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 17, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2541, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 40, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L40" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2542, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2543, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2543 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 40, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L40" + } + ] + } + } + }, + { + "id": 2544, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2545, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2546, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2547, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2548, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2549, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2550, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.overlay.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2551, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2546, + 2547, + 2548, + 2549, + 2550, + 2551 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 51, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 2552, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 92, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L92" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2553, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2554, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.content.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 98, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2554 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 92, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L92" + } + ] + } + } + }, + { + "id": 2555, + "name": "strength", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the strength section" + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 103, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L103" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2556, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2557, + "name": "weakBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Weak background of strength" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.strength.weak.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2558, + "name": "mediumBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Medium background of strength" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.strength.medium.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2559, + "name": "strongBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Strong background of strength" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "password.strength.strong.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2557, + 2558, + 2559 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 103, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L103" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2560, + 2536, + 2541, + 2544, + 2552, + 2555 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2535, + "name": "PasswordDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2535 + ] + } + ], + "sources": [ + { + "fileName": "password/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L1" + } + ] + }, + { + "id": 2564, + "name": "themes/picklist", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "PickList Design Tokens\n\n[Live Demo](https://www.primeng.org/picklist/)" + } + ] + }, + "children": [ + { + "id": 2565, + "name": "PickListDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2572, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2573, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2574, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2565, + "name": "PickListDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2575, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2565, + "name": "PickListDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2574, + 2575 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2566, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2567, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2568, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "picklist.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2568 + ] + } + ], + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2569, + "name": "controls", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the controls section" + } + ] + }, + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2570, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2571, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of controls" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "picklist.controls.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2571 + ] + } + ], + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 28, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L28" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2572, + 2566, + 2569 + ] + } + ], + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2565, + "name": "PickListDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2565 + ] + } + ], + "sources": [ + { + "fileName": "picklist/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L1" + } + ] + }, + { + "id": 2576, + "name": "themes/popover", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Popover Design Tokens\n\n[Live Demo](https://www.primeng.org/popover/)" + } + ] + }, + "children": [ + { + "id": 2577, + "name": "PopoverDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2590, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2591, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2592, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2577, + "name": "PopoverDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2593, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2577, + "name": "PopoverDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2592, + 2593 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2578, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2579, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2580, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2581, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2582, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2583, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2584, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2585, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2586, + "name": "arrowOffset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Arrow offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.arrow.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586 + ] + } + ], + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2587, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 64, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L64" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2588, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2589, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "popover.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2589 + ] + } + ], + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 64, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L64" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2590, + 2578, + 2587 + ] + } + ], + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2577, + "name": "PopoverDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2577 + ] + } + ], + "sources": [ + { + "fileName": "popover/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L1" + } + ] + }, + { + "id": 2594, + "name": "themes/progressbar", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ProgressBar Design Tokens\n\n[Live Demo](https://www.primeng.org/progressbar/)" + } + ] + }, + "children": [ + { + "id": 2595, + "name": "ProgressBarDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2609, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2610, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2611, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2595, + "name": "ProgressBarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2612, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2595, + "name": "ProgressBarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2611, + 2612 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2596, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2597, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2598, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2599, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2600, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2598, + 2599, + 2600 + ] + } + ], + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2601, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the value section" + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 40, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L40" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2602, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2603, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of value" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.value.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2603 + ] + } + ], + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 40, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L40" + } + ] + } + } + }, + { + "id": 2604, + "name": "label", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the label section" + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2605, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2606, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.label.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2607, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.label.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2608, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressbar.label.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2606, + 2607, + 2608 + ] + } + ], + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 51, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L51" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2609, + 2596, + 2601, + 2604 + ] + } + ], + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2595, + "name": "ProgressBarDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2595 + ] + } + ], + "sources": [ + { + "fileName": "progressbar/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L1" + } + ] + }, + { + "id": 2613, + "name": "themes/progressspinner", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ProgressSpinner Design Tokens\n\n[Live Demo](https://www.primeng.org/progressspinner/)" + } + ] + }, + "children": [ + { + "id": 2614, + "name": "ProgressSpinnerDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2621, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2622, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2623, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2614, + "name": "ProgressSpinnerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2624, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2614, + "name": "ProgressSpinnerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2623, + 2624 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2615, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2616, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2617, + "name": "color.1", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color.1 of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressspinner.color.1" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2618, + "name": "color.2", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color.2 of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressspinner.color.2" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2619, + "name": "color.3", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color.3 of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressspinner.color.3" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2620, + "name": "color.4", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color.4 of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "progressspinner.color.4" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2617, + 2618, + 2619, + 2620 + ] + } + ], + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2621, + 2615 + ] + } + ], + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2614, + "name": "ProgressSpinnerDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2614 + ] + } + ], + "sources": [ + { + "fileName": "progressspinner/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L1" + } + ] + }, + { + "id": 2625, + "name": "themes/radiobutton", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "RadioButton Design Tokens\n\n[Live Demo](https://www.primeng.org/radiobutton/)" + } + ] + }, + "children": [ + { + "id": 2626, + "name": "RadioButtonDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2659, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2660, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2661, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2626, + "name": "RadioButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2662, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2626, + "name": "RadioButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2661, + 2662 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2627, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2628, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2629, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2630, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2631, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2632, + "name": "checkedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.checked.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2633, + "name": "checkedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.checked.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2634, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2635, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2636, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2637, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2638, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2639, + "name": "checkedBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.checked.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2640, + "name": "checkedHoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.checked.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2641, + "name": "checkedFocusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.checked.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2642, + "name": "checkedDisabledBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked disabled border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.checked.disabled.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2643, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2644, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 113, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L113" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2645, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L117" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2646, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2647, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2648, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2649, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2650, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2651, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 147, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L147" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2647, + 2648, + 2649, + 2650, + 2651 + ] + } + ], + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 117, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L117" + } + ] + } + } + }, + { + "id": 2652, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 154, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L154" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2652 + ] + } + ], + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2653, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 159, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L159" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2654, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2655, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2656, + "name": "checkedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.icon.checked.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2657, + "name": "checkedHoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.icon.checked.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L177" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2658, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "radiobutton.icon.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 183, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2655, + 2656, + 2657, + 2658 + ] + } + ], + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 159, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L159" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2659, + 2627, + 2653 + ] + } + ], + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2626, + "name": "RadioButtonDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2626 + ] + } + ], + "sources": [ + { + "fileName": "radiobutton/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L1" + } + ] + }, + { + "id": 2663, + "name": "themes/rating", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Rating Design Tokens\n\n[Live Demo](https://www.primeng.org/rating/)" + } + ] + }, + "children": [ + { + "id": 2664, + "name": "RatingDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2675, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2676, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2677, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2664, + "name": "RatingDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2678, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2664, + "name": "RatingDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2677, + 2678 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2665, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2666, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2667, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "rating.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2668, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "rating.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2667, + 2668 + ] + } + ], + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2669, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2670, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2671, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "rating.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2672, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "rating.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2673, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "rating.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2674, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "rating.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2671, + 2672, + 2673, + 2674 + ] + } + ], + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 34, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L34" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2675, + 2665, + 2669 + ] + } + ], + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2664, + "name": "RatingDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2664 + ] + } + ], + "sources": [ + { + "fileName": "rating/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L1" + } + ] + }, + { + "id": 2679, + "name": "themes/ripple", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Ripple Design Tokens\n\n[Live Demo](https://www.primeng.org/ripple/)" + } + ] + }, + "children": [ + { + "id": 2680, + "name": "RippleDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2684, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2685, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2686, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2680, + "name": "RippleDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2687, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2680, + "name": "RippleDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2686, + 2687 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2681, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "ripple/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2682, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2683, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "ripple.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "ripple/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2683 + ] + } + ], + "sources": [ + { + "fileName": "ripple/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2684, + 2681 + ] + } + ], + "sources": [ + { + "fileName": "ripple/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2680, + "name": "RippleDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2680 + ] + } + ], + "sources": [ + { + "fileName": "ripple/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L1" + } + ] + }, + { + "id": 2688, + "name": "themes/scrollpanel", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ScrollPanel Design Tokens\n\n[Live Demo](https://www.primeng.org/scrollpanel/)" + } + ] + }, + "children": [ + { + "id": 2689, + "name": "ScrollPanelDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2705, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2706, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2707, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2689, + "name": "ScrollPanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2708, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2689, + "name": "ScrollPanelDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2707, + 2708 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2690, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2691, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2692, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2692 + ] + } + ], + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2693, + "name": "bar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the bar section" + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2694, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2695, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2696, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2697, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of bar" + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 44, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L44" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2698, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2699, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 50, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L50" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2700, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 56, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L56" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2701, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 62, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L62" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2702, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 68, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2703, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 74, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2699, + 2700, + 2701, + 2702, + 2703 + ] + } + ], + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 44, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L44" + } + ] + } + } + }, + { + "id": 2704, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "scrollpanel.bar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2695, + 2696, + 2697, + 2704 + ] + } + ], + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 28, + "character": 10, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L28" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2705, + 2690, + 2693 + ] + } + ], + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2689, + "name": "ScrollPanelDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2689 + ] + } + ], + "sources": [ + { + "fileName": "scrollpanel/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L1" + } + ] + }, + { + "id": 2709, + "name": "themes/select", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Select Design Tokens\n\n[Live Demo](https://www.primeng.org/select/)" + } + ] + }, + "children": [ + { + "id": 2710, + "name": "SelectDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2782, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2783, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2784, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2710, + "name": "SelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2785, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2710, + "name": "SelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2784, + 2785 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2711, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2712, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2713, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2714, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2715, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2716, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2717, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2718, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2719, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2720, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2721, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2722, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2723, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2724, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2725, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2726, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2727, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2728, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2729, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2730, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2731, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2732, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2733, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2734, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2730, + 2731, + 2732, + 2733, + 2734 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 2735, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2735 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2736, + "name": "dropdown", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dropdown section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 153, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L153" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2737, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2738, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.dropdown.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 159, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2739, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.dropdown.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2738, + 2739 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 153, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L153" + } + ] + } + } + }, + { + "id": 2740, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 170, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L170" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2741, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2742, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 176, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L176" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2743, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 182, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L182" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2744, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 188, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L188" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2745, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2746, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2742, + 2743, + 2744, + 2745, + 2746 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 170, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L170" + } + ] + } + } + }, + { + "id": 2747, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 205, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L205" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2748, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2749, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2750, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 217, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L217" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2751, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Header of list" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 221, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L221" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2752, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2753, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Header padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.list.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 227, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L227" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2753 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 221, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L221" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2749, + 2750, + 2751 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 205, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L205" + } + ] + } + } + }, + { + "id": 2754, + "name": "option", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 233, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L233" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2755, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2756, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 239, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2757, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 245, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L245" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2758, + "name": "selectedFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus background of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.selected.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 251, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L251" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2759, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 257, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L257" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2760, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 263, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L263" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2761, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 269, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L269" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2762, + "name": "selectedFocusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected focus color of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.selected.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 275, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L275" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2763, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 281, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L281" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2764, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of option" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 287, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L287" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 233, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L233" + } + ] + } + } + }, + { + "id": 2765, + "name": "optionGroup", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the option group section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 292, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L292" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2766, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2767, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.group.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 298, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L298" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2768, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.group.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 304, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L304" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2769, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.group.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 310, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L310" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2770, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of option group" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.option.group.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 316, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L316" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2767, + 2768, + 2769, + 2770 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 292, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L292" + } + ] + } + } + }, + { + "id": 2771, + "name": "clearIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the clear icon section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 321, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L321" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2772, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2773, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of clear icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.clear.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 327, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L327" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2773 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 321, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L321" + } + ] + } + } + }, + { + "id": 2774, + "name": "checkmark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the checkmark section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 332, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L332" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2775, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2776, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of checkmark" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.checkmark.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 338, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L338" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2777, + "name": "gutterStart", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter start of checkmark" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.checkmark.gutter.start" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 344, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L344" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2778, + "name": "gutterEnd", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter end of checkmark" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.checkmark.gutter.end" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 350, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L350" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2776, + 2777, + 2778 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 332, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L332" + } + ] + } + } + }, + { + "id": 2779, + "name": "emptyMessage", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the empty message section" + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 355, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L355" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2780, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2781, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of empty message" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "select.empty.message.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 361, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L361" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2781 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 355, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L355" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2782, + 2711, + 2736, + 2740, + 2747, + 2754, + 2765, + 2771, + 2774, + 2779 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2710, + "name": "SelectDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2710 + ] + } + ], + "sources": [ + { + "fileName": "select/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L1" + } + ] + }, + { + "id": 2786, + "name": "themes/selectbutton", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "SelectButton Design Tokens\n\n[Live Demo](https://www.primeng.org/selectbutton/)" + } + ] + }, + "children": [ + { + "id": 2787, + "name": "SelectButtonDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2792, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2793, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2794, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2787, + "name": "SelectButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2795, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2787, + "name": "SelectButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2794, + 2795 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2788, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "selectbutton/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2789, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2790, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "selectbutton.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "selectbutton/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2791, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "selectbutton.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "selectbutton/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2790, + 2791 + ] + } + ], + "sources": [ + { + "fileName": "selectbutton/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2792, + 2788 + ] + } + ], + "sources": [ + { + "fileName": "selectbutton/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2787, + "name": "SelectButtonDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2787 + ] + } + ], + "sources": [ + { + "fileName": "selectbutton/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L1" + } + ] + }, + { + "id": 2796, + "name": "themes/skeleton", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Skeleton Design Tokens\n\n[Live Demo](https://www.primeng.org/skeleton/)" + } + ] + }, + "children": [ + { + "id": 2797, + "name": "SkeletonDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2803, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2804, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2805, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2797, + "name": "SkeletonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2806, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2797, + "name": "SkeletonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2805, + 2806 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2798, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2799, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2800, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "skeleton.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2801, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "skeleton.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2802, + "name": "animationBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Animation background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "skeleton.animation.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2800, + 2801, + 2802 + ] + } + ], + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2803, + 2798 + ] + } + ], + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2797, + "name": "SkeletonDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2797 + ] + } + ], + "sources": [ + { + "fileName": "skeleton/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L1" + } + ] + }, + { + "id": 2807, + "name": "themes/slider", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Slider Design Tokens\n\n[Live Demo](https://www.primeng.org/slider/)" + } + ] + }, + "children": [ + { + "id": 2808, + "name": "SliderDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2842, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2843, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2844, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2808, + "name": "SliderDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2845, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2808, + "name": "SliderDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2844, + 2845 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2809, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2810, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2811, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2811 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2812, + "name": "track", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the track section" + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2813, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2814, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of track" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.track.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2815, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of track" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.track.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2816, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of track" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.track.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2814, + 2815, + 2816 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 28, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 2817, + "name": "range", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the range section" + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2818, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2819, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of range" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.range.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2819 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 51, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 2820, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the handle section" + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 62, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L62" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2821, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2822, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 68, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L68" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2823, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 74, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L74" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2824, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2825, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2826, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2827, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content of handle" + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 96, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L96" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2828, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2829, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content border radius of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.content.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 102, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L102" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2830, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content hover background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.content.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 108, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L108" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2831, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content width of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.content.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 114, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2832, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content height of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.content.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 120, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L120" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2833, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content shadow of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.content.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 126, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2829, + 2830, + 2831, + 2832, + 2833 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 96, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L96" + } + ] + } + } + }, + { + "id": 2834, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of handle" + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 131, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L131" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2835, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2836, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 137, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L137" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2837, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 143, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L143" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2838, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 149, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L149" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2839, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 155, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L155" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2840, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 161, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2836, + 2837, + 2838, + 2839, + 2840 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 131, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L131" + } + ] + } + } + }, + { + "id": 2841, + "name": "contentBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "slider.handle.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 168, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L168" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2834, + 2841 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 62, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L62" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2842, + 2809, + 2812, + 2817, + 2820 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2808, + "name": "SliderDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2808 + ] + } + ], + "sources": [ + { + "fileName": "slider/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L1" + } + ] + }, + { + "id": 2846, + "name": "themes/speeddial", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "SpeedDial Design Tokens\n\n[Live Demo](https://www.primeng.org/speeddial/)" + } + ] + }, + "children": [ + { + "id": 2847, + "name": "SpeedDialDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2852, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2853, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2854, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2847, + "name": "SpeedDialDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2855, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2847, + "name": "SpeedDialDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2854, + 2855 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2848, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "speeddial/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2849, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2850, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "speeddial.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "speeddial/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2851, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "speeddial.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "speeddial/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2850, + 2851 + ] + } + ], + "sources": [ + { + "fileName": "speeddial/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2852, + 2848 + ] + } + ], + "sources": [ + { + "fileName": "speeddial/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2847, + "name": "SpeedDialDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2847 + ] + } + ], + "sources": [ + { + "fileName": "speeddial/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L1" + } + ] + }, + { + "id": 2856, + "name": "themes/splitbutton", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "SplitButton Design Tokens\n\n[Live Demo](https://www.primeng.org/splitbutton/)" + } + ] + }, + "children": [ + { + "id": 2857, + "name": "SplitButtonDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2863, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2864, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2865, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2857, + "name": "SplitButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2866, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2857, + "name": "SplitButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2865, + 2866 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2858, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2859, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2860, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitbutton.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2861, + "name": "roundedBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Rounded border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitbutton.rounded.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2862, + "name": "raisedShadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Raised shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitbutton.raised.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2860, + 2861, + 2862 + ] + } + ], + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2863, + 2858 + ] + } + ], + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2857, + "name": "SplitButtonDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2857 + ] + } + ], + "sources": [ + { + "fileName": "splitbutton/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L1" + } + ] + }, + { + "id": 2867, + "name": "themes/splitter", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Splitter Design Tokens\n\n[Live Demo](https://www.primeng.org/splitter/)" + } + ] + }, + "children": [ + { + "id": 2868, + "name": "SplitterDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2890, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2891, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2892, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2868, + "name": "SplitterDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2893, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2868, + "name": "SplitterDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2892, + 2893 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2869, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2870, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2871, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2872, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2873, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2874, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2871, + 2872, + 2873, + 2874 + ] + } + ], + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2875, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the gutter section" + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2876, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2877, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of gutter" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.gutter.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2877 + ] + } + ], + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 46, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 2878, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the handle section" + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 57, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L57" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2879, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2880, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2881, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2882, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2883, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of handle" + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 79, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L79" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2884, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2885, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 85, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L85" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2886, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 91, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L91" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2887, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 97, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2888, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 103, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2889, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "splitter.handle.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 109, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2885, + 2886, + 2887, + 2888, + 2889 + ] + } + ], + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 79, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L79" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2880, + 2881, + 2882, + 2883 + ] + } + ], + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 57, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L57" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2890, + 2869, + 2875, + 2878 + ] + } + ], + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2868, + "name": "SplitterDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2868 + ] + } + ], + "sources": [ + { + "fileName": "splitter/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L1" + } + ] + }, + { + "id": 2894, + "name": "themes/stepper", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Stepper Design Tokens\n\n[Live Demo](https://www.primeng.org/stepper/)" + } + ] + }, + "children": [ + { + "id": 2895, + "name": "StepperDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2947, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2948, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2949, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2895, + "name": "StepperDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2950, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2895, + "name": "StepperDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2949, + 2950 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2896, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2897, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2898, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2898 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2899, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2900, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2901, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.separator.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2902, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.separator.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2903, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.separator.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2904, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.separator.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2901, + 2902, + 2903, + 2904 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 28, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 2905, + "name": "step", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the step section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 57, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L57" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2906, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2907, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of step" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2908, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of step" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2907, + 2908 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 57, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L57" + } + ] + } + } + }, + { + "id": 2909, + "name": "stepHeader", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the step header section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 74, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2910, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2911, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2912, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2913, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of step header" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 90, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L90" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2914, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2915, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 96, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L96" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2916, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 102, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L102" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2917, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 108, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L108" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2918, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 114, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2919, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 120, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L120" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2915, + 2916, + 2917, + 2918, + 2919 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 90, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L90" + } + ] + } + } + }, + { + "id": 2920, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of step header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.header.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L127" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2911, + 2912, + 2913, + 2920 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 74, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 2921, + "name": "stepTitle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the step title section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 132, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L132" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2922, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2923, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of step title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.title.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 138, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2924, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of step title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.title.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 144, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L144" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2925, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of step title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 150, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L150" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2923, + 2924, + 2925 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 132, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L132" + } + ] + } + } + }, + { + "id": 2926, + "name": "stepNumber", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the step number section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 155, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L155" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2927, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2928, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 161, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L161" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2929, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 167, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L167" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2930, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 173, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L173" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2931, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 179, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L179" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2932, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 185, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L185" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2933, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 191, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L191" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2934, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 197, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L197" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2935, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 203, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L203" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2936, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 209, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L209" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2937, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 215, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L215" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2938, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of step number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.step.number.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 221, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L221" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 155, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L155" + } + ] + } + } + }, + { + "id": 2939, + "name": "steppanels", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the steppanels section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 226, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L226" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2940, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2941, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of steppanels" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.steppanels.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 232, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L232" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2941 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 226, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L226" + } + ] + } + } + }, + { + "id": 2942, + "name": "steppanel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the steppanel section" + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 237, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L237" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2943, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2944, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of steppanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.steppanel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 243, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L243" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2945, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of steppanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.steppanel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 249, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L249" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2946, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of steppanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "stepper.steppanel.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 255, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L255" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2944, + 2945, + 2946 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 237, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L237" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2947, + 2896, + 2899, + 2905, + 2909, + 2921, + 2926, + 2939, + 2942 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2895, + "name": "StepperDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2895 + ] + } + ], + "sources": [ + { + "fileName": "stepper/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L1" + } + ] + }, + { + "id": 2951, + "name": "themes/steps", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Steps Design Tokens\n\n[Live Demo](https://www.primeng.org/steps/)" + } + ] + }, + "children": [ + { + "id": 2952, + "name": "StepsDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 2988, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2989, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2990, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2952, + "name": "StepsDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 2991, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2952, + "name": "StepsDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2990, + 2991 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2953, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2954, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2955, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2955 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2956, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2957, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2958, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.separator.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2958 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 28, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 2959, + "name": "itemLink", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item link section" + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 39, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L39" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2960, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2961, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 45, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L45" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2962, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of item link" + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 49, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L49" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2963, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2964, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 55, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L55" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2965, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 61, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L61" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2966, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 67, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L67" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2967, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 73, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L73" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2968, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 79, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L79" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2964, + 2965, + 2966, + 2967, + 2968 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 49, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L49" + } + ] + } + } + }, + { + "id": 2969, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item link" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.link.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2961, + 2962, + 2969 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 39, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L39" + } + ] + } + } + }, + { + "id": 2970, + "name": "itemLabel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item label section" + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 91, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L91" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2971, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2972, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.label.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 97, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2973, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.label.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2974, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of item label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.label.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2972, + 2973, + 2974 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 91, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L91" + } + ] + } + } + }, + { + "id": 2975, + "name": "itemNumber", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item number section" + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 114, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L114" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2976, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2977, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 120, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L120" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2978, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2979, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 132, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2980, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 138, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L138" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2981, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 144, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L144" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2982, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 150, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L150" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2983, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 156, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L156" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2984, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 162, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L162" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2985, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 168, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L168" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2986, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 174, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L174" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2987, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of item number" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "steps.item.number.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 180, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L180" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 114, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L114" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2988, + 2953, + 2956, + 2959, + 2970, + 2975 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2952, + "name": "StepsDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2952 + ] + } + ], + "sources": [ + { + "fileName": "steps/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L1" + } + ] + }, + { + "id": 2992, + "name": "themes/tabmenu", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tabmenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tabmenu/)" + } + ] + }, + "children": [ + { + "id": 2993, + "name": "TabmenuDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3035, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3036, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3037, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2993, + "name": "TabmenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3038, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 2993, + "name": "TabmenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3037, + 3038 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 2994, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2995, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2996, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2996 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 2997, + "name": "tablist", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tablist section" + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2998, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2999, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of tablist" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.tablist.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3000, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of tablist" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.tablist.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3001, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of tablist" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.tablist.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 2999, + 3000, + 3001 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 3002, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3003, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3004, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3005, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3006, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3007, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3008, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3009, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3010, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3011, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3012, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3013, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3014, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3015, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3016, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 129, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3017, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 135, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3018, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of item" + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L139" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3019, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3020, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3021, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3022, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 157, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3023, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 163, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3024, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 169, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3020, + 3021, + 3022, + 3023, + 3024 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 139, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L139" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 51, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 3025, + "name": "itemIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item icon section" + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 175, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L175" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3026, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3027, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3028, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of item icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 187, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3029, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.item.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 193, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3027, + 3028, + 3029 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 175, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L175" + } + ] + } + } + }, + { + "id": 3030, + "name": "activeBar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the active bar section" + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 198, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L198" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3031, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3032, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of active bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.active.bar.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 204, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L204" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3033, + "name": "bottom", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bottom of active bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.active.bar.bottom" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 210, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L210" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3034, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of active bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabmenu.active.bar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 216, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L216" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3032, + 3033, + 3034 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 198, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L198" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3035, + 2994, + 2997, + 3002, + 3025, + 3030 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 2993, + "name": "TabmenuDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2993 + ] + } + ], + "sources": [ + { + "fileName": "tabmenu/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L1" + } + ] + }, + { + "id": 3039, + "name": "themes/tabs", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tabs Design Tokens\n\n[Live Demo](https://www.primeng.org/tabs/)" + } + ] + }, + "children": [ + { + "id": 3040, + "name": "TabsDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3103, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3104, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3105, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3040, + "name": "TabsDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3106, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3040, + "name": "TabsDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3105, + 3106 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3041, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3042, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3043, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3043 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3044, + "name": "tablist", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tablist section" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3045, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3046, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of tablist" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tablist.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3047, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of tablist" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tablist.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3048, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of tablist" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tablist.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3046, + 3047, + 3048 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 3049, + "name": "tab", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tab section" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 51, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3050, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3051, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3052, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3053, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3054, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3055, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3056, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3057, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3058, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3059, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3060, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3061, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3062, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3063, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 129, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3064, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 135, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3065, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of tab" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 139, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L139" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3066, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3067, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3068, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3069, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 157, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3070, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 163, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3071, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tab.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 169, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3067, + 3068, + 3069, + 3070, + 3071 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 139, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L139" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 51, + "character": 10, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 3072, + "name": "tabpanel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tabpanel section" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 175, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L175" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3073, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3074, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3075, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 187, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3076, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 193, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3077, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of tabpanel" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 197, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L197" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3078, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3079, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 203, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L203" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3080, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 209, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L209" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3081, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 215, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L215" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3082, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 221, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L221" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3083, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of tabpanel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.tabpanel.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 227, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L227" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3079, + 3080, + 3081, + 3082, + 3083 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 197, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L197" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3074, + 3075, + 3076, + 3077 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 175, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L175" + } + ] + } + } + }, + { + "id": 3084, + "name": "navButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the nav button section" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 233, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L233" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3085, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3086, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 239, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3087, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 245, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L245" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3088, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 251, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L251" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3089, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 257, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L257" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3090, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of nav button" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 261, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L261" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3091, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3092, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 267, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L267" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3093, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 273, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L273" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3094, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 279, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L279" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3095, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 285, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L285" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3096, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 291, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L291" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3092, + 3093, + 3094, + 3095, + 3096 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 261, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L261" + } + ] + } + } + }, + { + "id": 3097, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.nav.button.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 298, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L298" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3086, + 3087, + 3088, + 3089, + 3090, + 3097 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 233, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L233" + } + ] + } + } + }, + { + "id": 3098, + "name": "activeBar", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the active bar section" + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 303, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L303" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3099, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3100, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of active bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.active.bar.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 309, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L309" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3101, + "name": "bottom", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Bottom of active bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.active.bar.bottom" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 315, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L315" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3102, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of active bar" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabs.active.bar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 321, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L321" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3100, + 3101, + 3102 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 303, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L303" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3103, + 3041, + 3044, + 3049, + 3072, + 3084, + 3098 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3040, + "name": "TabsDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3040 + ] + } + ], + "sources": [ + { + "fileName": "tabs/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L1" + } + ] + }, + { + "id": 3107, + "name": "themes/tabview", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "TabView Design Tokens\n\n[Live Demo](https://www.primeng.org/tabview/)" + } + ] + }, + "children": [ + { + "id": 3108, + "name": "TabViewDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3133, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3134, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3135, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3108, + "name": "TabViewDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3136, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3108, + "name": "TabViewDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3135, + 3136 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3109, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3110, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3111, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3111 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3112, + "name": "tabList", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tab list section" + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3113, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3114, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of tab list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.list.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 34, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L34" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3115, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of tab list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.list.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3114, + 3115 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 28, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 3116, + "name": "tab", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tab section" + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 45, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L45" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3117, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3118, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 51, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L51" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3119, + "name": "activeBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active border color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.active.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 57, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3120, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3121, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3122, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of tab" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3118, + 3119, + 3120, + 3121, + 3122 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 45, + "character": 10, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L45" + } + ] + } + } + }, + { + "id": 3123, + "name": "tabPanel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tab panel section" + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 80, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L80" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3124, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3125, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of tab panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.panel.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 86, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L86" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3126, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of tab panel" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.tab.panel.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3125, + 3126 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 80, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L80" + } + ] + } + } + }, + { + "id": 3127, + "name": "navButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the nav button section" + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 97, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L97" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3128, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3129, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.nav.button.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 103, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L103" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3130, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.nav.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3131, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.nav.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3132, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of nav button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tabview.nav.button.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 121, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L121" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3129, + 3130, + 3131, + 3132 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 97, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L97" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3133, + 3109, + 3112, + 3116, + 3123, + 3127 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3108, + "name": "TabViewDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3108 + ] + } + ], + "sources": [ + { + "fileName": "tabview/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L1" + } + ] + }, + { + "id": 3137, + "name": "themes/tag", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tag Design Tokens\n\n[Live Demo](https://www.primeng.org/tag/)" + } + ] + }, + "children": [ + { + "id": 3138, + "name": "TagDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3178, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3179, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3180, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3138, + "name": "TagDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3181, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3138, + "name": "TagDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3180, + 3181 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3139, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3140, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3141, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3142, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3143, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3144, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3145, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3146, + "name": "roundedBorderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Rounded border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.rounded.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3141, + 3142, + 3143, + 3144, + 3145, + 3146 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3147, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3148, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3149, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3149 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 58, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 3150, + "name": "primary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the primary section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3151, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3152, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of primary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.primary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3153, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of primary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.primary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3152, + 3153 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 69, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 3154, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the secondary section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 86, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L86" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3155, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3156, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.secondary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 92, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L92" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3157, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 98, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L98" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3156, + 3157 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 86, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L86" + } + ] + } + } + }, + { + "id": 3158, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the success section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 103, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L103" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3159, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3160, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.success.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 109, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L109" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3161, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 115, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3160, + 3161 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 103, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L103" + } + ] + } + } + }, + { + "id": 3162, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the info section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 120, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L120" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3163, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3164, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.info.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 126, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L126" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3165, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 132, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L132" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3164, + 3165 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 120, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L120" + } + ] + } + } + }, + { + "id": 3166, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the warn section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 137, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L137" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3167, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3168, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.warn.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 143, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L143" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3169, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 149, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L149" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3168, + 3169 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 137, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L137" + } + ] + } + } + }, + { + "id": 3170, + "name": "danger", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the danger section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 154, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L154" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3171, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3172, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of danger" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.danger.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 160, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L160" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3173, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of danger" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.danger.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 166, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L166" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3172, + 3173 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 154, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L154" + } + ] + } + } + }, + { + "id": 3174, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the contrast section" + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 171, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L171" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3175, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3176, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.contrast.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L177" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3177, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tag.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 183, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3176, + 3177 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 171, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L171" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3178, + 3139, + 3147, + 3150, + 3154, + 3158, + 3162, + 3166, + 3170, + 3174 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3138, + "name": "TagDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3138 + ] + } + ], + "sources": [ + { + "fileName": "tag/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L1" + } + ] + }, + { + "id": 3182, + "name": "themes/terminal", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Terminal Design Tokens\n\n[Live Demo](https://www.primeng.org/terminal/)" + } + ] + }, + "children": [ + { + "id": 3183, + "name": "TerminalDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3198, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3199, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3200, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3183, + "name": "TerminalDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3201, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3183, + "name": "TerminalDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3200, + 3201 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3184, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3185, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3186, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3187, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3188, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3189, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3190, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3191, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3186, + 3187, + 3188, + 3189, + 3190, + 3191 + ] + } + ], + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3192, + "name": "prompt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the prompt section" + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3193, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3194, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of prompt" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.prompt.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3194 + ] + } + ], + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 58, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 3195, + "name": "commandResponse", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the command response section" + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3196, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3197, + "name": "margin", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Margin of command response" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "terminal.command.response.margin" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3197 + ] + } + ], + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 69, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L69" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3198, + 3184, + 3192, + 3195 + ] + } + ], + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3183, + "name": "TerminalDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3183 + ] + } + ], + "sources": [ + { + "fileName": "terminal/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L1" + } + ] + }, + { + "id": 3202, + "name": "themes/textarea", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Textarea Design Tokens\n\n[Live Demo](https://www.primeng.org/textarea/)" + } + ] + }, + "children": [ + { + "id": 3203, + "name": "TextareaDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3229, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3230, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3231, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3203, + "name": "TextareaDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3232, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3203, + "name": "TextareaDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3231, + 3232 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3204, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3205, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3206, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3207, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3208, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3209, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3210, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3211, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3212, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3213, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3214, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3215, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3216, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3217, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3218, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3219, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3220, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3221, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3222, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3223, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3224, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3225, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3226, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3227, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3223, + 3224, + 3225, + 3226, + 3227 + ] + } + ], + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 3228, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "textarea.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3228 + ] + } + ], + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3229, + 3204 + ] + } + ], + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3203, + "name": "TextareaDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3203 + ] + } + ], + "sources": [ + { + "fileName": "textarea/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L1" + } + ] + }, + { + "id": 3233, + "name": "themes/tieredmenu", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "TieredMenu Design Tokens\n\n[Live Demo](https://www.primeng.org/tieredmenu/)" + } + ] + }, + "children": [ + { + "id": 3234, + "name": "TieredMenuDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3277, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3278, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3279, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3234, + "name": "TieredMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3280, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3234, + "name": "TieredMenuDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3279, + 3280 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3235, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3236, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3237, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3238, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3239, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3240, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3241, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3242, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3237, + 3238, + 3239, + 3240, + 3241, + 3242 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3243, + "name": "list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the list section" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3244, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3245, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.list.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3246, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of list" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.list.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3245, + 3246 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 58, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 3247, + "name": "item", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the item section" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 75, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L75" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3248, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3249, + "name": "focusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3250, + "name": "activeBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active background of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.active.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3251, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3252, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3253, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3254, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3255, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3256, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3257, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon of item" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L127" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3258, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3259, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 133, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3260, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon focus color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 139, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3261, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Icon active color of item" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.item.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3259, + 3260, + 3261 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 127, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L127" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256, + 3257 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 75, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L75" + } + ] + } + } + }, + { + "id": 3262, + "name": "submenuLabel", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu label section" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 151, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L151" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3263, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3264, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.label.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 157, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3265, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.label.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 163, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L163" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3266, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.label.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3267, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu label" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.label.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3264, + 3265, + 3266, + 3267 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 151, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L151" + } + ] + } + } + }, + { + "id": 3268, + "name": "submenuIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the submenu icon section" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 180, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L180" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3269, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3270, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 186, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L186" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3271, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 192, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L192" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3272, + "name": "focusColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.icon.focus.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 198, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L198" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3273, + "name": "activeColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Active color of submenu icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.submenu.icon.active.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 204, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L204" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3270, + 3271, + 3272, + 3273 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 180, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L180" + } + ] + } + } + }, + { + "id": 3274, + "name": "separator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the separator section" + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 209, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L209" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3275, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3276, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of separator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tieredmenu.separator.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 215, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L215" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3276 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 209, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L209" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3277, + 3235, + 3243, + 3247, + 3262, + 3268, + 3274 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3234, + "name": "TieredMenuDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3234 + ] + } + ], + "sources": [ + { + "fileName": "tieredmenu/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L1" + } + ] + }, + { + "id": 3281, + "name": "themes/timeline", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Timeline Design Tokens\n\n[Live Demo](https://www.primeng.org/timeline/)" + } + ] + }, + "children": [ + { + "id": 3282, + "name": "TimelineDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3313, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3314, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3315, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3282, + "name": "TimelineDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3316, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3282, + "name": "TimelineDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3315, + 3316 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3283, + "name": "event", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the event section" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3284, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3285, + "name": "minHeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Min height of event" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.min.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3285 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 17, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3286, + "name": "horizontal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the horizontal section" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 28, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L28" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3287, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3288, + "name": "eventContent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Event content of horizontal" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 32, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L32" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3289, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3290, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Event content padding of horizontal" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.horizontal.event.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 38, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L38" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3290 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 32, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L32" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3288 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 28, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L28" + } + ] + } + } + }, + { + "id": 3291, + "name": "vertical", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the vertical section" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 44, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L44" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3292, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3293, + "name": "eventContent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Event content of vertical" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 48, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L48" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3294, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3295, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Event content padding of vertical" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.vertical.event.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 54, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L54" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3295 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 48, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L48" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3293 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 44, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L44" + } + ] + } + } + }, + { + "id": 3296, + "name": "eventMarker", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the event marker section" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 60, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L60" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3297, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3298, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 66, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L66" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3299, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 72, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L72" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3300, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 78, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L78" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3301, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 84, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L84" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3302, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 90, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L90" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3303, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content of event marker" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L94" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3304, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3305, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content border radius of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.content.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 100, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L100" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3306, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content size of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.content.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 106, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L106" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3307, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content background of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.content.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 112, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L112" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3308, + "name": "insetShadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Content inset shadow of event marker" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.marker.content.inset.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 118, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L118" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3305, + 3306, + 3307, + 3308 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 94, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L94" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3298, + 3299, + 3300, + 3301, + 3302, + 3303 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 60, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L60" + } + ] + } + } + }, + { + "id": 3309, + "name": "eventConnector", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the event connector section" + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 124, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L124" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3310, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3311, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of event connector" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.connector.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 130, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L130" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3312, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of event connector" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "timeline.event.connector.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 136, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L136" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3311, + 3312 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 124, + "character": 21, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L124" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3313, + 3283, + 3286, + 3291, + 3296, + 3309 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3282, + "name": "TimelineDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3282 + ] + } + ], + "sources": [ + { + "fileName": "timeline/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L1" + } + ] + }, + { + "id": 3317, + "name": "themes/toast", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toast Design Tokens\n\n[Live Demo](https://www.primeng.org/toast/)" + } + ] + }, + "children": [ + { + "id": 3318, + "name": "ToastDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3447, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3448, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3449, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3318, + "name": "ToastDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3450, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3318, + "name": "ToastDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3449, + 3450 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3319, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3320, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3321, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3322, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3323, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3324, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3321, + 3322, + 3323, + 3324 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3325, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 46, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L46" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3326, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3327, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3327 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 46, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L46" + } + ] + } + } + }, + { + "id": 3328, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 57, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L57" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3329, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3330, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.content.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 63, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3331, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.content.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3330, + 3331 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 57, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L57" + } + ] + } + } + }, + { + "id": 3332, + "name": "text", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the text section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 74, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L74" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3333, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3334, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of text" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.text.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 80, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L80" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3334 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 74, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L74" + } + ] + } + } + }, + { + "id": 3335, + "name": "summary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the summary section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 85, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L85" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3336, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3337, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of summary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.summary.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 91, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L91" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3338, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of summary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.summary.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 97, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L97" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3337, + 3338 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 85, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L85" + } + ] + } + } + }, + { + "id": 3339, + "name": "detail", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the detail section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 102, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L102" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3340, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3341, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of detail" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.detail.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 108, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L108" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3342, + "name": "fontSize", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font size of detail" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.detail.font.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 114, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3341, + 3342 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 102, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L102" + } + ] + } + } + }, + { + "id": 3343, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the close button section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 119, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L119" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3344, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3345, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.button.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 125, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L125" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3346, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.button.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 131, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L131" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3347, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 137, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L137" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3348, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of close button" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 141, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L141" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3349, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3350, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 147, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L147" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3351, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 153, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L153" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3352, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of close button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 159, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3350, + 3351, + 3352 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 141, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L141" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3345, + 3346, + 3347, + 3348 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 119, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L119" + } + ] + } + } + }, + { + "id": 3353, + "name": "closeIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the close icon section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 165, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L165" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3354, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3355, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of close icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.close.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3355 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 165, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L165" + } + ] + } + } + }, + { + "id": 3356, + "name": "blur", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the blur section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 176, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L176" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3357, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3358, + "name": "0", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "0 of blur" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.blur.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 182, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L182" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3359, + "name": "1", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "1 of blur" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.blur.1" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 188, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L188" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3360, + "name": "2", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "2 of blur" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.blur.2" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3361, + "name": "3", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "3 of blur" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.blur.3" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3362, + "name": "4", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "4 of blur" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.blur.4" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 206, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L206" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3358, + 3359, + 3360, + 3361, + 3362 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 176, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L176" + } + ] + } + } + }, + { + "id": 3363, + "name": "info", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the info section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 211, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L211" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3364, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3365, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 217, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L217" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3366, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 223, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L223" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3367, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 229, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L229" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3368, + "name": "detailColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detail color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.detail.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 235, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L235" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3369, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 241, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L241" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3370, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of info" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 245, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L245" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3371, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3372, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 251, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L251" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3373, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of info" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 255, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L255" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3374, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3375, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 261, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L261" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3376, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of info" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.info.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 267, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L267" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3375, + 3376 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 255, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L255" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3372, + 3373 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 245, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L245" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3365, + 3366, + 3367, + 3368, + 3369, + 3370 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 211, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L211" + } + ] + } + } + }, + { + "id": 3377, + "name": "success", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the success section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 274, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L274" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3378, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3379, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 280, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L280" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3380, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 286, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L286" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3381, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 292, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L292" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3382, + "name": "detailColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detail color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.detail.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 298, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L298" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3383, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 304, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L304" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3384, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of success" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 308, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L308" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3385, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3386, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 314, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L314" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3387, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of success" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 318, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L318" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3388, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3389, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 324, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L324" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3390, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of success" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.success.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 330, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L330" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3389, + 3390 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 318, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L318" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3386, + 3387 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 308, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L308" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3379, + 3380, + 3381, + 3382, + 3383, + 3384 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 274, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L274" + } + ] + } + } + }, + { + "id": 3391, + "name": "warn", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the warn section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 337, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L337" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3392, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3393, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 343, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L343" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3394, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 349, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L349" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3395, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 355, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L355" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3396, + "name": "detailColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detail color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.detail.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 361, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L361" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3397, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 367, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L367" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3398, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of warn" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 371, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L371" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3399, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3400, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 377, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L377" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3401, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of warn" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 381, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L381" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3402, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3403, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 387, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L387" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3404, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of warn" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.warn.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 393, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L393" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3403, + 3404 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 381, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L381" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3400, + 3401 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 371, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L371" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3393, + 3394, + 3395, + 3396, + 3397, + 3398 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 337, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L337" + } + ] + } + } + }, + { + "id": 3405, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the error section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 400, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L400" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3406, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3407, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 406, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L406" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3408, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 412, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L412" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3409, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 418, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L418" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3410, + "name": "detailColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detail color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.detail.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 424, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L424" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3411, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 430, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L430" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3412, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of error" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 434, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L434" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3413, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3414, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 440, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L440" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3415, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of error" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 444, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L444" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3416, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3417, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 450, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L450" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3418, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of error" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.error.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 456, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L456" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3417, + 3418 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 444, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L444" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3414, + 3415 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 434, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L434" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3407, + 3408, + 3409, + 3410, + 3411, + 3412 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 400, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L400" + } + ] + } + } + }, + { + "id": 3419, + "name": "secondary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the secondary section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 463, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L463" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3420, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3421, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 469, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L469" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3422, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 475, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L475" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3423, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 481, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L481" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3424, + "name": "detailColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detail color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.detail.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 487, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L487" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3425, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 493, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L493" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3426, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of secondary" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 497, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L497" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3427, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3428, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 503, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L503" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3429, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of secondary" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 507, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L507" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3430, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3431, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 513, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L513" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3432, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of secondary" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.secondary.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 519, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L519" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3431, + 3432 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 507, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L507" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3428, + 3429 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 497, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L497" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3421, + 3422, + 3423, + 3424, + 3425, + 3426 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 463, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L463" + } + ] + } + } + }, + { + "id": 3433, + "name": "contrast", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the contrast section" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 526, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L526" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3434, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3435, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 532, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L532" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3436, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 538, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L538" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3437, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 544, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L544" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3438, + "name": "detailColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Detail color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.detail.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 550, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L550" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3439, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 556, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L556" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3440, + "name": "closeButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button of contrast" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 560, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L560" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3441, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3442, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button hover background of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.close.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 566, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L566" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3443, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring of contrast" + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 570, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L570" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3444, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3445, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring color of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.close.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 576, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L576" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3446, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Close button focus ring shadow of contrast" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toast.contrast.close.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 582, + "character": 16, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L582" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3445, + 3446 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 570, + "character": 24, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L570" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3442, + 3443 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 560, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L560" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3435, + 3436, + 3437, + 3438, + 3439, + 3440 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 526, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L526" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3447, + 3319, + 3325, + 3328, + 3332, + 3335, + 3339, + 3343, + 3353, + 3356, + 3363, + 3377, + 3391, + 3405, + 3419, + 3433 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3318, + "name": "ToastDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3318 + ] + } + ], + "sources": [ + { + "fileName": "toast/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L1" + } + ] + }, + { + "id": 3451, + "name": "themes/togglebutton", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ToggleButton Design Tokens\n\n[Live Demo](https://www.primeng.org/togglebutton/)" + } + ] + }, + "children": [ + { + "id": 3452, + "name": "ToggleButtonDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3491, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3492, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3493, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3452, + "name": "ToggleButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3494, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3452, + "name": "ToggleButtonDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3493, + 3494 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3453, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3454, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3455, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3456, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3457, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3458, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3459, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3460, + "name": "disabledBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.disabled.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3461, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3462, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3463, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 69, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3464, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3465, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 75, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3466, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 81, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3467, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 87, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3468, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 93, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3469, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 99, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3465, + 3466, + 3467, + 3468, + 3469 + ] + } + ], + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 69, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 3470, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 106, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L106" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3471, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 112, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L112" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3472, + "name": "checkedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.checked.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 118, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L118" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3473, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 124, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L124" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3474, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 130, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L130" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3475, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 136, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L136" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3476, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 142, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L142" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3477, + "name": "checkedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.checked.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3478, + "name": "checkedBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.checked.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 154, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L154" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478 + ] + } + ], + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3479, + "name": "icon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the icon section" + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 159, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L159" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3480, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3481, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.icon.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3482, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3483, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L177" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3484, + "name": "checkedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked color of icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.icon.checked.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 183, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3481, + 3482, + 3483, + 3484 + ] + } + ], + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 159, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L159" + } + ] + } + } + }, + { + "id": 3485, + "name": "content", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the content section" + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 188, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L188" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3486, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3487, + "name": "left", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Left of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.content.left" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3488, + "name": "top", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Top of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.content.top" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3489, + "name": "checkedShadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked shadow of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.content.checked.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 206, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L206" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3490, + "name": "checkedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked background of content" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "togglebutton.content.checked.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 212, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L212" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3487, + 3488, + 3489, + 3490 + ] + } + ], + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 188, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L188" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3491, + 3453, + 3479, + 3485 + ] + } + ], + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3452, + "name": "ToggleButtonDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3452 + ] + } + ], + "sources": [ + { + "fileName": "togglebutton/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L1" + } + ] + }, + { + "id": 3495, + "name": "themes/toggleswitch", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ToggleSwitch Design Tokens\n\n[Live Demo](https://www.primeng.org/toggleswitch/)" + } + ] + }, + "children": [ + { + "id": 3496, + "name": "ToggleSwitchDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3533, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3534, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3535, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3496, + "name": "ToggleSwitchDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3536, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3496, + "name": "ToggleSwitchDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3535, + 3536 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3497, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3498, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3499, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3500, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Height of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.height" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3501, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3502, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3503, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3504, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 51, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L51" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3505, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3506, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 57, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L57" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3507, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 63, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L63" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3508, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 69, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L69" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3509, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 75, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3510, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 81, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3506, + 3507, + 3508, + 3509, + 3510 + ] + } + ], + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 51, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L51" + } + ] + } + } + }, + { + "id": 3511, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3512, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L94" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3513, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 100, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L100" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3514, + "name": "checkedBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.checked.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 106, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L106" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3515, + "name": "checkedHoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.checked.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 112, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L112" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3516, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 118, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L118" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3517, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 124, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L124" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3518, + "name": "slideDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Slide duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.slide.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 130, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L130" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3519, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 136, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L136" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3520, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 142, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L142" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3521, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3522, + "name": "checkedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.checked.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 154, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L154" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3523, + "name": "checkedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.checked.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 160, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L160" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523 + ] + } + ], + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3524, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the handle section" + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 165, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L165" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3525, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3526, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 171, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L171" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3527, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 177, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L177" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3528, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 183, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L183" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3529, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 189, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L189" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3530, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 195, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L195" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3531, + "name": "checkedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.checked.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 201, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L201" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3532, + "name": "checkedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Checked hover background of handle" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toggleswitch.handle.checked.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 207, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L207" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532 + ] + } + ], + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 165, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L165" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3533, + 3497, + 3524 + ] + } + ], + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3496, + "name": "ToggleSwitchDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3496 + ] + } + ], + "sources": [ + { + "fileName": "toggleswitch/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L1" + } + ] + }, + { + "id": 3537, + "name": "themes/toolbar", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Toolbar Design Tokens\n\n[Live Demo](https://www.primeng.org/toolbar/)" + } + ] + }, + "children": [ + { + "id": 3538, + "name": "ToolbarDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3547, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3548, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3549, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3538, + "name": "ToolbarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3550, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3538, + "name": "ToolbarDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3549, + 3550 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3539, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3540, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3541, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toolbar.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3542, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toolbar.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3543, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toolbar.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3544, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toolbar.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3545, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toolbar.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3546, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "toolbar.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3541, + 3542, + 3543, + 3544, + 3545, + 3546 + ] + } + ], + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3547, + 3539 + ] + } + ], + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3538, + "name": "ToolbarDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3538 + ] + } + ], + "sources": [ + { + "fileName": "toolbar/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L1" + } + ] + }, + { + "id": 3551, + "name": "themes/tooltip", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tooltip Design Tokens\n\n[Live Demo](https://www.primeng.org/tooltip/)" + } + ] + }, + "children": [ + { + "id": 3552, + "name": "TooltipDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3562, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3563, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3564, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3552, + "name": "TooltipDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3565, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3552, + "name": "TooltipDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3564, + 3565 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3553, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3554, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3555, + "name": "maxWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Max width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.max.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3556, + "name": "gutter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gutter of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.gutter" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3557, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3558, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3559, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3560, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3561, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tooltip.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561 + ] + } + ], + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L17" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3562, + 3553 + ] + } + ], + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3552, + "name": "TooltipDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3552 + ] + } + ], + "sources": [ + { + "fileName": "tooltip/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L1" + } + ] + }, + { + "id": 3566, + "name": "themes/tree", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tree Design Tokens\n\n[Live Demo](https://www.primeng.org/tree/)" + } + ] + }, + "children": [ + { + "id": 3567, + "name": "TreeDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3617, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3618, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3619, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3567, + "name": "TreeDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3620, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3567, + "name": "TreeDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3619, + 3620 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3568, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3569, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3570, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3571, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3572, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3573, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3574, + "name": "indent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Indent of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.indent" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3575, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3570, + 3571, + 3572, + 3573, + 3574, + 3575 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3576, + "name": "node", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the node section" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 58, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L58" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3577, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3578, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3579, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 70, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L70" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3580, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 76, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L76" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3581, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 82, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L82" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3582, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 88, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L88" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3583, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 94, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L94" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3584, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 100, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L100" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3585, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of node" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 104, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L104" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3586, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3587, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 110, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L110" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3588, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 116, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L116" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3589, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 122, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L122" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3590, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 128, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L128" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3591, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 134, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L134" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3587, + 3588, + 3589, + 3590, + 3591 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 104, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L104" + } + ] + } + } + }, + { + "id": 3592, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of node" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 141, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3592 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 58, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L58" + } + ] + } + } + }, + { + "id": 3593, + "name": "nodeIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the node icon section" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 146, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L146" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3594, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3595, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of node icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 152, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L152" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3596, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of node icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 158, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L158" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3597, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of node icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.icon.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 164, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L164" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3595, + 3596, + 3597 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 146, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L146" + } + ] + } + } + }, + { + "id": 3598, + "name": "nodeToggleButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the node toggle button section" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 169, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L169" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3599, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3600, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 175, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L175" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3601, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 181, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L181" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3602, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 187, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L187" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3603, + "name": "selectedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected hover background of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.selected.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 193, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L193" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3604, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 199, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L199" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3605, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 205, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L205" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3606, + "name": "selectedHoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected hover color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.selected.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3607, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of node toggle button" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 215, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L215" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3608, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3609, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 221, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L221" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3610, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 227, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L227" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3611, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 233, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L233" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3612, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 239, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3613, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.node.toggle.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 245, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L245" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3609, + 3610, + 3611, + 3612, + 3613 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 215, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L215" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 169, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L169" + } + ] + } + } + }, + { + "id": 3614, + "name": "loadingIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the loading icon section" + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 251, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L251" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3615, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3616, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of loading icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "tree.loading.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 257, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L257" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3616 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 251, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L251" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3617, + 3568, + 3576, + 3593, + 3598, + 3614 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3567, + "name": "TreeDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3567 + ] + } + ], + "sources": [ + { + "fileName": "tree/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L1" + } + ] + }, + { + "id": 3621, + "name": "themes/treeselect", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "TreeSelect Design Tokens\n\n[Live Demo](https://www.primeng.org/treeselect/)" + } + ] + }, + "children": [ + { + "id": 3622, + "name": "TreeSelectDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3668, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3669, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3670, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3622, + "name": "TreeSelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3671, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3622, + "name": "TreeSelectDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3670, + 3671 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3623, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3624, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3625, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3626, + "name": "disabledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.disabled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3627, + "name": "filledBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.filled.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 35, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L35" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3628, + "name": "filledFocusBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filled focus background of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.filled.focus.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 41, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L41" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3629, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 47, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L47" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3630, + "name": "hoverBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.hover.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 53, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L53" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3631, + "name": "focusBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.focus.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 59, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L59" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3632, + "name": "invalidBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Invalid border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.invalid.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 65, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L65" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3633, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 71, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L71" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3634, + "name": "disabledColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Disabled color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.disabled.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 77, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L77" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3635, + "name": "placeholderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Placeholder color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.placeholder.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 83, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L83" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3636, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 89, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L89" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3637, + "name": "paddingX", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding x of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.padding.x" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 95, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L95" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3638, + "name": "paddingY", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding y of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.padding.y" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 101, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L101" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3639, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 107, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L107" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3640, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of root" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L111" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3641, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3642, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 117, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3643, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 123, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3644, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 129, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L129" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3645, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 135, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L135" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3646, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 141, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L141" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3642, + 3643, + 3644, + 3645, + 3646 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 111, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L111" + } + ] + } + } + }, + { + "id": 3647, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 148, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L148" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3647 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3648, + "name": "dropdown", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the dropdown section" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 153, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L153" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3649, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3650, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.dropdown.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 159, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L159" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3651, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of dropdown" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.dropdown.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 165, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L165" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3650, + 3651 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 153, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L153" + } + ] + } + } + }, + { + "id": 3652, + "name": "overlay", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the overlay section" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 170, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L170" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3653, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3654, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.overlay.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 176, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L176" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3655, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.overlay.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 182, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L182" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3656, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.overlay.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 188, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L188" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3657, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.overlay.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 194, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L194" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3658, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Shadow of overlay" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.overlay.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 200, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L200" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3654, + 3655, + 3656, + 3657, + 3658 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 170, + "character": 14, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L170" + } + ] + } + } + }, + { + "id": 3659, + "name": "tree", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the tree section" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 205, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L205" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3660, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3661, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of tree" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.tree.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 211, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L211" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3661 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 205, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L205" + } + ] + } + } + }, + { + "id": 3662, + "name": "emptyMessage", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the empty message section" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 216, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L216" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3663, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3664, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of empty message" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.empty.message.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 222, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L222" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3664 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 216, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L216" + } + ] + } + } + }, + { + "id": 3665, + "name": "chip", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the chip section" + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 227, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L227" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3666, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3667, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of chip" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treeselect.chip.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 233, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L233" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3667 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 227, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L227" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3668, + 3623, + 3648, + 3652, + 3659, + 3662, + 3665 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3622, + "name": "TreeSelectDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3622 + ] + } + ], + "sources": [ + { + "fileName": "treeselect/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L1" + } + ] + }, + { + "id": 3672, + "name": "themes/treetable", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "TreeTable Design Tokens\n\n[Live Demo](https://www.primeng.org/treetable/)" + } + ] + }, + "children": [ + { + "id": 3673, + "name": "TreeTableDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3786, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3787, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3788, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3673, + "name": "TreeTableDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3789, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3673, + "name": "TreeTableDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3788, + 3789 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3674, + "name": "root", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the root section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3675, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3676, + "name": "transitionDuration", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Transition duration of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.transition.duration" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3677, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of root" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3676, + 3677 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 17, + "character": 11, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3678, + "name": "header", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3679, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3680, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3681, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 46, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L46" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3682, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 52, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L52" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3683, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 58, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L58" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3684, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 64, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L64" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3680, + 3681, + 3682, + 3683, + 3684 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 34, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L34" + } + ] + } + } + }, + { + "id": 3685, + "name": "headerCell", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the header cell section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 69, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L69" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3686, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3687, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 75, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L75" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3688, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 81, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L81" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3689, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 87, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L87" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3690, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 93, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L93" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3691, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 99, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L99" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3692, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 105, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L105" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3693, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 111, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L111" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3694, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 117, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L117" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3695, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 123, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L123" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3696, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of header cell" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 127, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L127" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3697, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3698, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 133, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L133" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3699, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 139, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L139" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3700, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 145, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L145" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3701, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 151, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L151" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3702, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of header cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.header.cell.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 157, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L157" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3698, + 3699, + 3700, + 3701, + 3702 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 127, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L127" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 69, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L69" + } + ] + } + } + }, + { + "id": 3703, + "name": "columnTitle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the column title section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 163, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L163" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3704, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3705, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of column title" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.title.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 169, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L169" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3705 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 163, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L163" + } + ] + } + } + }, + { + "id": 3706, + "name": "row", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the row section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 174, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L174" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3707, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3708, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 180, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L180" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3709, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 186, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L186" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3710, + "name": "selectedBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected background of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.selected.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 192, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L192" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3711, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 198, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L198" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3712, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 204, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L204" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3713, + "name": "selectedColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.selected.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 210, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L210" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3714, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of row" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 214, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L214" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3715, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3716, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 220, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L220" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3717, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 226, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L226" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3718, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 232, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L232" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3719, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 238, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L238" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3720, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of row" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.row.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 244, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L244" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3716, + 3717, + 3718, + 3719, + 3720 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 214, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L214" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 174, + "character": 10, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L174" + } + ] + } + } + }, + { + "id": 3721, + "name": "bodyCell", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the body cell section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 250, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L250" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3722, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3723, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.body.cell.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 256, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L256" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3724, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.body.cell.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 262, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L262" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3725, + "name": "gap", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Gap of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.body.cell.gap" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 268, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L268" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3726, + "name": "selectedBorderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected border color of body cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.body.cell.selected.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 274, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L274" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3723, + 3724, + 3725, + 3726 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 250, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L250" + } + ] + } + } + }, + { + "id": 3727, + "name": "footerCell", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer cell section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 279, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L279" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3728, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3729, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.cell.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 285, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L285" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3730, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.cell.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 291, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L291" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3731, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.cell.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 297, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L297" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3732, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer cell" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.cell.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 303, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L303" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3729, + 3730, + 3731, + 3732 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 279, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L279" + } + ] + } + } + }, + { + "id": 3733, + "name": "columnFooter", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the column footer section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 308, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L308" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3734, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3735, + "name": "fontWeight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Font weight of column footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.footer.font.weight" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 314, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L314" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3735 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 308, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L308" + } + ] + } + } + }, + { + "id": 3736, + "name": "footer", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the footer section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 319, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L319" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3737, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3738, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 325, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L325" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3739, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 331, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L331" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3740, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 337, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L337" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3741, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 343, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L343" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3742, + "name": "padding", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Padding of footer" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.footer.padding" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 349, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L349" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3738, + 3739, + 3740, + 3741, + 3742 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 319, + "character": 13, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L319" + } + ] + } + } + }, + { + "id": 3743, + "name": "columnResizerWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the column resizer width section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 354, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L354" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3744, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3745, + "name": "0", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "0 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.resizer.width.0" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 360, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L360" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3746, + "name": "1", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "1 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.resizer.width.1" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 366, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L366" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3747, + "name": "2", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "2 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.resizer.width.2" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 372, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L372" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3748, + "name": "3", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "3 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.resizer.width.3" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 378, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L378" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3749, + "name": "4", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "4 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.resizer.width.4" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 384, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L384" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3750, + "name": "5", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "5 of column resizer width" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.column.resizer.width.5" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 390, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L390" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3745, + 3746, + 3747, + 3748, + 3749, + 3750 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 354, + "character": 25, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L354" + } + ] + } + } + }, + { + "id": 3751, + "name": "resizeIndicator", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the resize indicator section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 395, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L395" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3752, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3753, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Width of resize indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.resize.indicator.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 401, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L401" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3754, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of resize indicator" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.resize.indicator.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 407, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L407" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3753, + 3754 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 395, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L395" + } + ] + } + } + }, + { + "id": 3755, + "name": "sortIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the sort icon section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 412, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L412" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3756, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3757, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of sort icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.sort.icon.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 418, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L418" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3758, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of sort icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.sort.icon.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 424, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L424" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3757, + 3758 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 412, + "character": 15, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L412" + } + ] + } + } + }, + { + "id": 3759, + "name": "loadingIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the loading icon section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 429, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L429" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3760, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3761, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of loading icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.loading.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 435, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L435" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3761 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 429, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L429" + } + ] + } + } + }, + { + "id": 3762, + "name": "nodeToggleButton", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the node toggle button section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 440, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L440" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3763, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3764, + "name": "hoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover background of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 446, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L446" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3765, + "name": "selectedHoverBackground", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected hover background of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.selected.hover.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 452, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L452" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3766, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 458, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L458" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3767, + "name": "hoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Hover color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 464, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L464" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3768, + "name": "selectedHoverColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Selected hover color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.selected.hover.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 470, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L470" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3769, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 476, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L476" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3770, + "name": "borderRadius", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border radius of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.border.radius" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 482, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L482" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3771, + "name": "focusRing", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring of node toggle button" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 486, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L486" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3772, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3773, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring width of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.focus.ring.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 492, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L492" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3774, + "name": "style", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring style of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.focus.ring.style" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 498, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L498" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3775, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring color of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.focus.ring.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 504, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L504" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3776, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring offset of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.focus.ring.offset" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 510, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L510" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3777, + "name": "shadow", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Focus ring shadow of node toggle button" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.node.toggle.button.focus.ring.shadow" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 516, + "character": 12, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L516" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3773, + 3774, + 3775, + 3776, + 3777 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 486, + "character": 20, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L486" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 440, + "character": 23, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L440" + } + ] + } + } + }, + { + "id": 3778, + "name": "paginatorTop", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the paginator top section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 522, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L522" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3779, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3780, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of paginator top" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.paginator.top.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 528, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L528" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3781, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of paginator top" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.paginator.top.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 534, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L534" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3780, + 3781 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 522, + "character": 19, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L522" + } + ] + } + } + }, + { + "id": 3782, + "name": "paginatorBottom", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the paginator bottom section" + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 539, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L539" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3783, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3784, + "name": "borderColor", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border color of paginator bottom" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.paginator.bottom.border.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 545, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L545" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3785, + "name": "borderWidth", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Border width of paginator bottom" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "treetable.paginator.bottom.border.width" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 551, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L551" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3784, + 3785 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 539, + "character": 22, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L539" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3786, + 3674, + 3678, + 3685, + 3703, + 3706, + 3721, + 3727, + 3733, + 3736, + 3743, + 3751, + 3755, + 3759, + 3762, + 3778, + 3782 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3673, + "name": "TreeTableDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3673 + ] + } + ], + "sources": [ + { + "fileName": "treetable/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L1" + } + ] + }, + { + "id": 3790, + "name": "themes/scroller", + "variant": "declaration", + "kind": 2, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "VirtualScroller Design Tokens\n\n[Live Demo](https://www.primeng.org/virtualscroller/)" + } + ] + }, + "children": [ + { + "id": 3791, + "name": "VirtualScrollerDesignTokens", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3799, + "name": "colorScheme", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3800, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3801, + "name": "light", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 10, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3791, + "name": "VirtualScrollerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + }, + { + "id": 3802, + "name": "dark", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "index.d.ts", + "line": 11, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3791, + "name": "VirtualScrollerDesignTokens", + "package": "primeng" + }, + { + "type": "literal", + "value": "colorScheme" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3801, + 3802 + ] + } + ], + "sources": [ + { + "fileName": "index.d.ts", + "line": 9, + "character": 18, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 1605, + "name": "ColorSchemeDesignToken.colorScheme" + } + }, + { + "id": 3792, + "name": "loaderMask", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the mask section" + } + ] + }, + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 17, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L17" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3793, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3794, + "name": "background", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Background of loader mask" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "virtualscroller.loader.mask.background" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 23, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L23" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3795, + "name": "color", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Color of loader mask" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "virtualscroller.loader.mask.color" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 29, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L29" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3794, + 3795 + ] + } + ], + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 17, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L17" + } + ] + } + } + }, + { + "id": 3796, + "name": "loaderIcon", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used to pass tokens of the loader icon section" + } + ] + }, + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 34, + "character": 4, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L34" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3797, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3798, + "name": "size", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Size of the loader icon" + } + ], + "blockTags": [ + { + "tag": "@designToken", + "content": [ + { + "kind": "text", + "text": "virtualscroller.loader.icon.size" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 40, + "character": 8, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L40" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3798 + ] + } + ], + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 34, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L34" + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3799, + 3792, + 3796 + ] + } + ], + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 13, + "character": 17, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L13" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1604, + "typeArguments": [ + { + "type": "reference", + "target": 3791, + "name": "VirtualScrollerDesignTokens", + "package": "primeng" + } + ], + "name": "ColorSchemeDesignToken", + "package": "primeng" + } + ] + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 3791 + ] + } + ], + "sources": [ + { + "fileName": "virtualscroller/index.d.ts", + "line": 1, + "character": 0, + "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L1" + } + ] + } + ], + "groups": [ + { + "title": "Modules", + "children": [ + 1, + 56, + 141, + 168, + 228, + 237, + 269, + 527, + 553, + 584, + 646, + 686, + 720, + 750, + 763, + 790, + 832, + 1007, + 1051, + 1175, + 1203, + 1230, + 1254, + 1277, + 1305, + 1342, + 1382, + 1421, + 1433, + 1546, + 1555, + 1603, + 1681, + 1734, + 1756, + 1792, + 1804, + 1827, + 1868, + 1893, + 1952, + 2034, + 2073, + 2139, + 2252, + 2279, + 2352, + 2364, + 2407, + 2419, + 2457, + 2489, + 2534, + 2564, + 2576, + 2594, + 2613, + 2625, + 2663, + 2679, + 2688, + 2709, + 2786, + 2796, + 2807, + 2846, + 2856, + 2867, + 2894, + 2951, + 2992, + 3039, + 3107, + 3137, + 3182, + 3202, + 3233, + 3281, + 3317, + 3451, + 3495, + 3537, + 3551, + 3566, + 3621, + 3672, + 3790 + ] + } + ], + "packageName": "primeng", + "packageVersion": "18.0.0-beta.3", + "readme": [ + { + "kind": "text", + "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." + } + ], + "symbolIdMap": { + "1": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "" + }, + "2": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens" + }, + "3": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.root" + }, + "4": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "5": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.transitionDuration" + }, + "6": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.panel" + }, + "7": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "8": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "9": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" + }, + "10": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.header" + }, + "11": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "12": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "13": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" + }, + "14": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" + }, + "15": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" + }, + "16": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.fontWeight" + }, + "17": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderRadius" + }, + "18": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "19": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" + }, + "20": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" + }, + "21": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverBackground" + }, + "22": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBackground" + }, + "23": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverBackground" + }, + "24": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.focusRing" + }, + "25": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "26": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.width" + }, + "27": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.style" + }, + "28": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "29": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.offset" + }, + "30": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.shadow" + }, + "31": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.toggleIcon" + }, + "32": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "33": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "34": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.hoverColor" + }, + "35": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeColor" + }, + "36": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeHoverColor" + }, + "37": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.first" + }, + "38": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "39": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.topBorderRadius" + }, + "40": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "41": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.last" + }, + "42": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "43": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.bottomBorderRadius" + }, + "44": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.activeBottomBorderRadius" + }, + "45": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "AccordionDesignTokens.content" + }, + "46": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type" + }, + "47": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderWidth" + }, + "48": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.borderColor" + }, + "49": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.background" + }, + "50": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.color" + }, + "51": { + "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "qualifiedName": "__type.padding" + }, + "52": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "53": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "54": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "55": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "56": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "" + }, + "57": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens" + }, + "58": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.root" + }, + "59": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "60": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.background" + }, + "61": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "62": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "63": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "64": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "65": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "66": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "67": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "68": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "69": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "70": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "71": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "72": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "73": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "74": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "75": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "76": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "77": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.width" + }, + "78": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.style" + }, + "79": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "80": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.offset" + }, + "81": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "82": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "83": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.overlay" + }, + "84": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "85": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.background" + }, + "86": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "87": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "88": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "89": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "90": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.list" + }, + "91": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "92": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.padding" + }, + "93": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.gap" + }, + "94": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.option" + }, + "95": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "96": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "97": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "98": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.selectedFocusBackground" + }, + "99": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "100": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "101": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "102": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.selectedFocusColor" + }, + "103": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.padding" + }, + "104": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "105": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.optionGroup" + }, + "106": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "107": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.background" + }, + "108": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "109": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "110": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.padding" + }, + "111": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.dropdown" + }, + "112": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "113": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.width" + }, + "114": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "115": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "116": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "117": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "118": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "119": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "120": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.width" + }, + "121": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.style" + }, + "122": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "123": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.offset" + }, + "124": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "125": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.background" + }, + "126": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "127": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "128": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.color" + }, + "129": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "130": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "131": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.chip" + }, + "132": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "133": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "134": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "AutoCompleteDesignTokens.emptyMessage" + }, + "135": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type" + }, + "136": { + "sourceFileName": "src/app/components/themes/types/autocomplete/index.d.ts", + "qualifiedName": "__type.padding" + }, + "137": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "138": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "139": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "140": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "141": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "" + }, + "142": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "AvatarDesignTokens" + }, + "143": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "AvatarDesignTokens.root" + }, + "144": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type" + }, + "145": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.width" + }, + "146": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.height" + }, + "147": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "148": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.background" + }, + "149": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "150": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "AvatarDesignTokens.group" + }, + "151": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type" + }, + "152": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "153": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.offset" + }, + "154": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "AvatarDesignTokens.lg" + }, + "155": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type" + }, + "156": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.width" + }, + "157": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.height" + }, + "158": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "159": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "AvatarDesignTokens.xl" + }, + "160": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type" + }, + "161": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.width" + }, + "162": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.height" + }, + "163": { + "sourceFileName": "src/app/components/themes/types/avatar/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "164": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "165": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "166": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "167": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "168": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "" + }, + "169": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens" + }, + "170": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.root" + }, + "171": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "172": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "173": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.padding" + }, + "174": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "175": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "176": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.minWidth" + }, + "177": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.height" + }, + "178": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.dot" + }, + "179": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "180": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.size" + }, + "181": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.sm" + }, + "182": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "183": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "184": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.minWidth" + }, + "185": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.height" + }, + "186": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.lg" + }, + "187": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "188": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "189": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.minWidth" + }, + "190": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.height" + }, + "191": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.xl" + }, + "192": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "193": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "194": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.minWidth" + }, + "195": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.height" + }, + "196": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.primary" + }, + "197": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "198": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "199": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "200": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.secondary" + }, + "201": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "202": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "203": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "204": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.success" + }, + "205": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "206": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "207": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "208": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.info" + }, + "209": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "210": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "211": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "212": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.warn" + }, + "213": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "214": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "215": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "216": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.danger" + }, + "217": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "218": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "219": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "220": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "BadgeDesignTokens.contrast" + }, + "221": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type" + }, + "222": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.background" + }, + "223": { + "sourceFileName": "src/app/components/themes/types/badge/index.d.ts", + "qualifiedName": "__type.color" + }, + "224": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "225": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "226": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "227": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "228": { + "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", + "qualifiedName": "" + }, + "229": { + "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", + "qualifiedName": "BlockUIDesignTokens" + }, + "230": { + "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", + "qualifiedName": "BlockUIDesignTokens.root" + }, + "231": { + "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", + "qualifiedName": "__type" + }, + "232": { + "sourceFileName": "src/app/components/themes/types/blockui/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "233": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "234": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "235": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "236": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "237": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "" + }, + "238": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "BreadcrumbDesignTokens" + }, + "239": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "BreadcrumbDesignTokens.root" + }, + "240": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type" + }, + "241": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.padding" + }, + "242": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.background" + }, + "243": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.gap" + }, + "244": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "245": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "BreadcrumbDesignTokens.item" + }, + "246": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type" + }, + "247": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.color" + }, + "248": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "249": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "250": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.gap" + }, + "251": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.icon" + }, + "252": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type" + }, + "253": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.color" + }, + "254": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "255": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "256": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type" + }, + "257": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.width" + }, + "258": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.style" + }, + "259": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.color" + }, + "260": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.offset" + }, + "261": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "262": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "BreadcrumbDesignTokens.separator" + }, + "263": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type" + }, + "264": { + "sourceFileName": "src/app/components/themes/types/breadcrumb/index.d.ts", + "qualifiedName": "__type.color" + }, + "265": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "266": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "267": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "268": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "269": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "" + }, + "270": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "ButtonDesignTokens" + }, + "271": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "ButtonDesignTokens.root" + }, + "272": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "273": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "274": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.roundedBorderRadius" + }, + "275": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.gap" + }, + "276": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "277": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "278": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.iconOnlyWidth" + }, + "279": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.sm" + }, + "280": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "281": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "282": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "283": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "284": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.lg" + }, + "285": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "286": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "287": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "288": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "289": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.label" + }, + "290": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "291": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "292": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.raisedShadow" + }, + "293": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "294": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "295": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.width" + }, + "296": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.style" + }, + "297": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.offset" + }, + "298": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.badgeSize" + }, + "299": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "300": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.primary" + }, + "301": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "302": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "303": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "304": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "305": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "306": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "307": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "308": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "309": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "310": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "311": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "312": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "313": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "314": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "315": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.secondary" + }, + "316": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "317": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "318": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "319": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "320": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "321": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "322": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "323": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "324": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "325": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "326": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "327": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "328": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "329": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "330": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.info" + }, + "331": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "332": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "333": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "334": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "335": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "336": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "337": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "338": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "339": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "340": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "341": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "342": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "343": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "344": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "345": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.success" + }, + "346": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "347": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "348": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "349": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "350": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "351": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "352": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "353": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "354": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "355": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "356": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "357": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "358": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "359": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "360": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.warn" + }, + "361": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "362": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "363": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "364": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "365": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "366": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "367": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "368": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "369": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "370": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "371": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "372": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "373": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "374": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "375": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.help" + }, + "376": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "377": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "378": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "379": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "380": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "381": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "382": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "383": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "384": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "385": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "386": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "387": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "388": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "389": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "390": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.danger" + }, + "391": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "392": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "393": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "394": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "395": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "396": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "397": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "398": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "399": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "400": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "401": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "402": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "403": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "404": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "405": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.contrast" + }, + "406": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "407": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.background" + }, + "408": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "409": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "410": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "411": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "412": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "413": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "414": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "415": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "416": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "417": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "418": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "419": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "420": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "ButtonDesignTokens.outlined" + }, + "421": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "422": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.primary" + }, + "423": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "424": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "425": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "426": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "427": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "428": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.secondary" + }, + "429": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "430": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "431": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "432": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "433": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "434": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.success" + }, + "435": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "436": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "437": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "438": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "439": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "440": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.info" + }, + "441": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "442": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "443": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "444": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "445": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "446": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.warn" + }, + "447": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "448": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "449": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "450": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "451": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "452": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.help" + }, + "453": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "454": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "455": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "456": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "457": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "458": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.danger" + }, + "459": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "460": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "461": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "462": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "463": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "464": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.contrast" + }, + "465": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "466": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "467": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "468": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "469": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "470": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.plain" + }, + "471": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "472": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "473": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "474": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "475": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "476": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "ButtonDesignTokens.text" + }, + "477": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "478": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.primary" + }, + "479": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "480": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "481": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "482": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "483": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.secondary" + }, + "484": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "485": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "486": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "487": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "488": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.success" + }, + "489": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "490": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "491": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "492": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "493": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.info" + }, + "494": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "495": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "496": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "497": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "498": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.warn" + }, + "499": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "500": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "501": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "502": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "503": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.help" + }, + "504": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "505": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "506": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "507": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "508": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.danger" + }, + "509": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "510": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "511": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "512": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "513": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.plain" + }, + "514": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "515": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "516": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "517": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "518": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "ButtonDesignTokens.link" + }, + "519": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type" + }, + "520": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.color" + }, + "521": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "522": { + "sourceFileName": "src/app/components/themes/types/button/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "523": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "524": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "525": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "526": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "527": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "" + }, + "528": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "CardDesignTokens" + }, + "529": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "CardDesignTokens.root" + }, + "530": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type" + }, + "531": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.background" + }, + "532": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "533": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.color" + }, + "534": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "535": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "CardDesignTokens.body" + }, + "536": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type" + }, + "537": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.padding" + }, + "538": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.gap" + }, + "539": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "CardDesignTokens.caption" + }, + "540": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type" + }, + "541": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.gap" + }, + "542": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "CardDesignTokens.title" + }, + "543": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type" + }, + "544": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "545": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "546": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "CardDesignTokens.subtitle" + }, + "547": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type" + }, + "548": { + "sourceFileName": "src/app/components/themes/types/card/index.d.ts", + "qualifiedName": "__type.color" + }, + "549": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "550": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "551": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "552": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "553": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "" + }, + "554": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "CarouselDesignTokens" + }, + "555": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "CarouselDesignTokens.root" + }, + "556": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type" + }, + "557": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "558": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "CarouselDesignTokens.content" + }, + "559": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type" + }, + "560": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.gap" + }, + "561": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "CarouselDesignTokens.indicatorList" + }, + "562": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type" + }, + "563": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "564": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.gap" + }, + "565": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "CarouselDesignTokens.indicator" + }, + "566": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type" + }, + "567": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.width" + }, + "568": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.height" + }, + "569": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "570": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "571": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type" + }, + "572": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.width" + }, + "573": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.style" + }, + "574": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.color" + }, + "575": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.offset" + }, + "576": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "577": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.background" + }, + "578": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "579": { + "sourceFileName": "src/app/components/themes/types/carousel/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "580": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "581": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "582": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "583": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "584": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "" + }, + "585": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "CascadeSelectDesignTokens" + }, + "586": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "CascadeSelectDesignTokens.root" + }, + "587": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "588": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.background" + }, + "589": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "590": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "591": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "592": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "593": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "594": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "595": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "596": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "597": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "598": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "599": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "600": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "601": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "602": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "603": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "604": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "605": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.width" + }, + "606": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.style" + }, + "607": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "608": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.offset" + }, + "609": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "610": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "611": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "CascadeSelectDesignTokens.dropdown" + }, + "612": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "613": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.width" + }, + "614": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "615": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "CascadeSelectDesignTokens.overlay" + }, + "616": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "617": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.background" + }, + "618": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "619": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "620": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "621": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "622": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "CascadeSelectDesignTokens.list" + }, + "623": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "624": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "625": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.gap" + }, + "626": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "CascadeSelectDesignTokens.option" + }, + "627": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "628": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "629": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "630": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.selectedFocusBackground" + }, + "631": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "632": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "633": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "634": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.selectedFocusColor" + }, + "635": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "636": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "637": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.icon" + }, + "638": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type" + }, + "639": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "640": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "641": { + "sourceFileName": "src/app/components/themes/types/cascadeselect/index.d.ts", + "qualifiedName": "__type.size" + }, + "642": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "643": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "644": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "645": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "646": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "" + }, + "647": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "CheckboxDesignTokens" + }, + "648": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "CheckboxDesignTokens.root" + }, + "649": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type" + }, + "650": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "651": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.width" + }, + "652": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.height" + }, + "653": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.background" + }, + "654": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedBackground" + }, + "655": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedHoverBackground" + }, + "656": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "657": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "658": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "659": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "660": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "661": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedBorderColor" + }, + "662": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedHoverBorderColor" + }, + "663": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedFocusBorderColor" + }, + "664": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedDisabledBorderColor" + }, + "665": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "666": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "667": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "668": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type" + }, + "669": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.width" + }, + "670": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.style" + }, + "671": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "672": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.offset" + }, + "673": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "674": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "675": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "CheckboxDesignTokens.icon" + }, + "676": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type" + }, + "677": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.size" + }, + "678": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "679": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedColor" + }, + "680": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.checkedHoverColor" + }, + "681": { + "sourceFileName": "src/app/components/themes/types/checkbox/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "682": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "683": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "684": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "685": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "686": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "" + }, + "687": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "ChipDesignTokens" + }, + "688": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "ChipDesignTokens.root" + }, + "689": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type" + }, + "690": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "691": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "692": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "693": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.gap" + }, + "694": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "695": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.background" + }, + "696": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.color" + }, + "697": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "ChipDesignTokens.image" + }, + "698": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type" + }, + "699": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.width" + }, + "700": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.height" + }, + "701": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "ChipDesignTokens.icon" + }, + "702": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type" + }, + "703": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.size" + }, + "704": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.color" + }, + "705": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "ChipDesignTokens.removeIcon" + }, + "706": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type" + }, + "707": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.size" + }, + "708": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "709": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type" + }, + "710": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.width" + }, + "711": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.style" + }, + "712": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.color" + }, + "713": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.offset" + }, + "714": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "715": { + "sourceFileName": "src/app/components/themes/types/chip/index.d.ts", + "qualifiedName": "__type.color" + }, + "716": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "717": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "718": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "719": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "720": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "" + }, + "721": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "ColorPickerDesignTokens" + }, + "722": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "ColorPickerDesignTokens.root" + }, + "723": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type" + }, + "724": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "725": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "ColorPickerDesignTokens.preview" + }, + "726": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type" + }, + "727": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.width" + }, + "728": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.height" + }, + "729": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "730": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "731": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type" + }, + "732": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.width" + }, + "733": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.style" + }, + "734": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "735": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.offset" + }, + "736": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "737": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "ColorPickerDesignTokens.panel" + }, + "738": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type" + }, + "739": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "740": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "741": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.background" + }, + "742": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "743": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "ColorPickerDesignTokens.handle" + }, + "744": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type" + }, + "745": { + "sourceFileName": "src/app/components/themes/types/colorpicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "746": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "747": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "748": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "749": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "750": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "" + }, + "751": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "ConfirmDialogDesignTokens" + }, + "752": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "ConfirmDialogDesignTokens.icon" + }, + "753": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "__type" + }, + "754": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "__type.size" + }, + "755": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "__type.color" + }, + "756": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "ConfirmDialogDesignTokens.content" + }, + "757": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "__type" + }, + "758": { + "sourceFileName": "src/app/components/themes/types/confirmdialog/index.d.ts", + "qualifiedName": "__type.gap" + }, + "759": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "760": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "761": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "762": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "763": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "" + }, + "764": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "ConfirmPopupDesignTokens" + }, + "765": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "ConfirmPopupDesignTokens.root" + }, + "766": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type" + }, + "767": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.background" + }, + "768": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "769": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.color" + }, + "770": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "771": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "772": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "773": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.arrowOffset" + }, + "774": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "ConfirmPopupDesignTokens.content" + }, + "775": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type" + }, + "776": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.padding" + }, + "777": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.gap" + }, + "778": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "ConfirmPopupDesignTokens.icon" + }, + "779": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type" + }, + "780": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.size" + }, + "781": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.color" + }, + "782": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "ConfirmPopupDesignTokens.footer" + }, + "783": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type" + }, + "784": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.gap" + }, + "785": { + "sourceFileName": "src/app/components/themes/types/confirmpopup/index.d.ts", + "qualifiedName": "__type.padding" + }, + "786": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "787": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "788": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "789": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "790": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "" + }, + "791": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "ContextMenuDesignTokens" + }, + "792": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "ContextMenuDesignTokens.root" + }, + "793": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type" + }, + "794": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "795": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "796": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "797": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "798": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "799": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "800": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "ContextMenuDesignTokens.list" + }, + "801": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type" + }, + "802": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "803": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "804": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "ContextMenuDesignTokens.item" + }, + "805": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type" + }, + "806": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "807": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "808": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "809": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "810": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "811": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "812": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "813": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "814": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.icon" + }, + "815": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type" + }, + "816": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "817": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "818": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "819": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "ContextMenuDesignTokens.submenuIcon" + }, + "820": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type" + }, + "821": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.size" + }, + "822": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "823": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "824": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "825": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "ContextMenuDesignTokens.separator" + }, + "826": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type" + }, + "827": { + "sourceFileName": "src/app/components/themes/types/contextmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "828": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "829": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "830": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "831": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "832": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "" + }, + "833": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens" + }, + "834": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.root" + }, + "835": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "836": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "837": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "838": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.header" + }, + "839": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "840": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "841": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "842": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "843": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "844": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "845": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.headerCell" + }, + "846": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "847": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "848": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "849": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "850": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "851": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "852": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "853": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "854": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.gap" + }, + "855": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "856": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "857": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "858": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.width" + }, + "859": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.style" + }, + "860": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "861": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.offset" + }, + "862": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "863": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.columnTitle" + }, + "864": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "865": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "866": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.row" + }, + "867": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "868": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "869": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "870": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "871": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "872": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "873": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "874": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "875": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "876": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.width" + }, + "877": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.style" + }, + "878": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "879": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.offset" + }, + "880": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "881": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.stripedBackground" + }, + "882": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.bodyCell" + }, + "883": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "884": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "885": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "886": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedBorderColor" + }, + "887": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.footerCell" + }, + "888": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "889": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "890": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "891": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "892": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "893": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.columnFooter" + }, + "894": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "895": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "896": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.footer" + }, + "897": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "898": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "899": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "900": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "901": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "902": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "903": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.dropPointColor" + }, + "904": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "905": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.0" + }, + "906": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.1" + }, + "907": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.2" + }, + "908": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.3" + }, + "909": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.4" + }, + "910": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.5" + }, + "911": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.6" + }, + "912": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.7" + }, + "913": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.8" + }, + "914": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.9" + }, + "915": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.10" + }, + "916": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.11" + }, + "917": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.12" + }, + "918": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.13" + }, + "919": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.14" + }, + "920": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.columnResizerWidth" + }, + "921": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "922": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.0" + }, + "923": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.1" + }, + "924": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.2" + }, + "925": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.3" + }, + "926": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.4" + }, + "927": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.5" + }, + "928": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.resizeIndicator" + }, + "929": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "930": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.width" + }, + "931": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "932": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.sortIcon" + }, + "933": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "934": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "935": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "936": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.loadingIcon" + }, + "937": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "938": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.size" + }, + "939": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.rowToggleButton" + }, + "940": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "941": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "942": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedHoverBackground" + }, + "943": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "944": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "945": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedHoverColor" + }, + "946": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.size" + }, + "947": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "948": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "949": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "950": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.width" + }, + "951": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.style" + }, + "952": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "953": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.offset" + }, + "954": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "955": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.filter" + }, + "956": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "957": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.inlineGap" + }, + "958": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.overlaySelect" + }, + "959": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "960": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "961": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "962": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "963": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "964": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "965": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.overlayPopover" + }, + "966": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "967": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.background" + }, + "968": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "969": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "970": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "971": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "972": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "973": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.gap" + }, + "974": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.rule" + }, + "975": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "976": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "977": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.constraintList" + }, + "978": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "979": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "980": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.gap" + }, + "981": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.constraint" + }, + "982": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "983": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "984": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "985": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedFocusBackground" + }, + "986": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.color" + }, + "987": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "988": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "989": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.selectedFocusColor" + }, + "990": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.separator" + }, + "991": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "992": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "993": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "994": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "995": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.paginatorTop" + }, + "996": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "997": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "998": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "999": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "DataTableDesignTokens.paginatorBottom" + }, + "1000": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type" + }, + "1001": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1002": { + "sourceFileName": "src/app/components/themes/types/datatable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1003": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1004": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1005": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1006": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1007": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "" + }, + "1008": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens" + }, + "1009": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens.root" + }, + "1010": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type" + }, + "1011": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1012": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1013": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1014": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1015": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens.header" + }, + "1016": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type" + }, + "1017": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.background" + }, + "1018": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.color" + }, + "1019": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1020": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1021": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1022": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1023": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens.content" + }, + "1024": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type" + }, + "1025": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.background" + }, + "1026": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.color" + }, + "1027": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1028": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1029": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1030": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1031": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens.footer" + }, + "1032": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type" + }, + "1033": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.background" + }, + "1034": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.color" + }, + "1035": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1036": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1037": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1038": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1039": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens.paginatorTop" + }, + "1040": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type" + }, + "1041": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1042": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1043": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "DataViewDesignTokens.paginatorBottom" + }, + "1044": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type" + }, + "1045": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1046": { + "sourceFileName": "src/app/components/themes/types/dataview/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1047": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1048": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1049": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1050": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1051": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "" + }, + "1052": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens" + }, + "1053": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.root" + }, + "1054": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1055": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1056": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.panel" + }, + "1057": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1058": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.background" + }, + "1059": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1060": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1061": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1062": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1063": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1064": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.header" + }, + "1065": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1066": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.background" + }, + "1067": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1068": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1069": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1070": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1071": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1072": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.title" + }, + "1073": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1074": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1075": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1076": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.dropdown" + }, + "1077": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1078": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.width" + }, + "1079": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1080": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "1081": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "1082": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1083": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1084": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1085": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.width" + }, + "1086": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.style" + }, + "1087": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1088": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1089": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1090": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.background" + }, + "1091": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1092": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "1093": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1094": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1095": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "1096": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.inputIcon" + }, + "1097": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1098": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1099": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.selectMonth" + }, + "1100": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1101": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1102": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1103": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1104": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1105": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1106": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.selectYear" + }, + "1107": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1108": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1109": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1110": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1111": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1112": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1113": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.group" + }, + "1114": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1115": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1116": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1117": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.dayView" + }, + "1118": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1119": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.margin" + }, + "1120": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.weekDay" + }, + "1121": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1122": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1123": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1124": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1125": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.date" + }, + "1126": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1127": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1128": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "1129": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.rangeSelectedBackground" + }, + "1130": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1131": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1132": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "1133": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.rangeSelectedColor" + }, + "1134": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.width" + }, + "1135": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.height" + }, + "1136": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1137": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1138": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1139": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1140": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.width" + }, + "1141": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.style" + }, + "1142": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1143": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1144": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1145": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.monthView" + }, + "1146": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1147": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.margin" + }, + "1148": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.month" + }, + "1149": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1150": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1151": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.yearView" + }, + "1152": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1153": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.margin" + }, + "1154": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.year" + }, + "1155": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1156": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1157": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.buttonbar" + }, + "1158": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1159": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1160": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1161": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.timePicker" + }, + "1162": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1163": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1164": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1165": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1166": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.buttonGap" + }, + "1167": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "DatePickerDesignTokens.today" + }, + "1168": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type" + }, + "1169": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.background" + }, + "1170": { + "sourceFileName": "src/app/components/themes/types/datepicker/index.d.ts", + "qualifiedName": "__type.color" + }, + "1171": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1172": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1173": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1174": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1175": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "" + }, + "1176": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "DialogDesignTokens" + }, + "1177": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "DialogDesignTokens.root" + }, + "1178": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type" + }, + "1179": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.background" + }, + "1180": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1181": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.color" + }, + "1182": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1183": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1184": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "DialogDesignTokens.header" + }, + "1185": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type" + }, + "1186": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1187": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1188": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "DialogDesignTokens.title" + }, + "1189": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type" + }, + "1190": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "1191": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1192": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "DialogDesignTokens.content" + }, + "1193": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type" + }, + "1194": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1195": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "DialogDesignTokens.footer" + }, + "1196": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type" + }, + "1197": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1198": { + "sourceFileName": "src/app/components/themes/types/dialog/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1199": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1200": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1201": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1202": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1203": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "" + }, + "1204": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "DividerDesignTokens" + }, + "1205": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "DividerDesignTokens.root" + }, + "1206": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type" + }, + "1207": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1208": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "DividerDesignTokens.content" + }, + "1209": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type" + }, + "1210": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.background" + }, + "1211": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.color" + }, + "1212": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "DividerDesignTokens.horizontal" + }, + "1213": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type" + }, + "1214": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.margin" + }, + "1215": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1216": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.content" + }, + "1217": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type" + }, + "1218": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1219": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "DividerDesignTokens.vertical" + }, + "1220": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type" + }, + "1221": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.margin" + }, + "1222": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1223": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.content" + }, + "1224": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type" + }, + "1225": { + "sourceFileName": "src/app/components/themes/types/divider/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1226": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1227": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1228": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1229": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1230": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "" + }, + "1231": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "DockDesignTokens" + }, + "1232": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "DockDesignTokens.root" + }, + "1233": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type" + }, + "1234": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.background" + }, + "1235": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1236": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1237": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1238": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "DockDesignTokens.item" + }, + "1239": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type" + }, + "1240": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1241": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1242": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.size" + }, + "1243": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1244": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type" + }, + "1245": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.width" + }, + "1246": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.style" + }, + "1247": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.color" + }, + "1248": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1249": { + "sourceFileName": "src/app/components/themes/types/dock/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1250": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1251": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1252": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1253": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1254": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "" + }, + "1255": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "DrawerDesignTokens" + }, + "1256": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "DrawerDesignTokens.root" + }, + "1257": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type" + }, + "1258": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.background" + }, + "1259": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1260": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.color" + }, + "1261": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1262": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1263": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "DrawerDesignTokens.header" + }, + "1264": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type" + }, + "1265": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1266": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "DrawerDesignTokens.title" + }, + "1267": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type" + }, + "1268": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "1269": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1270": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "DrawerDesignTokens.content" + }, + "1271": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type" + }, + "1272": { + "sourceFileName": "src/app/components/themes/types/drawer/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1273": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1274": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1275": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1276": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1277": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "" + }, + "1278": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "DynamicDialogDesignTokens" + }, + "1279": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "DynamicDialogDesignTokens.root" + }, + "1280": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type" + }, + "1281": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.background" + }, + "1282": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1283": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.color" + }, + "1284": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1285": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1286": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "DynamicDialogDesignTokens.header" + }, + "1287": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type" + }, + "1288": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1289": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1290": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "DynamicDialogDesignTokens.title" + }, + "1291": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type" + }, + "1292": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "1293": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1294": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "DynamicDialogDesignTokens.content" + }, + "1295": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type" + }, + "1296": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1297": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "DynamicDialogDesignTokens.footer" + }, + "1298": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type" + }, + "1299": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1300": { + "sourceFileName": "src/app/components/themes/types/dynamicdialog/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1301": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1302": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1303": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1304": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1305": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "" + }, + "1306": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "EditorDesignTokens" + }, + "1307": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "EditorDesignTokens.toolbar" + }, + "1308": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type" + }, + "1309": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.background" + }, + "1310": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1311": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1312": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "EditorDesignTokens.toolbarItem" + }, + "1313": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type" + }, + "1314": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.color" + }, + "1315": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1316": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "1317": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "EditorDesignTokens.overlay" + }, + "1318": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type" + }, + "1319": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.background" + }, + "1320": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1321": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1322": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.color" + }, + "1323": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1324": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1325": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "EditorDesignTokens.overlayOption" + }, + "1326": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type" + }, + "1327": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "1328": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.color" + }, + "1329": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "1330": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1331": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1332": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "EditorDesignTokens.content" + }, + "1333": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type" + }, + "1334": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.background" + }, + "1335": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1336": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.color" + }, + "1337": { + "sourceFileName": "src/app/components/themes/types/editor/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1338": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1339": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1340": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1341": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1342": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "" + }, + "1343": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "FieldsetDesignTokens" + }, + "1344": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "FieldsetDesignTokens.root" + }, + "1345": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type" + }, + "1346": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.background" + }, + "1347": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1348": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1349": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.color" + }, + "1350": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1351": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1352": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "FieldsetDesignTokens.legend" + }, + "1353": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type" + }, + "1354": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.background" + }, + "1355": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1356": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.color" + }, + "1357": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1358": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1359": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1360": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1361": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1362": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1363": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1364": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1365": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type" + }, + "1366": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.width" + }, + "1367": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.style" + }, + "1368": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.color" + }, + "1369": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1370": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1371": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "FieldsetDesignTokens.toggleIcon" + }, + "1372": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type" + }, + "1373": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.color" + }, + "1374": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1375": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "FieldsetDesignTokens.content" + }, + "1376": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type" + }, + "1377": { + "sourceFileName": "src/app/components/themes/types/fieldset/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1378": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1379": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1380": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1381": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1382": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "" + }, + "1383": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens" + }, + "1384": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens.root" + }, + "1385": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1386": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.background" + }, + "1387": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1388": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.color" + }, + "1389": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1390": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1391": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens.header" + }, + "1392": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1393": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.background" + }, + "1394": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.color" + }, + "1395": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1396": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1397": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1398": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1399": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens.content" + }, + "1400": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1401": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.highlightBorderColor" + }, + "1402": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1403": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens.file" + }, + "1404": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1405": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1406": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1407": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1408": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.info" + }, + "1409": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1410": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1411": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens.progressbar" + }, + "1412": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1413": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.height" + }, + "1414": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "FileUploadDesignTokens.basic" + }, + "1415": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type" + }, + "1416": { + "sourceFileName": "src/app/components/themes/types/fileupload/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1417": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1418": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1419": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1420": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1421": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "" + }, + "1422": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "FloatLabelDesignTokens" + }, + "1423": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "FloatLabelDesignTokens.root" + }, + "1424": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "__type" + }, + "1425": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "__type.color" + }, + "1426": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "1427": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "__type.invalidColor" + }, + "1428": { + "sourceFileName": "src/app/components/themes/types/floatlabel/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1429": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1430": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1431": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1432": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1433": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "" + }, + "1434": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens" + }, + "1435": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.root" + }, + "1436": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1437": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1438": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1439": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1440": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1441": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.navButton" + }, + "1442": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1443": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1444": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1445": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1446": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1447": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.size" + }, + "1448": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "1449": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.prev" + }, + "1450": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1451": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1452": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.next" + }, + "1453": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1454": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1455": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1456": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1457": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.width" + }, + "1458": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.style" + }, + "1459": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1460": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1461": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1462": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.navIcon" + }, + "1463": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1464": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.size" + }, + "1465": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.thumbnailsContent" + }, + "1466": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1467": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1468": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1469": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.thumbnailNavButton" + }, + "1470": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1471": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.size" + }, + "1472": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1473": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "1474": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1475": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1476": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.width" + }, + "1477": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.style" + }, + "1478": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1479": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1480": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1481": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1482": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1483": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1484": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.thumbnailNavButtonIcon" + }, + "1485": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1486": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.size" + }, + "1487": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.caption" + }, + "1488": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1489": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1490": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1491": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1492": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.indicatorList" + }, + "1493": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1494": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1495": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1496": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.indicatorButton" + }, + "1497": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1498": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.width" + }, + "1499": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.height" + }, + "1500": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "1501": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1502": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1503": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1504": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.width" + }, + "1505": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.style" + }, + "1506": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1507": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1508": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1509": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1510": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1511": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.insetIndicatorList" + }, + "1512": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1513": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1514": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.insetIndicatorButton" + }, + "1515": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1516": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1517": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1518": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "1519": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.mask" + }, + "1520": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1521": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1522": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1523": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.closeButton" + }, + "1524": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1525": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.size" + }, + "1526": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "1527": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.background" + }, + "1528": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1529": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1530": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1531": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1532": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1533": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1534": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.width" + }, + "1535": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.style" + }, + "1536": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.color" + }, + "1537": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1538": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1539": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "GalleriaDesignTokens.closeButtonIcon" + }, + "1540": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type" + }, + "1541": { + "sourceFileName": "src/app/components/themes/types/galleria/index.d.ts", + "qualifiedName": "__type.size" + }, + "1542": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1543": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1544": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1545": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1546": { + "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", + "qualifiedName": "" + }, + "1547": { + "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", + "qualifiedName": "IconFieldDesignTokens" + }, + "1548": { + "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", + "qualifiedName": "IconFieldDesignTokens.icon" + }, + "1549": { + "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", + "qualifiedName": "__type" + }, + "1550": { + "sourceFileName": "src/app/components/themes/types/iconfield/index.d.ts", + "qualifiedName": "__type.color" + }, + "1551": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1552": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1553": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1554": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1555": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "" + }, + "1556": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "ImageDesignTokens" + }, + "1557": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "ImageDesignTokens.root" + }, + "1558": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1559": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1560": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "ImageDesignTokens.preview" + }, + "1561": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1562": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.icon" + }, + "1563": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1564": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.size" + }, + "1565": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.mask" + }, + "1566": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1567": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.background" + }, + "1568": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.color" + }, + "1569": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "ImageDesignTokens.toolbar" + }, + "1570": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1571": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.position" + }, + "1572": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1573": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.left" + }, + "1574": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.right" + }, + "1575": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.top" + }, + "1576": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.bottom" + }, + "1577": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.blur" + }, + "1578": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.background" + }, + "1579": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1580": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "1581": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1582": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1583": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1584": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "ImageDesignTokens.action" + }, + "1585": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1586": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1587": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.color" + }, + "1588": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1589": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.size" + }, + "1590": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.iconSize" + }, + "1591": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1592": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1593": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type" + }, + "1594": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.width" + }, + "1595": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.style" + }, + "1596": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.color" + }, + "1597": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1598": { + "sourceFileName": "src/app/components/themes/types/image/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1599": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1600": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1601": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1602": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1603": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "" + }, + "1604": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken" + }, + "1605": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1606": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1607": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1608": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1609": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.T" + }, + "1610": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken" + }, + "1611": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.50" + }, + "1612": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.100" + }, + "1613": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.200" + }, + "1614": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.300" + }, + "1615": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.400" + }, + "1616": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.500" + }, + "1617": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.600" + }, + "1618": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.700" + }, + "1619": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.800" + }, + "1620": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.900" + }, + "1621": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PaletteDesignToken.950" + }, + "1622": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens" + }, + "1623": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.borderRadius" + }, + "1624": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1625": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.none" + }, + "1626": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.xs" + }, + "1627": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.sm" + }, + "1628": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.md" + }, + "1629": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.lg" + }, + "1630": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.xl" + }, + "1631": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.emerald" + }, + "1632": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.green" + }, + "1633": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.lime" + }, + "1634": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.red" + }, + "1635": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.orange" + }, + "1636": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.amber" + }, + "1637": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.yellow" + }, + "1638": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.teal" + }, + "1639": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.cyan" + }, + "1640": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.sky" + }, + "1641": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.blue" + }, + "1642": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.indigo" + }, + "1643": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.violet" + }, + "1644": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.purple" + }, + "1645": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.fuchsia" + }, + "1646": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.pink" + }, + "1647": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.rose" + }, + "1648": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.slate" + }, + "1649": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.gray" + }, + "1650": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.zinc" + }, + "1651": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.neutral" + }, + "1652": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.stone" + }, + "1653": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "PrimitiveDesignTokens.__index" + }, + "1655": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens" + }, + "1656": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.transitionDuration" + }, + "1657": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.focusRing" + }, + "1658": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1659": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.width" + }, + "1660": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.style" + }, + "1661": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.color" + }, + "1662": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1663": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1664": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.iconSize" + }, + "1665": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.anchorGutter" + }, + "1666": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.primary" + }, + "1667": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.formField" + }, + "1668": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1669": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "1670": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "1671": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1672": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1673": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1674": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.width" + }, + "1675": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.style" + }, + "1676": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.color" + }, + "1677": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1678": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1679": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "SemanticDesignTokens.__index" + }, + "1681": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "" + }, + "1682": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens" + }, + "1683": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.root" + }, + "1684": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1685": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1686": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1687": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1688": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.text" + }, + "1689": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1690": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1691": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.icon" + }, + "1692": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1693": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.size" + }, + "1694": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.info" + }, + "1695": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1696": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.background" + }, + "1697": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1698": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.color" + }, + "1699": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1700": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.success" + }, + "1701": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1702": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.background" + }, + "1703": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1704": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.color" + }, + "1705": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1706": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.warn" + }, + "1707": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1708": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.background" + }, + "1709": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1710": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.color" + }, + "1711": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1712": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.error" + }, + "1713": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1714": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.background" + }, + "1715": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1716": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.color" + }, + "1717": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1718": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.secondary" + }, + "1719": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1720": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.background" + }, + "1721": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1722": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.color" + }, + "1723": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1724": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "InlineMessageDesignTokens.contrast" + }, + "1725": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type" + }, + "1726": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.background" + }, + "1727": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1728": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.color" + }, + "1729": { + "sourceFileName": "src/app/components/themes/types/inlinemessage/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1730": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1731": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1732": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1733": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1734": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "" + }, + "1735": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "InplaceDesignTokens" + }, + "1736": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "InplaceDesignTokens.root" + }, + "1737": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type" + }, + "1738": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1739": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1740": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1741": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type" + }, + "1742": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.width" + }, + "1743": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.style" + }, + "1744": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.color" + }, + "1745": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1746": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1747": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1748": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "InplaceDesignTokens.display" + }, + "1749": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type" + }, + "1750": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1751": { + "sourceFileName": "src/app/components/themes/types/inplace/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1752": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1753": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1754": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1755": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1756": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "" + }, + "1757": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "InputChipsDesignTokens" + }, + "1758": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "InputChipsDesignTokens.root" + }, + "1759": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type" + }, + "1760": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.background" + }, + "1761": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "1762": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "1763": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "1764": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1765": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "1766": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "1767": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "1768": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.color" + }, + "1769": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "1770": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "1771": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1772": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "1773": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "1774": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1775": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1776": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type" + }, + "1777": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.width" + }, + "1778": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.style" + }, + "1779": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.color" + }, + "1780": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1781": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1782": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1783": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "InputChipsDesignTokens.chip" + }, + "1784": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type" + }, + "1785": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1786": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "1787": { + "sourceFileName": "src/app/components/themes/types/inputchips/index.d.ts", + "qualifiedName": "__type.color" + }, + "1788": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1789": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1790": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1791": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1792": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "" + }, + "1793": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "InputGroupDesignTokens" + }, + "1794": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "InputGroupDesignTokens.addon" + }, + "1795": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "__type" + }, + "1796": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "__type.background" + }, + "1797": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1798": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "__type.color" + }, + "1799": { + "sourceFileName": "src/app/components/themes/types/inputgroup/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1800": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1801": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1802": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1803": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1804": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "" + }, + "1805": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "InputNumberDesignTokens" + }, + "1806": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "InputNumberDesignTokens.root" + }, + "1807": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type" + }, + "1808": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1809": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "InputNumberDesignTokens.button" + }, + "1810": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type" + }, + "1811": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.width" + }, + "1812": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1813": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.verticalPadding" + }, + "1814": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.background" + }, + "1815": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "1816": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "1817": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1818": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "1819": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "1820": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.color" + }, + "1821": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "1822": { + "sourceFileName": "src/app/components/themes/types/inputnumber/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "1823": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1824": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1825": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1826": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1827": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "" + }, + "1828": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "InputTextDesignTokens" + }, + "1829": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "InputTextDesignTokens.root" + }, + "1830": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type" + }, + "1831": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.background" + }, + "1832": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "1833": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "1834": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "1835": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1836": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "1837": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "1838": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "1839": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.color" + }, + "1840": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "1841": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "1842": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1843": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "1844": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "1845": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1846": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1847": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type" + }, + "1848": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.width" + }, + "1849": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.style" + }, + "1850": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.color" + }, + "1851": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1852": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1853": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1854": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.sm" + }, + "1855": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type" + }, + "1856": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "1857": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "1858": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "1859": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.lg" + }, + "1860": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type" + }, + "1861": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "1862": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "1863": { + "sourceFileName": "src/app/components/themes/types/inputtext/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "1864": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1865": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1866": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1867": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1868": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "" + }, + "1869": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "KnobDesignTokens" + }, + "1870": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "KnobDesignTokens.root" + }, + "1871": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type" + }, + "1872": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1873": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1874": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type" + }, + "1875": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.width" + }, + "1876": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.style" + }, + "1877": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.color" + }, + "1878": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1879": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1880": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "KnobDesignTokens.value" + }, + "1881": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type" + }, + "1882": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.background" + }, + "1883": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "KnobDesignTokens.range" + }, + "1884": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type" + }, + "1885": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.background" + }, + "1886": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "KnobDesignTokens.text" + }, + "1887": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type" + }, + "1888": { + "sourceFileName": "src/app/components/themes/types/knob/index.d.ts", + "qualifiedName": "__type.color" + }, + "1889": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1890": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1891": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1892": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1893": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "" + }, + "1894": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens" + }, + "1895": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens.root" + }, + "1896": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1897": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.background" + }, + "1898": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "1899": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1900": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "1901": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "1902": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "1903": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "1904": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "1905": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1906": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1907": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "1908": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1909": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.width" + }, + "1910": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.style" + }, + "1911": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "1912": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.offset" + }, + "1913": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1914": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1915": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens.list" + }, + "1916": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1917": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1918": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1919": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.header" + }, + "1920": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1921": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1922": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens.option" + }, + "1923": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1924": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "1925": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "1926": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.selectedFocusBackground" + }, + "1927": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "1928": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "1929": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "1930": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.selectedFocusColor" + }, + "1931": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1932": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1933": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.stripedBackground" + }, + "1934": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens.optionGroup" + }, + "1935": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1936": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.background" + }, + "1937": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "1938": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "1939": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1940": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens.checkmark" + }, + "1941": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1942": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.color" + }, + "1943": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.gutterStart" + }, + "1944": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.gutterEnd" + }, + "1945": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "ListboxDesignTokens.emptyMessage" + }, + "1946": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type" + }, + "1947": { + "sourceFileName": "src/app/components/themes/types/listbox/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1948": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "1949": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "1950": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "1951": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "1952": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "" + }, + "1953": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens" + }, + "1954": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.root" + }, + "1955": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1956": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "1957": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1958": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1959": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "1960": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1961": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.verticalOrientation" + }, + "1962": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1963": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1964": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1965": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.horizontalOrientation" + }, + "1966": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1967": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1968": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "1969": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.baseItem" + }, + "1970": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1971": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1972": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1973": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.item" + }, + "1974": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1975": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "1976": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "1977": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "1978": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "1979": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "1980": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1981": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1982": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1983": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.icon" + }, + "1984": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1985": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "1986": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "1987": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "1988": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.overlay" + }, + "1989": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1990": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "1991": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "1992": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "1993": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "1994": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "1995": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "1996": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "1997": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.submenu" + }, + "1998": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "1999": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2000": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2001": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.submenuLabel" + }, + "2002": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "2003": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2004": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2005": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "2006": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2007": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.submenuIcon" + }, + "2008": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "2009": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.size" + }, + "2010": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2011": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2012": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2013": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.separator" + }, + "2014": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "2015": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2016": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "MegaMenuDesignTokens.mobileButton" + }, + "2017": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "2018": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2019": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.size" + }, + "2020": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2021": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "2022": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2023": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2024": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type" + }, + "2025": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.width" + }, + "2026": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.style" + }, + "2027": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2028": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2029": { + "sourceFileName": "src/app/components/themes/types/megamenu/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2030": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2031": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2032": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2033": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2034": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "" + }, + "2035": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "MenuDesignTokens" + }, + "2036": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "MenuDesignTokens.root" + }, + "2037": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type" + }, + "2038": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.background" + }, + "2039": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2040": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2041": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2042": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2043": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2044": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "MenuDesignTokens.list" + }, + "2045": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type" + }, + "2046": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2047": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2048": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "MenuDesignTokens.item" + }, + "2049": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type" + }, + "2050": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "2051": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2052": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2053": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2054": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2055": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2056": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.icon" + }, + "2057": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type" + }, + "2058": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2059": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2060": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "MenuDesignTokens.submenuLabel" + }, + "2061": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type" + }, + "2062": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2063": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2064": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.background" + }, + "2065": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2066": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "MenuDesignTokens.separator" + }, + "2067": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type" + }, + "2068": { + "sourceFileName": "src/app/components/themes/types/menu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2069": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2070": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2071": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2072": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2073": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "" + }, + "2074": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens" + }, + "2075": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.root" + }, + "2076": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2077": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.background" + }, + "2078": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2079": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2080": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2081": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2082": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2083": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2084": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.baseItem" + }, + "2085": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2086": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2087": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2088": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.item" + }, + "2089": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2090": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "2091": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "2092": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2093": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2094": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2095": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2096": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2097": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2098": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.icon" + }, + "2099": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2100": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2101": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2102": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2103": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.submenu" + }, + "2104": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2105": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2106": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2107": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.background" + }, + "2108": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2109": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2110": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2111": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.mobileIndent" + }, + "2112": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.submenuIcon" + }, + "2113": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2114": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.size" + }, + "2115": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2116": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2117": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2118": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.separator" + }, + "2119": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2120": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2121": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "MenubarDesignTokens.mobileButton" + }, + "2122": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2123": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2124": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.size" + }, + "2125": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2126": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "2127": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2128": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2129": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type" + }, + "2130": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.width" + }, + "2131": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.style" + }, + "2132": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2133": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2134": { + "sourceFileName": "src/app/components/themes/types/menubar/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2135": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2136": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2137": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2138": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2139": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "" + }, + "2140": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens" + }, + "2141": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.root" + }, + "2142": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2143": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2144": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "2145": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2146": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.content" + }, + "2147": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2148": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2149": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2150": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.text" + }, + "2151": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2152": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "2153": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2154": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.icon" + }, + "2155": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2156": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.size" + }, + "2157": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.closeButton" + }, + "2158": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2159": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.width" + }, + "2160": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.height" + }, + "2161": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2162": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2163": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2164": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.width" + }, + "2165": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.style" + }, + "2166": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2167": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.closeIcon" + }, + "2168": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2169": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.size" + }, + "2170": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.info" + }, + "2171": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2172": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.background" + }, + "2173": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2174": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2175": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2176": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "2177": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2178": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2179": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2180": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2181": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2182": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2183": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.success" + }, + "2184": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2185": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.background" + }, + "2186": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2187": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2188": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2189": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "2190": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2191": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2192": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2193": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2194": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2195": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2196": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.warn" + }, + "2197": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2198": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.background" + }, + "2199": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2200": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2201": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2202": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "2203": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2204": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2205": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2206": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2207": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2208": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2209": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.error" + }, + "2210": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2211": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.background" + }, + "2212": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2213": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2214": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2215": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "2216": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2217": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2218": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2219": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2220": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2221": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2222": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.secondary" + }, + "2223": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2224": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.background" + }, + "2225": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2226": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2227": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2228": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "2229": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2230": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2231": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2232": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2233": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2234": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2235": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "MessageDesignTokens.contrast" + }, + "2236": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2237": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.background" + }, + "2238": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2239": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2240": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2241": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "2242": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2243": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2244": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2245": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type" + }, + "2246": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.color" + }, + "2247": { + "sourceFileName": "src/app/components/themes/types/message/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2248": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2249": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2250": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2251": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2252": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "" + }, + "2253": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens" + }, + "2254": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens.root" + }, + "2255": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type" + }, + "2256": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2257": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2258": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens.meters" + }, + "2259": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type" + }, + "2260": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.background" + }, + "2261": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.size" + }, + "2262": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens.label" + }, + "2263": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type" + }, + "2264": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2265": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens.labelMarker" + }, + "2266": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type" + }, + "2267": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.size" + }, + "2268": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens.labelIcon" + }, + "2269": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type" + }, + "2270": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.size" + }, + "2271": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "MeterGroupDesignTokens.labelList" + }, + "2272": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type" + }, + "2273": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.verticalGap" + }, + "2274": { + "sourceFileName": "src/app/components/themes/types/metergroup/index.d.ts", + "qualifiedName": "__type.horizontalGap" + }, + "2275": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2276": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2277": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2278": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2279": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "" + }, + "2280": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens" + }, + "2281": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.root" + }, + "2282": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2283": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.background" + }, + "2284": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "2285": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "2286": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "2287": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2288": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "2289": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "2290": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "2291": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "2292": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "2293": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "2294": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2295": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "2296": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "2297": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2298": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2299": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2300": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.width" + }, + "2301": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.style" + }, + "2302": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "2303": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2304": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2305": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2306": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.dropdown" + }, + "2307": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2308": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.width" + }, + "2309": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "2310": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.overlay" + }, + "2311": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2312": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.background" + }, + "2313": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2314": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2315": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "2316": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2317": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.list" + }, + "2318": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2319": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2320": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2321": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.header" + }, + "2322": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2323": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2324": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.option" + }, + "2325": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2326": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "2327": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "2328": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.selectedFocusBackground" + }, + "2329": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "2330": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2331": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "2332": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.selectedFocusColor" + }, + "2333": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2334": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2335": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2336": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.optionGroup" + }, + "2337": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2338": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.background" + }, + "2339": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "2340": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2341": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2342": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.chip" + }, + "2343": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2344": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2345": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "MultiSelectDesignTokens.emptyMessage" + }, + "2346": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type" + }, + "2347": { + "sourceFileName": "src/app/components/themes/types/multiselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2348": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2349": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2350": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2351": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2352": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "" + }, + "2353": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "OrderListDesignTokens" + }, + "2354": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "OrderListDesignTokens.root" + }, + "2355": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "__type" + }, + "2356": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2357": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "OrderListDesignTokens.controls" + }, + "2358": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "__type" + }, + "2359": { + "sourceFileName": "src/app/components/themes/types/orderlist/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2360": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2361": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2362": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2363": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2364": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "" + }, + "2365": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "OrganizationChartDesignTokens" + }, + "2366": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "OrganizationChartDesignTokens.root" + }, + "2367": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type" + }, + "2368": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "2369": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2370": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "OrganizationChartDesignTokens.node" + }, + "2371": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type" + }, + "2372": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.background" + }, + "2373": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2374": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "2375": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2376": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.color" + }, + "2377": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "2378": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "2379": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2380": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.toggleablePadding" + }, + "2381": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2382": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "OrganizationChartDesignTokens.nodeToggleButton" + }, + "2383": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type" + }, + "2384": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.background" + }, + "2385": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2386": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2387": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.color" + }, + "2388": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "2389": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.size" + }, + "2390": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2391": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2392": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type" + }, + "2393": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.width" + }, + "2394": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.style" + }, + "2395": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.color" + }, + "2396": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2397": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2398": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "OrganizationChartDesignTokens.connector" + }, + "2399": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type" + }, + "2400": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.color" + }, + "2401": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2402": { + "sourceFileName": "src/app/components/themes/types/organizationchart/index.d.ts", + "qualifiedName": "__type.height" + }, + "2403": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2404": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2405": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2406": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2407": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "" + }, + "2408": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "OverlayBadgeDesignTokens" + }, + "2409": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "OverlayBadgeDesignTokens.root" + }, + "2410": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "__type" + }, + "2411": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "__type.outline" + }, + "2412": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "__type" + }, + "2413": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "__type.width" + }, + "2414": { + "sourceFileName": "src/app/components/themes/types/overlaybadge/index.d.ts", + "qualifiedName": "__type.color" + }, + "2415": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2416": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2417": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2418": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2419": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "" + }, + "2420": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "PaginatorDesignTokens" + }, + "2421": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "PaginatorDesignTokens.root" + }, + "2422": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type" + }, + "2423": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2424": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2425": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2426": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.background" + }, + "2427": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.color" + }, + "2428": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2429": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "PaginatorDesignTokens.navButton" + }, + "2430": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type" + }, + "2431": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.background" + }, + "2432": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2433": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "2434": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.color" + }, + "2435": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "2436": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "2437": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.width" + }, + "2438": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.height" + }, + "2439": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2440": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2441": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type" + }, + "2442": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.width" + }, + "2443": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.style" + }, + "2444": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.color" + }, + "2445": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2446": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2447": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "PaginatorDesignTokens.currentPageReport" + }, + "2448": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type" + }, + "2449": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.color" + }, + "2450": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "PaginatorDesignTokens.jumpToPageInput" + }, + "2451": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type" + }, + "2452": { + "sourceFileName": "src/app/components/themes/types/paginator/index.d.ts", + "qualifiedName": "__type.maxWidth" + }, + "2453": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2454": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2455": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2456": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2457": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "" + }, + "2458": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens" + }, + "2459": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.root" + }, + "2460": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "2461": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" + }, + "2462": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2463": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" + }, + "2464": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2465": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.header" + }, + "2466": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "2467": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.background" + }, + "2468": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.color" + }, + "2469": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2470": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2471": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "2472": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2473": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.toggleableHeader" + }, + "2474": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "2475": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2476": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.title" + }, + "2477": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "2478": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2479": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.content" + }, + "2480": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "2481": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2482": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "PanelDesignTokens.footer" + }, + "2483": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type" + }, + "2484": { + "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2485": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2486": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2487": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2488": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2489": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "" + }, + "2490": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "PanelMenuDesignTokens" + }, + "2491": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "PanelMenuDesignTokens.root" + }, + "2492": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2493": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2494": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2495": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "PanelMenuDesignTokens.panel" + }, + "2496": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2497": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "2498": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2499": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "2500": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2501": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2502": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2503": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.first" + }, + "2504": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2505": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "2506": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.topBorderRadius" + }, + "2507": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.last" + }, + "2508": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2509": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "2510": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.bottomBorderRadius" + }, + "2511": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "PanelMenuDesignTokens.item" + }, + "2512": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2513": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "2514": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2515": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2516": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2517": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2518": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2519": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.icon" + }, + "2520": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2521": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2522": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2523": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "PanelMenuDesignTokens.submenu" + }, + "2524": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2525": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.indent" + }, + "2526": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "PanelMenuDesignTokens.submenuIcon" + }, + "2527": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2528": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "2529": { + "sourceFileName": "src/app/components/themes/types/panelmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2530": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2531": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2532": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2533": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2534": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "" + }, + "2535": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "PasswordDesignTokens" + }, + "2536": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "PasswordDesignTokens.meter" + }, + "2537": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type" + }, + "2538": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.background" + }, + "2539": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2540": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.height" + }, + "2541": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "PasswordDesignTokens.icon" + }, + "2542": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type" + }, + "2543": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.color" + }, + "2544": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "PasswordDesignTokens.overlay" + }, + "2545": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type" + }, + "2546": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.background" + }, + "2547": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2548": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2549": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.color" + }, + "2550": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2551": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2552": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "PasswordDesignTokens.content" + }, + "2553": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type" + }, + "2554": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2555": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "PasswordDesignTokens.strength" + }, + "2556": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type" + }, + "2557": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.weakBackground" + }, + "2558": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.mediumBackground" + }, + "2559": { + "sourceFileName": "src/app/components/themes/types/password/index.d.ts", + "qualifiedName": "__type.strongBackground" + }, + "2560": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2561": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2562": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2563": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2564": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "" + }, + "2565": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "PickListDesignTokens" + }, + "2566": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "PickListDesignTokens.root" + }, + "2567": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "__type" + }, + "2568": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2569": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "PickListDesignTokens.controls" + }, + "2570": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "__type" + }, + "2571": { + "sourceFileName": "src/app/components/themes/types/picklist/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2572": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2573": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2574": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2575": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2576": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "" + }, + "2577": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "PopoverDesignTokens" + }, + "2578": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "PopoverDesignTokens.root" + }, + "2579": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type" + }, + "2580": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.background" + }, + "2581": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2582": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.color" + }, + "2583": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2584": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2585": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "2586": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.arrowOffset" + }, + "2587": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "PopoverDesignTokens.content" + }, + "2588": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type" + }, + "2589": { + "sourceFileName": "src/app/components/themes/types/popover/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2590": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2591": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2592": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2593": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2594": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "" + }, + "2595": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "ProgressBarDesignTokens" + }, + "2596": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "ProgressBarDesignTokens.root" + }, + "2597": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type" + }, + "2598": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.background" + }, + "2599": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2600": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.height" + }, + "2601": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "ProgressBarDesignTokens.value" + }, + "2602": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type" + }, + "2603": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.background" + }, + "2604": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "ProgressBarDesignTokens.label" + }, + "2605": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type" + }, + "2606": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.color" + }, + "2607": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "2608": { + "sourceFileName": "src/app/components/themes/types/progressbar/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2609": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2610": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2611": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2612": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2613": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "" + }, + "2614": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "ProgressSpinnerDesignTokens" + }, + "2615": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "ProgressSpinnerDesignTokens.root" + }, + "2616": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "__type" + }, + "2617": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "__type.color.1" + }, + "2618": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "__type.color.2" + }, + "2619": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "__type.color.3" + }, + "2620": { + "sourceFileName": "src/app/components/themes/types/progressspinner/index.d.ts", + "qualifiedName": "__type.color.4" + }, + "2621": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2622": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2623": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2624": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2625": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "" + }, + "2626": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "RadioButtonDesignTokens" + }, + "2627": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "RadioButtonDesignTokens.root" + }, + "2628": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type" + }, + "2629": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.width" + }, + "2630": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.height" + }, + "2631": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.background" + }, + "2632": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedBackground" + }, + "2633": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedHoverBackground" + }, + "2634": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "2635": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "2636": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2637": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "2638": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "2639": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedBorderColor" + }, + "2640": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedHoverBorderColor" + }, + "2641": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedFocusBorderColor" + }, + "2642": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedDisabledBorderColor" + }, + "2643": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "2644": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2645": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2646": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type" + }, + "2647": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.width" + }, + "2648": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.style" + }, + "2649": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.color" + }, + "2650": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2651": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2652": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2653": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "RadioButtonDesignTokens.icon" + }, + "2654": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type" + }, + "2655": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.size" + }, + "2656": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedColor" + }, + "2657": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.checkedHoverColor" + }, + "2658": { + "sourceFileName": "src/app/components/themes/types/radiobutton/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "2659": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2660": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2661": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2662": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2663": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "" + }, + "2664": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "RatingDesignTokens" + }, + "2665": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "RatingDesignTokens.root" + }, + "2666": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type" + }, + "2667": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2668": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2669": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "RatingDesignTokens.icon" + }, + "2670": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type" + }, + "2671": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type.size" + }, + "2672": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type.color" + }, + "2673": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "2674": { + "sourceFileName": "src/app/components/themes/types/rating/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2675": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2676": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2677": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2678": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2679": { + "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", + "qualifiedName": "" + }, + "2680": { + "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", + "qualifiedName": "RippleDesignTokens" + }, + "2681": { + "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", + "qualifiedName": "RippleDesignTokens.root" + }, + "2682": { + "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", + "qualifiedName": "__type" + }, + "2683": { + "sourceFileName": "src/app/components/themes/types/ripple/index.d.ts", + "qualifiedName": "__type.background" + }, + "2684": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2685": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2686": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2687": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2688": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "" + }, + "2689": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "ScrollPanelDesignTokens" + }, + "2690": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "ScrollPanelDesignTokens.root" + }, + "2691": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type" + }, + "2692": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2693": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "ScrollPanelDesignTokens.bar" + }, + "2694": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type" + }, + "2695": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.size" + }, + "2696": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2697": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2698": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type" + }, + "2699": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.width" + }, + "2700": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.style" + }, + "2701": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.color" + }, + "2702": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2703": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2704": { + "sourceFileName": "src/app/components/themes/types/scrollpanel/index.d.ts", + "qualifiedName": "__type.background" + }, + "2705": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2706": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2707": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2708": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2709": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "" + }, + "2710": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens" + }, + "2711": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.root" + }, + "2712": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2713": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.background" + }, + "2714": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "2715": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "2716": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "2717": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2718": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "2719": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "2720": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "2721": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2722": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "2723": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "2724": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2725": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "2726": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "2727": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2728": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2729": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2730": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.width" + }, + "2731": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.style" + }, + "2732": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2733": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2734": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2735": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2736": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.dropdown" + }, + "2737": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2738": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.width" + }, + "2739": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2740": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.overlay" + }, + "2741": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2742": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.background" + }, + "2743": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2744": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2745": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2746": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2747": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.list" + }, + "2748": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2749": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2750": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2751": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.header" + }, + "2752": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2753": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2754": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.option" + }, + "2755": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2756": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "2757": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "2758": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.selectedFocusBackground" + }, + "2759": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2760": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "2761": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "2762": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.selectedFocusColor" + }, + "2763": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2764": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2765": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.optionGroup" + }, + "2766": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2767": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.background" + }, + "2768": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2769": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2770": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2771": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.clearIcon" + }, + "2772": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2773": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2774": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.checkmark" + }, + "2775": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2776": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.color" + }, + "2777": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.gutterStart" + }, + "2778": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.gutterEnd" + }, + "2779": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "SelectDesignTokens.emptyMessage" + }, + "2780": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type" + }, + "2781": { + "sourceFileName": "src/app/components/themes/types/select/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2782": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2783": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2784": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2785": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2786": { + "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", + "qualifiedName": "" + }, + "2787": { + "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", + "qualifiedName": "SelectButtonDesignTokens" + }, + "2788": { + "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", + "qualifiedName": "SelectButtonDesignTokens.root" + }, + "2789": { + "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", + "qualifiedName": "__type" + }, + "2790": { + "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2791": { + "sourceFileName": "src/app/components/themes/types/selectbutton/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "2792": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2793": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2794": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2795": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2796": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "" + }, + "2797": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "SkeletonDesignTokens" + }, + "2798": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "SkeletonDesignTokens.root" + }, + "2799": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "__type" + }, + "2800": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2801": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "__type.background" + }, + "2802": { + "sourceFileName": "src/app/components/themes/types/skeleton/index.d.ts", + "qualifiedName": "__type.animationBackground" + }, + "2803": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2804": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2805": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2806": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2807": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "" + }, + "2808": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "SliderDesignTokens" + }, + "2809": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "SliderDesignTokens.root" + }, + "2810": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type" + }, + "2811": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2812": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "SliderDesignTokens.track" + }, + "2813": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type" + }, + "2814": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.background" + }, + "2815": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2816": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.size" + }, + "2817": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "SliderDesignTokens.range" + }, + "2818": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type" + }, + "2819": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.background" + }, + "2820": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "SliderDesignTokens.handle" + }, + "2821": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type" + }, + "2822": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.width" + }, + "2823": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.height" + }, + "2824": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2825": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.background" + }, + "2826": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2827": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.content" + }, + "2828": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type" + }, + "2829": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2830": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "2831": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.width" + }, + "2832": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.height" + }, + "2833": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2834": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2835": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type" + }, + "2836": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.width" + }, + "2837": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.style" + }, + "2838": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.color" + }, + "2839": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2840": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2841": { + "sourceFileName": "src/app/components/themes/types/slider/index.d.ts", + "qualifiedName": "__type.contentBackground" + }, + "2842": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2843": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2844": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2845": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2846": { + "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", + "qualifiedName": "" + }, + "2847": { + "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", + "qualifiedName": "SpeedDialDesignTokens" + }, + "2848": { + "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", + "qualifiedName": "SpeedDialDesignTokens.root" + }, + "2849": { + "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", + "qualifiedName": "__type" + }, + "2850": { + "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2851": { + "sourceFileName": "src/app/components/themes/types/speeddial/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2852": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2853": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2854": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2855": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2856": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "" + }, + "2857": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "SplitButtonDesignTokens" + }, + "2858": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "SplitButtonDesignTokens.root" + }, + "2859": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "__type" + }, + "2860": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2861": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "__type.roundedBorderRadius" + }, + "2862": { + "sourceFileName": "src/app/components/themes/types/splitbutton/index.d.ts", + "qualifiedName": "__type.raisedShadow" + }, + "2863": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2864": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2865": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2866": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2867": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "" + }, + "2868": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "SplitterDesignTokens" + }, + "2869": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "SplitterDesignTokens.root" + }, + "2870": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type" + }, + "2871": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.background" + }, + "2872": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2873": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.color" + }, + "2874": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2875": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "SplitterDesignTokens.gutter" + }, + "2876": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type" + }, + "2877": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.background" + }, + "2878": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "SplitterDesignTokens.handle" + }, + "2879": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type" + }, + "2880": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.size" + }, + "2881": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.background" + }, + "2882": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2883": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2884": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type" + }, + "2885": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.width" + }, + "2886": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.style" + }, + "2887": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.color" + }, + "2888": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2889": { + "sourceFileName": "src/app/components/themes/types/splitter/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2890": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2891": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2892": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2893": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2894": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "" + }, + "2895": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens" + }, + "2896": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.root" + }, + "2897": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2898": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2899": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.separator" + }, + "2900": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2901": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.background" + }, + "2902": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "2903": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.margin" + }, + "2904": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.size" + }, + "2905": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.step" + }, + "2906": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2907": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2908": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2909": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.stepHeader" + }, + "2910": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2911": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2912": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2913": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2914": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2915": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.width" + }, + "2916": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.style" + }, + "2917": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.color" + }, + "2918": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2919": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2920": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2921": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.stepTitle" + }, + "2922": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2923": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.color" + }, + "2924": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2925": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2926": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.stepNumber" + }, + "2927": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2928": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.background" + }, + "2929": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "2930": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2931": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "2932": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.color" + }, + "2933": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2934": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.size" + }, + "2935": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "2936": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2937": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2938": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2939": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.steppanels" + }, + "2940": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2941": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2942": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "StepperDesignTokens.steppanel" + }, + "2943": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type" + }, + "2944": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.background" + }, + "2945": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.color" + }, + "2946": { + "sourceFileName": "src/app/components/themes/types/stepper/index.d.ts", + "qualifiedName": "__type.padding" + }, + "2947": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2948": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2949": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2950": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2951": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "" + }, + "2952": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "StepsDesignTokens" + }, + "2953": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "StepsDesignTokens.root" + }, + "2954": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type" + }, + "2955": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2956": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "StepsDesignTokens.separator" + }, + "2957": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type" + }, + "2958": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.background" + }, + "2959": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "StepsDesignTokens.itemLink" + }, + "2960": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type" + }, + "2961": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2962": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "2963": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type" + }, + "2964": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.width" + }, + "2965": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.style" + }, + "2966": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.color" + }, + "2967": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.offset" + }, + "2968": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2969": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.gap" + }, + "2970": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "StepsDesignTokens.itemLabel" + }, + "2971": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type" + }, + "2972": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.color" + }, + "2973": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2974": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2975": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "StepsDesignTokens.itemNumber" + }, + "2976": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type" + }, + "2977": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.background" + }, + "2978": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "2979": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "2980": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "2981": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.color" + }, + "2982": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "2983": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.size" + }, + "2984": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "2985": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "2986": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "2987": { + "sourceFileName": "src/app/components/themes/types/steps/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "2988": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "2989": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "2990": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "2991": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "2992": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "" + }, + "2993": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "TabmenuDesignTokens" + }, + "2994": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "TabmenuDesignTokens.root" + }, + "2995": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2996": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "2997": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "TabmenuDesignTokens.tablist" + }, + "2998": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type" + }, + "2999": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3000": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "3001": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3002": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "TabmenuDesignTokens.item" + }, + "3003": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3004": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "3005": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3006": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "3007": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3008": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3009": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "3010": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "3011": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3012": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3013": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "3014": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3015": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3016": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.margin" + }, + "3017": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3018": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3019": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3020": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.width" + }, + "3021": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.style" + }, + "3022": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3023": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3024": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3025": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "TabmenuDesignTokens.itemIcon" + }, + "3026": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3027": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3028": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3029": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "3030": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "TabmenuDesignTokens.activeBar" + }, + "3031": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3032": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.height" + }, + "3033": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.bottom" + }, + "3034": { + "sourceFileName": "src/app/components/themes/types/tabmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "3035": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3036": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3037": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3038": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3039": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "" + }, + "3040": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens" + }, + "3041": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens.root" + }, + "3042": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3043": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3044": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens.tablist" + }, + "3045": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3046": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3047": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.background" + }, + "3048": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3049": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens.tab" + }, + "3050": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3051": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.background" + }, + "3052": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3053": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "3054": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3055": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3056": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "3057": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "3058": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.color" + }, + "3059": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3060": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "3061": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3062": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3063": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.margin" + }, + "3064": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3065": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3066": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3067": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.width" + }, + "3068": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.style" + }, + "3069": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.color" + }, + "3070": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3071": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3072": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens.tabpanel" + }, + "3073": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3074": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.background" + }, + "3075": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.color" + }, + "3076": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3077": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3078": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3079": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.width" + }, + "3080": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.style" + }, + "3081": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.color" + }, + "3082": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3083": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3084": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens.navButton" + }, + "3085": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3086": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.background" + }, + "3087": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.color" + }, + "3088": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3089": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.width" + }, + "3090": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3091": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3092": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.width" + }, + "3093": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.style" + }, + "3094": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.color" + }, + "3095": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3096": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3097": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3098": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "TabsDesignTokens.activeBar" + }, + "3099": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type" + }, + "3100": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.height" + }, + "3101": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.bottom" + }, + "3102": { + "sourceFileName": "src/app/components/themes/types/tabs/index.d.ts", + "qualifiedName": "__type.background" + }, + "3103": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3104": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3105": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3106": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3107": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "" + }, + "3108": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "TabViewDesignTokens" + }, + "3109": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "TabViewDesignTokens.root" + }, + "3110": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type" + }, + "3111": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3112": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "TabViewDesignTokens.tabList" + }, + "3113": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type" + }, + "3114": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.background" + }, + "3115": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3116": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "TabViewDesignTokens.tab" + }, + "3117": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type" + }, + "3118": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3119": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.activeBorderColor" + }, + "3120": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.color" + }, + "3121": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3122": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "3123": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "TabViewDesignTokens.tabPanel" + }, + "3124": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type" + }, + "3125": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.background" + }, + "3126": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.color" + }, + "3127": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "TabViewDesignTokens.navButton" + }, + "3128": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type" + }, + "3129": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.background" + }, + "3130": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.color" + }, + "3131": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3132": { + "sourceFileName": "src/app/components/themes/types/tabview/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3133": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3134": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3135": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3136": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3137": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "" + }, + "3138": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens" + }, + "3139": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.root" + }, + "3140": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3141": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "3142": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3143": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3144": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3145": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3146": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.roundedBorderRadius" + }, + "3147": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.icon" + }, + "3148": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3149": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.size" + }, + "3150": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.primary" + }, + "3151": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3152": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3153": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3154": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.secondary" + }, + "3155": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3156": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3157": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3158": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.success" + }, + "3159": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3160": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3161": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3162": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.info" + }, + "3163": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3164": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3165": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3166": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.warn" + }, + "3167": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3168": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3169": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3170": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.danger" + }, + "3171": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3172": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3173": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3174": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "TagDesignTokens.contrast" + }, + "3175": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type" + }, + "3176": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.background" + }, + "3177": { + "sourceFileName": "src/app/components/themes/types/tag/index.d.ts", + "qualifiedName": "__type.color" + }, + "3178": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3179": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3180": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3181": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3182": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "" + }, + "3183": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "TerminalDesignTokens" + }, + "3184": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "TerminalDesignTokens.root" + }, + "3185": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type" + }, + "3186": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.background" + }, + "3187": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3188": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.color" + }, + "3189": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.height" + }, + "3190": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3191": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3192": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "TerminalDesignTokens.prompt" + }, + "3193": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type" + }, + "3194": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3195": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "TerminalDesignTokens.commandResponse" + }, + "3196": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type" + }, + "3197": { + "sourceFileName": "src/app/components/themes/types/terminal/index.d.ts", + "qualifiedName": "__type.margin" + }, + "3198": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3199": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3200": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3201": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3202": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "" + }, + "3203": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "TextareaDesignTokens" + }, + "3204": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "TextareaDesignTokens.root" + }, + "3205": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type" + }, + "3206": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.background" + }, + "3207": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "3208": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "3209": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "3210": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3211": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "3212": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "3213": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "3214": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.color" + }, + "3215": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "3216": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "3217": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3218": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "3219": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "3220": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3221": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3222": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type" + }, + "3223": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.width" + }, + "3224": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.style" + }, + "3225": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.color" + }, + "3226": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3227": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3228": { + "sourceFileName": "src/app/components/themes/types/textarea/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3229": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3230": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3231": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3232": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3233": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "" + }, + "3234": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens" + }, + "3235": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens.root" + }, + "3236": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3237": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "3238": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3239": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3240": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3241": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3242": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3243": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens.list" + }, + "3244": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3245": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3246": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3247": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens.item" + }, + "3248": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3249": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.focusBackground" + }, + "3250": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.activeBackground" + }, + "3251": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3252": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "3253": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "3254": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3255": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3256": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3257": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.icon" + }, + "3258": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3259": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3260": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "3261": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.activeColor" + }, + "3262": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens.submenuLabel" + }, + "3263": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3264": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3265": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3266": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.background" + }, + "3267": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3268": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens.submenuIcon" + }, + "3269": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3270": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.size" + }, + "3271": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.color" + }, + "3272": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.focusColor" + }, + "3273": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", "qualifiedName": "__type.activeColor" }, - "15": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3274": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "TieredMenuDesignTokens.separator" + }, + "3275": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type" + }, + "3276": { + "sourceFileName": "src/app/components/themes/types/tieredmenu/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3277": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3278": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3279": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3280": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3281": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "" + }, + "3282": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "TimelineDesignTokens" + }, + "3283": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "TimelineDesignTokens.event" + }, + "3284": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3285": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.minHeight" + }, + "3286": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "TimelineDesignTokens.horizontal" + }, + "3287": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3288": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.eventContent" + }, + "3289": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3290": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3291": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "TimelineDesignTokens.vertical" + }, + "3292": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3293": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.eventContent" + }, + "3294": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3295": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3296": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "TimelineDesignTokens.eventMarker" + }, + "3297": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3298": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.size" + }, + "3299": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3300": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3301": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.background" + }, + "3302": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3303": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.content" + }, + "3304": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3305": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3306": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.size" + }, + "3307": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.background" + }, + "3308": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.insetShadow" + }, + "3309": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "TimelineDesignTokens.eventConnector" + }, + "3310": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type" + }, + "3311": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.color" + }, + "3312": { + "sourceFileName": "src/app/components/themes/types/timeline/index.d.ts", + "qualifiedName": "__type.size" + }, + "3313": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3314": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3315": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3316": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3317": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "" + }, + "3318": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens" + }, + "3319": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.root" + }, + "3320": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3321": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.width" + }, + "3322": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3323": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3324": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3325": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.icon" + }, + "3326": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3327": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.size" + }, + "3328": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.content" + }, + "3329": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3330": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3331": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3332": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.text" + }, + "3333": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3334": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3335": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.summary" + }, + "3336": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3337": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3338": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "3339": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.detail" + }, + "3340": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3341": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3342": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.fontSize" + }, + "3343": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.closeButton" + }, + "3344": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3345": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.width" + }, + "3346": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.height" + }, + "3347": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3348": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3349": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3350": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.width" + }, + "3351": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.style" + }, + "3352": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3353": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.closeIcon" + }, + "3354": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3355": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.size" + }, + "3356": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.blur" + }, + "3357": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3358": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.0" + }, + "3359": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.1" + }, + "3360": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.2" + }, + "3361": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.3" + }, + "3362": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.4" + }, + "3363": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.info" + }, + "3364": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3365": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.background" + }, + "3366": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3367": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3368": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.detailColor" + }, + "3369": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3370": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "3371": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3372": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3373": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3374": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3375": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3376": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3377": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.success" + }, + "3378": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3379": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.background" + }, + "3380": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3381": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3382": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.detailColor" + }, + "3383": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3384": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "3385": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3386": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3387": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3388": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3389": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3390": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3391": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.warn" + }, + "3392": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3393": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.background" + }, + "3394": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3395": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3396": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.detailColor" + }, + "3397": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3398": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "3399": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3400": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3401": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3402": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3403": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3404": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3405": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.error" + }, + "3406": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3407": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.background" + }, + "3408": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3409": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3410": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.detailColor" + }, + "3411": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3412": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "3413": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3414": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3415": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3416": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3417": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3418": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3419": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.secondary" + }, + "3420": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3421": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.background" + }, + "3422": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3423": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3424": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.detailColor" + }, + "3425": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3426": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "3427": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3428": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3429": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3430": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3431": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3432": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3433": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "ToastDesignTokens.contrast" + }, + "3434": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3435": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.background" + }, + "3436": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3437": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3438": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.detailColor" + }, + "3439": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3440": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.closeButton" + }, + "3441": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3442": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3443": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3444": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type" + }, + "3445": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.color" + }, + "3446": { + "sourceFileName": "src/app/components/themes/types/toast/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3447": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3448": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3449": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3450": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3451": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "" + }, + "3452": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "ToggleButtonDesignTokens" + }, + "3453": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "ToggleButtonDesignTokens.root" + }, + "3454": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type" + }, + "3455": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3456": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3457": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3458": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3459": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "3460": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.disabledBorderColor" + }, + "3461": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "3462": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "3463": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3464": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type" + }, + "3465": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.width" + }, + "3466": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.style" + }, + "3467": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.color" + }, + "3468": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3469": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3470": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3471": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.background" + }, + "3472": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.checkedBackground" + }, + "3473": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3474": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3475": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.color" + }, + "3476": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3477": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.checkedColor" + }, + "3478": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.checkedBorderColor" + }, + "3479": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "ToggleButtonDesignTokens.icon" + }, + "3480": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type" + }, + "3481": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "3482": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.color" + }, + "3483": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3484": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.checkedColor" + }, + "3485": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "ToggleButtonDesignTokens.content" + }, + "3486": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type" + }, + "3487": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.left" + }, + "3488": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.top" + }, + "3489": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.checkedShadow" + }, + "3490": { + "sourceFileName": "src/app/components/themes/types/togglebutton/index.d.ts", + "qualifiedName": "__type.checkedBackground" + }, + "3491": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3492": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3493": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3494": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3495": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "" + }, + "3496": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "ToggleSwitchDesignTokens" + }, + "3497": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "ToggleSwitchDesignTokens.root" + }, + "3498": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type" + }, + "3499": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.width" + }, + "3500": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.height" + }, + "3501": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3502": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3503": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3504": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3505": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type" + }, + "3506": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.width" + }, + "3507": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.style" + }, + "3508": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.color" + }, + "3509": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3510": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3511": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3512": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3513": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "3514": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.checkedBorderColor" + }, + "3515": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.checkedHoverBorderColor" + }, + "3516": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "3517": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3518": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.slideDuration" + }, + "3519": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "3520": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.background" + }, + "3521": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3522": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.checkedBackground" + }, + "3523": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.checkedHoverBackground" + }, + "3524": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "ToggleSwitchDesignTokens.handle" + }, + "3525": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type" + }, + "3526": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3527": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.size" + }, + "3528": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "3529": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.background" + }, + "3530": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3531": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.checkedBackground" + }, + "3532": { + "sourceFileName": "src/app/components/themes/types/toggleswitch/index.d.ts", + "qualifiedName": "__type.checkedHoverBackground" + }, + "3533": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3534": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3535": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3536": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3537": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "" + }, + "3538": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "ToolbarDesignTokens" + }, + "3539": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "ToolbarDesignTokens.root" + }, + "3540": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "__type" + }, + "3541": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "__type.background" + }, + "3542": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3543": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3544": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "__type.color" + }, + "3545": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3546": { + "sourceFileName": "src/app/components/themes/types/toolbar/index.d.ts", "qualifiedName": "__type.padding" }, - "16": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.fontWeight" + "3547": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "17": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3548": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3549": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3550": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3551": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "" + }, + "3552": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "TooltipDesignTokens" + }, + "3553": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "TooltipDesignTokens.root" + }, + "3554": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type" + }, + "3555": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type.maxWidth" + }, + "3556": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type.gutter" + }, + "3557": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3558": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3559": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", "qualifiedName": "__type.borderRadius" }, - "18": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" + "3560": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type.background" }, - "19": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderColor" + "3561": { + "sourceFileName": "src/app/components/themes/types/tooltip/index.d.ts", + "qualifiedName": "__type.color" }, - "20": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3562": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3563": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3564": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3565": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3566": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "" + }, + "3567": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "TreeDesignTokens" + }, + "3568": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "TreeDesignTokens.root" + }, + "3569": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type" + }, + "3570": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.background" }, - "21": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3571": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.color" + }, + "3572": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3573": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3574": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.indent" + }, + "3575": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3576": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "TreeDesignTokens.node" + }, + "3577": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type" + }, + "3578": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3579": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3580": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.hoverBackground" }, - "22": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBackground" + "3581": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.selectedBackground" }, - "23": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverBackground" + "3582": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.color" }, - "24": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3583": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3584": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "3585": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.focusRing" }, - "25": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3586": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type" }, - "26": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3587": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.width" }, - "27": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3588": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.style" }, - "28": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3589": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.color" }, - "29": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3590": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.offset" }, - "30": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3591": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.shadow" }, - "31": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.toggleIcon" + "3592": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.gap" }, - "32": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3593": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "TreeDesignTokens.nodeIcon" + }, + "3594": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type" }, - "33": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3595": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.color" }, - "34": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3596": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type.hoverColor" }, - "35": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeColor" + "3597": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.selectedColor" }, - "36": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeHoverColor" + "3598": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "TreeDesignTokens.nodeToggleButton" }, - "37": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.first" + "3599": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type" }, - "38": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3600": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3601": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.size" + }, + "3602": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3603": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.selectedHoverBackground" + }, + "3604": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.color" + }, + "3605": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3606": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.selectedHoverColor" + }, + "3607": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3608": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type" }, - "39": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.topBorderRadius" + "3609": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.width" }, - "40": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" + "3610": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.style" }, - "41": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.last" + "3611": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.color" }, - "42": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3612": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3613": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3614": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "TreeDesignTokens.loadingIcon" + }, + "3615": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", "qualifiedName": "__type" }, - "43": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.bottomBorderRadius" + "3616": { + "sourceFileName": "src/app/components/themes/types/tree/index.d.ts", + "qualifiedName": "__type.size" }, - "44": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.activeBottomBorderRadius" + "3617": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "45": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "AccordionDesignTokens.content" + "3618": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" }, - "46": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3619": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3620": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3621": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "" + }, + "3622": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens" + }, + "3623": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens.root" + }, + "3624": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", "qualifiedName": "__type" }, - "47": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", - "qualifiedName": "__type.borderWidth" + "3625": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.background" }, - "48": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3626": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.disabledBackground" + }, + "3627": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.filledBackground" + }, + "3628": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.filledFocusBackground" + }, + "3629": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", "qualifiedName": "__type.borderColor" }, - "49": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3630": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.hoverBorderColor" + }, + "3631": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.focusBorderColor" + }, + "3632": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.invalidBorderColor" + }, + "3633": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "3634": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.disabledColor" + }, + "3635": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.placeholderColor" + }, + "3636": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3637": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.paddingX" + }, + "3638": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.paddingY" + }, + "3639": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3640": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3641": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type" + }, + "3642": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.width" + }, + "3643": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.style" + }, + "3644": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "3645": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3646": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3647": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3648": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens.dropdown" + }, + "3649": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type" + }, + "3650": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.width" + }, + "3651": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.color" + }, + "3652": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens.overlay" + }, + "3653": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type" + }, + "3654": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", "qualifiedName": "__type.background" }, - "50": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3655": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3656": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3657": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", "qualifiedName": "__type.color" }, - "51": { - "sourceFileName": "src/app/components/themes/types/accordion/index.ts", + "3658": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3659": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens.tree" + }, + "3660": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type" + }, + "3661": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", "qualifiedName": "__type.padding" }, - "52": { + "3662": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens.emptyMessage" + }, + "3663": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type" + }, + "3664": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3665": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "TreeSelectDesignTokens.chip" + }, + "3666": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type" + }, + "3667": { + "sourceFileName": "src/app/components/themes/types/treeselect/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3668": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "ColorSchemeDesignToken.colorScheme" }, - "53": { + "3669": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type" }, - "54": { + "3670": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.light" }, - "55": { + "3671": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" }, - "56": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "3672": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", "qualifiedName": "" }, - "57": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens" + "3673": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens" }, - "58": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.root" + "3674": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.root" }, - "59": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "3675": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", "qualifiedName": "__type" }, - "60": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "3676": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.transitionDuration" + }, + "3677": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3678": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.header" + }, + "3679": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3680": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", "qualifiedName": "__type.background" }, - "61": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" + "3681": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "62": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" + "3682": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" }, - "63": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" + "3683": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderWidth" }, - "64": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.header" + "3684": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.padding" }, - "65": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" + "3685": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.headerCell" }, - "66": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.background" + "3686": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" }, - "67": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.color" + "3687": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.background" }, - "68": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" + "3688": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverBackground" }, - "69": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderColor" + "3689": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedBackground" }, - "70": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderWidth" + "3690": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" }, - "71": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.borderRadius" + "3691": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" }, - "72": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.toggleableHeader" + "3692": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverColor" }, - "73": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" + "3693": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedColor" }, - "74": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" + "3694": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.gap" }, - "75": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.title" + "3695": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.padding" }, - "76": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", + "3696": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3697": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", "qualifiedName": "__type" }, - "77": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.fontWeight" + "3698": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.width" }, - "78": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.content" + "3699": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.style" }, - "79": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" + "3700": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" }, - "80": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" + "3701": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.offset" }, - "81": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "PanelDesignTokens.footer" + "3702": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.shadow" }, - "82": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type" + "3703": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.columnTitle" }, - "83": { - "sourceFileName": "src/app/components/themes/types/panel/index.d.ts", - "qualifiedName": "__type.padding" + "3704": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" }, - "84": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "ColorSchemeDesignToken.colorScheme" + "3705": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.fontWeight" }, - "85": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type" + "3706": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.row" }, - "86": { - "sourceFileName": "src/app/components/themes/types/index.d.ts", - "qualifiedName": "__type.light" + "3707": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" }, - "87": { + "3708": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.background" + }, + "3709": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3710": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedBackground" + }, + "3711": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3712": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3713": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedColor" + }, + "3714": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3715": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3716": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.width" + }, + "3717": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.style" + }, + "3718": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3719": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3720": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3721": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.bodyCell" + }, + "3722": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3723": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3724": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3725": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.gap" + }, + "3726": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedBorderColor" + }, + "3727": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.footerCell" + }, + "3728": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3729": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.background" + }, + "3730": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3731": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3732": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3733": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.columnFooter" + }, + "3734": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3735": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.fontWeight" + }, + "3736": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.footer" + }, + "3737": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3738": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.background" + }, + "3739": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3740": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3741": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3742": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.padding" + }, + "3743": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.columnResizerWidth" + }, + "3744": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3745": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.0" + }, + "3746": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.1" + }, + "3747": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.2" + }, + "3748": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.3" + }, + "3749": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.4" + }, + "3750": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.5" + }, + "3751": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.resizeIndicator" + }, + "3752": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3753": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.width" + }, + "3754": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3755": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.sortIcon" + }, + "3756": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3757": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3758": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3759": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.loadingIcon" + }, + "3760": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3761": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.size" + }, + "3762": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.nodeToggleButton" + }, + "3763": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3764": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverBackground" + }, + "3765": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedHoverBackground" + }, + "3766": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3767": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.hoverColor" + }, + "3768": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.selectedHoverColor" + }, + "3769": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.size" + }, + "3770": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderRadius" + }, + "3771": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.focusRing" + }, + "3772": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3773": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.width" + }, + "3774": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.style" + }, + "3775": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.color" + }, + "3776": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.offset" + }, + "3777": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.shadow" + }, + "3778": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.paginatorTop" + }, + "3779": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3780": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3781": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3782": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "TreeTableDesignTokens.paginatorBottom" + }, + "3783": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type" + }, + "3784": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderColor" + }, + "3785": { + "sourceFileName": "src/app/components/themes/types/treetable/index.d.ts", + "qualifiedName": "__type.borderWidth" + }, + "3786": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3787": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3788": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3789": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.dark" + }, + "3790": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "" + }, + "3791": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "VirtualScrollerDesignTokens" + }, + "3792": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "VirtualScrollerDesignTokens.loaderMask" + }, + "3793": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "__type" + }, + "3794": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "__type.background" + }, + "3795": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "__type.color" + }, + "3796": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "VirtualScrollerDesignTokens.loaderIcon" + }, + "3797": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "__type" + }, + "3798": { + "sourceFileName": "src/app/components/themes/types/virtualscroller/index.d.ts", + "qualifiedName": "__type.size" + }, + "3799": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "ColorSchemeDesignToken.colorScheme" + }, + "3800": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type" + }, + "3801": { + "sourceFileName": "src/app/components/themes/types/index.d.ts", + "qualifiedName": "__type.light" + }, + "3802": { "sourceFileName": "src/app/components/themes/types/index.d.ts", "qualifiedName": "__type.dark" } } -} +} \ No newline at end of file diff --git a/src/app/showcase/doc/apidoc/index.json b/src/app/showcase/doc/apidoc/index.json index 3a6eb1b9bde..44334538283 100644 --- a/src/app/showcase/doc/apidoc/index.json +++ b/src/app/showcase/doc/apidoc/index.json @@ -1754,10 +1754,12 @@ "values": [ { "name": "OverlayModeType", + "value": "\"modal\" | \"overlay\" | undefined", "description": "Represents the type of overlay mode, which can be 'modal', 'overlay', or undefined." }, { "name": "ResponsiveOverlayDirectionType", + "value": "\"center\" | \"top\" | \"top-start\" | \"top-end\" | \"bottom\" | \"bottom-start\" | \"bottom-end\" | \"left\" | \"left-start\" | \"left-end\" | \"right\" | \"right-start\" | \"right-end\" | undefined", "description": "Represents the type of direction for a responsive overlay, which can be one of the specified values or undefined." } ] @@ -4225,6 +4227,209 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "AutoCompleteCompleteEvent", + "description": "Custom complete event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "query", + "optional": false, + "readonly": false, + "type": "string", + "description": "Selected option value." + } + ] + }, + { + "name": "AutoCompleteDropdownClickEvent", + "description": "Custom click event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "query", + "optional": false, + "readonly": false, + "type": "string", + "description": "Selected option value." + } + ] + }, + { + "name": "AutoCompleteSelectEvent", + "description": "Custom select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Selected value." + } + ] + }, + { + "name": "AutoCompleteUnselectEvent", + "description": "Custom unselect event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Removed value." + } + ] + }, + { + "name": "AutoCompleteLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "any", + "description": "First element in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "any", + "description": "Last element in viewport." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "autocomplete", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Option.\n \t index: number, // Option index.\n }", + "description": "option data." + } + ], + "description": "Custom item template." + }, + { + "parent": "autocomplete", + "name": "group", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Option group.\n }", + "description": "group data." + } + ], + "description": "Custom group template." + }, + { + "parent": "autocomplete", + "name": "selectedItem", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Selected value.\n }", + "description": "selected item data." + } + ], + "description": "Custom selected item template, only supported in multiple mode." + }, + { + "parent": "autocomplete", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "autocomplete", + "name": "empty", + "parameters": [], + "description": "Custom empty template." + }, + { + "parent": "autocomplete", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "autocomplete", + "name": "loader", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: ScrollerOptions, // Virtual scroller options.\n }", + "description": "scroller options." + } + ], + "description": "Custom loader template." + }, + { + "parent": "autocomplete", + "name": "removetokenicon", + "parameters": [], + "description": "Custom remove token icon template." + }, + { + "parent": "autocomplete", + "name": "loadingicon", + "parameters": [], + "description": "Custom loading icon template." + }, + { + "parent": "autocomplete", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "autocomplete", + "name": "dropdownicon", + "parameters": [], + "description": "Custom dropdown icon template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -4643,6 +4848,20 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "blockui", + "name": "content", + "parameters": [], + "description": "Custom template of content." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -4716,6 +4935,56 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "BreadcrumbItemClickEvent", + "description": "Custom select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "item", + "optional": false, + "readonly": false, + "type": "MenuItem", + "description": "Selected menu item ." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "breadcrumb", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Data of the item.\n }" + } + ], + "description": "Custom template of item." + }, + { + "parent": "breadcrumb", + "name": "separator", + "parameters": [], + "description": "Custom template of separator." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -5089,6 +5358,42 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "button", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "button", + "name": "icon", + "parameters": [ + { + "name": "context", + "type": "{\n \t class: NgClass, // Icon class.\n }" + } + ], + "description": "Custom template of icon." + }, + { + "parent": "button", + "name": "loadingicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t class: NgClass, // Icon class.\n }" + } + ], + "description": "Custom template of loadingicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -5779,99 +6084,430 @@ } } }, - "style": { - "components": {} - } - }, - "card": { - "components": { - "Card": { - "description": "Card is a flexible container component.", - "props": { - "description": "Defines the input properties of the component.", - "values": [ - { - "name": "header", - "optional": false, - "readonly": false, - "type": "string", - "description": "Header of the card." - }, - { - "name": "subheader", - "optional": false, - "readonly": false, - "type": "string", - "description": "Subheader of the card." - }, - { - "name": "style", - "optional": false, - "readonly": false, - "type": null, - "description": "Inline style of the element." - }, - { - "name": "styleClass", - "optional": false, - "readonly": false, - "type": "string", - "description": "Class of the element." - } - ] - } - } - }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-card", - "description": "Class name of the root element" + "name": "CalendarYearChangeEvent", + "description": "Custom Calendar year change event.", + "props": [ + { + "name": "month", + "optional": true, + "readonly": false, + "type": "number", + "description": "New month." + }, + { + "name": "year", + "optional": true, + "readonly": false, + "type": "number", + "description": "New year." + } + ] }, { - "class": "p-card-header", - "description": "Class name of the header element" + "name": "CalendarMonthChangeEvent", + "description": "Custom Calendar month change event.", + "props": [ + { + "name": "month", + "optional": true, + "readonly": false, + "type": "number", + "description": "New month." + }, + { + "name": "year", + "optional": true, + "readonly": false, + "type": "number", + "description": "New year." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "calendar", + "name": "date", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: Date, // Date value of the component.\n }", + "description": "date value instance." + } + ], + "description": "Custom header template." }, { - "class": "p-card-body", - "description": "Class name of the body element" + "parent": "calendar", + "name": "decade", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: Date, // An array containing the start and and year of a decade to display at header of the year picker.\n }", + "description": "date value instance." + } + ], + "description": "Custom decade template" }, { - "class": "p-card-caption", - "description": "Class name of the caption element" + "parent": "calendar", + "name": "disabledDate", + "parameters": [], + "description": "Custom disabled date template." }, { - "class": "p-card-title", - "description": "Class name of the title element" + "parent": "calendar", + "name": "header", + "parameters": [], + "description": "Custom header template." }, { - "class": "p-card-subtitle", - "description": "Class name of the subtitle element" + "parent": "calendar", + "name": "inputIconTemplate", + "parameters": [ + { + "name": "context", + "type": "{\n \t clickCallBack: undefined, // Click callback\n }", + "description": "input icon template params." + } + ], + "description": "Custom input icon template." }, { - "class": "p-card-content", - "description": "Class name of the content element" + "parent": "calendar", + "name": "previousicon", + "parameters": [], + "description": "Custom previous icon template." }, { - "class": "p-card-footer", - "description": "Class name of the footer element" + "parent": "calendar", + "name": "nexticon", + "parameters": [], + "description": "Custom next icon template." + }, + { + "parent": "calendar", + "name": "triggericon", + "parameters": [], + "description": "Custom dropdown trigger icon template." + }, + { + "parent": "calendar", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "calendar", + "name": "decrementicon", + "parameters": [], + "description": "Custom decrement icon template." + }, + { + "parent": "calendar", + "name": "incrementicon", + "parameters": [], + "description": "Custom increment icon template." + }, + { + "parent": "calendar", + "name": "footer", + "parameters": [], + "description": "Custom footer template." } ] - } - } - }, - "carousel": { - "components": { - "Carousel": { - "description": "Carousel is a content slider featuring various customization options.", - "props": { - "description": "Defines the input properties of the component.", - "values": [ - { - "name": "page", - "optional": false, + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "LocaleSettings", + "description": "Locale settings options.", + "props": [ + { + "name": "firstDayOfWeek", + "optional": true, + "readonly": false, + "type": "number", + "description": "Day value." + }, + { + "name": "dayNames", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Day names." + }, + { + "name": "dayNamesShort", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Shortened day names." + }, + { + "name": "dayNamesMin", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Minimum days names." + }, + { + "name": "monthNames", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Month names." + }, + { + "name": "monthNamesShort", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Shortened month names." + }, + { + "name": "today", + "optional": true, + "readonly": false, + "type": "string", + "description": "Value of today date string." + }, + { + "name": "clear", + "optional": true, + "readonly": false, + "type": "string", + "description": "Clear." + }, + { + "name": "dateFormat", + "optional": true, + "readonly": false, + "type": "string", + "description": "Date format." + }, + { + "name": "weekHeader", + "optional": true, + "readonly": false, + "type": "string", + "description": "Week header." + } + ] + }, + { + "name": "Month", + "description": "Month interface.", + "props": [ + { + "name": "month", + "optional": true, + "readonly": false, + "type": "number", + "description": "Mont value." + }, + { + "name": "year", + "optional": true, + "readonly": false, + "type": "number", + "description": "Year value." + }, + { + "name": "dates", + "optional": true, + "readonly": false, + "type": "Date[]", + "description": "Array of dates." + }, + { + "name": "weekNumbers", + "optional": true, + "readonly": false, + "type": "number[]", + "description": "Array of week numbers." + } + ] + }, + { + "name": "CalendarResponsiveOptions", + "description": "Custom Calendar responsive options metadata.", + "props": [ + { + "name": "breakpoint", + "optional": true, + "readonly": false, + "type": "string", + "description": "Breakpoint for responsive mode. Exp;" + }, + { + "name": "numMonths", + "optional": true, + "readonly": false, + "type": "number", + "description": "The number of visible months on breakpoint." + } + ] + } + ] + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": [ + { + "name": "CalendarTypeView", + "value": "\"date\" | \"month\" | \"year\"", + "description": "Custom type for the calendar views." + }, + { + "name": "NavigationState", + "value": "{\n \"backward\": \"boolean\",\n \"button\": \"boolean\"\n}", + "description": "Custom type for the calendar navigation state." + } + ] + } + }, + "style": { + "components": {} + } + }, + "card": { + "components": { + "Card": { + "description": "Card is a flexible container component.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ + { + "name": "header", + "optional": false, + "readonly": false, + "type": "string", + "description": "Header of the card." + }, + { + "name": "subheader", + "optional": false, + "readonly": false, + "type": "string", + "description": "Subheader of the card." + }, + { + "name": "style", + "optional": false, + "readonly": false, + "type": null, + "description": "Inline style of the element." + }, + { + "name": "styleClass", + "optional": false, + "readonly": false, + "type": "string", + "description": "Class of the element." + } + ] + } + } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "card", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "card", + "name": "title", + "parameters": [], + "description": "Custom template of title." + }, + { + "parent": "card", + "name": "subtitle", + "parameters": [], + "description": "Custom template of subtitle." + }, + { + "parent": "card", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "card", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-card", + "description": "Class name of the root element" + }, + { + "class": "p-card-header", + "description": "Class name of the header element" + }, + { + "class": "p-card-body", + "description": "Class name of the body element" + }, + { + "class": "p-card-caption", + "description": "Class name of the caption element" + }, + { + "class": "p-card-title", + "description": "Class name of the title element" + }, + { + "class": "p-card-subtitle", + "description": "Class name of the subtitle element" + }, + { + "class": "p-card-content", + "description": "Class name of the content element" + }, + { + "class": "p-card-footer", + "description": "Class name of the footer element" + } + ] + } + } + }, + "carousel": { + "components": { + "Carousel": { + "description": "Carousel is a content slider featuring various customization options.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ + { + "name": "page", + "optional": false, "readonly": false, "type": "number", "description": "Index of the first item." @@ -6037,6 +6673,100 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "CarouselPageEvent", + "description": "Custom page event.", + "props": [ + { + "name": "page", + "optional": true, + "readonly": false, + "type": "number", + "description": "Current page." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "carousel", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "carousel", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the item.\n }", + "description": "item data." + } + ], + "description": "Custom template of item." + }, + { + "parent": "carousel", + "name": "previousicon", + "parameters": [], + "description": "Custom template of previousicon." + }, + { + "parent": "carousel", + "name": "nexticon", + "parameters": [], + "description": "Custom template of nexticon." + }, + { + "parent": "carousel", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "CarouselResponsiveOptions", + "description": "Responsive options of the component.", + "props": [ + { + "name": "breakpoint", + "optional": false, + "readonly": false, + "type": "string", + "description": "Breakpoint for responsive mode. Exp;" + }, + { + "name": "numVisible", + "optional": false, + "readonly": false, + "type": "number", + "description": "The number of visible items on breakpoint." + }, + { + "name": "numScroll", + "optional": false, + "readonly": false, + "type": "number", + "description": "The number of scrolled items on breakpoint." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -6488,26 +7218,222 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-cascadeselect", - "description": "Class name of the root element" - }, - { - "class": "p-cascadeselect-label", - "description": "Class name of the label element" - }, - { - "class": "p-cascadeselect-dropdown", - "description": "Class name of the dropdown element" + "name": "CascadeSelectShowEvent", + "description": "Custom panel show event.", + "props": [ + { + "name": "overlay", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Overlay element." + }, + { + "name": "target", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Target element." + }, + { + "name": "overlayMode", + "optional": true, + "readonly": false, + "type": "string", + "description": "Overlay mode." + } + ] }, { - "class": "p-cascadeselect-loading-icon", - "description": "Class name of the loading icon element" - }, + "name": "CascadeSelectHideEvent", + "description": "Custom panel hide event.", + "props": [ + { + "name": "overlay", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Overlay element." + }, + { + "name": "target", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Target element." + }, + { + "name": "overlayMode", + "optional": true, + "readonly": false, + "type": "string", + "description": "Overlay mode." + } + ] + }, + { + "name": "CascadeSelectBeforeShowEvent", + "description": "Custom panel show event emits right before the panel is shown.", + "props": [ + { + "name": "overlay", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Overlay element." + }, + { + "name": "target", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Target element." + }, + { + "name": "overlayMode", + "optional": true, + "readonly": false, + "type": "string", + "description": "Overlay mode." + } + ] + }, + { + "name": "CascadeSelectBeforeHideEvent", + "description": "Custom panel hide event emits right before the panel is hidden.", + "props": [ + { + "name": "overlay", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Overlay element." + }, + { + "name": "target", + "optional": true, + "readonly": false, + "type": "HTMLElement | ElementRef | TemplateRef | Overlay", + "description": "Target element." + }, + { + "name": "overlayMode", + "optional": true, + "readonly": false, + "type": "string", + "description": "Overlay mode." + } + ] + }, + { + "name": "CascadeSelectChangeEvent", + "description": "Custom panel change event emits when selection changed.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": true, + "readonly": false, + "type": "any", + "description": "Selected value." + }, + { + "name": "isFocus", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Focus state." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "cascadeselect", + "name": "value", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Value.\n \t placeholder: string, // Placeholder.\n }", + "description": "value data." + } + ], + "description": "Custom value template." + }, + { + "parent": "cascadeselect", + "name": "option", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Option instance.\n }", + "description": "option data." + } + ], + "description": "Custom option template." + }, + { + "parent": "cascadeselect", + "name": "triggericon", + "parameters": [], + "description": "Custom dropdown trigger icon template." + }, + { + "parent": "cascadeselect", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "cascadeselect", + "name": "optiongroupicon", + "parameters": [], + "description": "Custom option group icon template." + }, + { + "parent": "cascadeselect", + "name": "loadingicon", + "parameters": [], + "description": "Custom loading icon template." + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-cascadeselect", + "description": "Class name of the root element" + }, + { + "class": "p-cascadeselect-label", + "description": "Class name of the label element" + }, + { + "class": "p-cascadeselect-dropdown", + "description": "Class name of the dropdown element" + }, + { + "class": "p-cascadeselect-loading-icon", + "description": "Class name of the loading icon element" + }, { "class": "p-cascadeselect-dropdown-icon", "description": "Class name of the dropdown icon element" @@ -6853,6 +7779,45 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "CheckboxChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "checked", + "optional": true, + "readonly": false, + "type": "any", + "description": "Checked value." + }, + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "checkbox", + "name": "icon", + "parameters": [], + "description": "Custom checkbox icon template" + } + ] + } + }, "style": { "components": {}, "classes": { @@ -6977,6 +7942,26 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "chip", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "chip", + "name": "removeicon", + "parameters": [], + "description": "Custom template of remove icon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -7150,6 +8135,34 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "ColorPickerChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "string | object", + "description": "Selected color value." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -7458,6 +8471,66 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "confirmdialog", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "confirmdialog", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + }, + { + "parent": "confirmdialog", + "name": "message", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // undefined\n }" + } + ], + "description": "Custom template of message." + }, + { + "parent": "confirmdialog", + "name": "icon", + "parameters": [], + "description": "Custom template of icon." + }, + { + "parent": "confirmdialog", + "name": "rejecticon", + "parameters": [], + "description": "Custom template of rejecticon." + }, + { + "parent": "confirmdialog", + "name": "accepticon", + "parameters": [], + "description": "Custom template of accepticon." + }, + { + "parent": "confirmdialog", + "name": "headless", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // undefined\n }" + } + ], + "description": "Headless template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -7565,6 +8638,48 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "confirmpopup", + "name": "content", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // undefined\n }" + } + ], + "description": "Custom content template." + }, + { + "parent": "confirmpopup", + "name": "rejecticon", + "parameters": [], + "description": "Custom template of rejecticon." + }, + { + "parent": "confirmpopup", + "name": "accepticon", + "parameters": [], + "description": "Custom template of accepticon." + }, + { + "parent": "confirmpopup", + "name": "headless", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // undefined\n }" + } + ], + "description": "Headless template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -7733,6 +8848,36 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "contextmenu", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Item instance.\n }" + } + ], + "description": "Custom item template." + }, + { + "parent": "contextmenu", + "name": "submenuicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t class: string, // Style class of the submenu icon.\n }" + } + ], + "description": "Custom template of submenuicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -8071,25 +9216,260 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-dataview", - "description": "Class name of the root element" + "name": "DataViewLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the first element." + }, + { + "name": "rows", + "optional": false, + "readonly": false, + "type": "number", + "description": "Row count." + }, + { + "name": "sortField", + "optional": false, + "readonly": false, + "type": "string", + "description": "Property name of data to use in sorting by default." + }, + { + "name": "sortOrder", + "optional": false, + "readonly": false, + "type": "number", + "description": "Order to sort the data by default." + } + ] }, { - "class": "p-dataview-header", - "description": "Class name of the header element" + "name": "DataViewPageEvent", + "description": "Custom page event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the first element." + }, + { + "name": "rows", + "optional": false, + "readonly": false, + "type": "number", + "description": "Row count." + } + ] }, { - "class": "p-dataview-paginator-[position]", - "description": "Class name of the paginator element" + "name": "DataViewSortEvent", + "description": "Custom sort event.", + "props": [ + { + "name": "sortField", + "optional": false, + "readonly": false, + "type": "string", + "description": "Sort field." + }, + { + "name": "sortOrder", + "optional": false, + "readonly": false, + "type": "number", + "description": "Sort order." + } + ] }, { - "class": "p-dataview-content", - "description": "Class name of the content element" + "name": "DataViewLayoutChangeEvent", + "description": "Custom layout change.", + "props": [ + { + "name": "layout", + "optional": false, + "readonly": false, + "type": "\"grid\" | \"list\"", + "description": "Layout of the component." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "dataview", + "name": "listItem", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Row data.\n \t rowIndex: number, // Row index.\n }", + "description": "data of the item." + } + ], + "description": "Custom list item template." + }, + { + "parent": "dataview", + "name": "gridItem", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Row data.\n \t rowIndex: number, // Row index.\n }", + "description": "data of the item." + } + ], + "description": "Custom grid item template." + }, + { + "parent": "dataview", + "name": "paginatorleft", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: DataViewPaginatorState, // State of the paginator.\n }", + "description": "paginator state." + } + ], + "description": "Custom paginator left template." + }, + { + "parent": "dataview", + "name": "paginatorright", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: DataViewPaginatorState, // State of the paginator.\n }", + "description": "paginator state." + } + ], + "description": "Custom paginator right template." + }, + { + "parent": "dataview", + "name": "paginatordropdownitem", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Dropdown item instance.\n }", + "description": "dropdown item." + } + ], + "description": "Custom paginator dropdown template." + }, + { + "parent": "dataview", + "name": "empty", + "parameters": [], + "description": "Custom empty message template." + }, + { + "parent": "dataview", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "dataview", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "dataview", + "name": "loadingicon", + "parameters": [], + "description": "Custom loading icon template." + }, + { + "parent": "dataview", + "name": "listicon", + "parameters": [], + "description": "Custom list icon template." + }, + { + "parent": "dataview", + "name": "gridicon", + "parameters": [], + "description": "Custom grid icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "DataViewPaginatorState", + "description": "State of the paginator.", + "props": [ + { + "name": "page", + "optional": true, + "readonly": false, + "type": "number", + "description": "Current page." + }, + { + "name": "first", + "optional": true, + "readonly": false, + "type": "number", + "description": "First item in the current page." + }, + { + "name": "rows", + "optional": true, + "readonly": false, + "type": "number", + "description": "Row count." + }, + { + "name": "pageCount", + "optional": true, + "readonly": false, + "type": "number", + "description": "Page count." + } + ] + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-dataview", + "description": "Class name of the root element" + }, + { + "class": "p-dataview-header", + "description": "Class name of the header element" + }, + { + "class": "p-dataview-paginator-[position]", + "description": "Class name of the paginator element" + }, + { + "class": "p-dataview-content", + "description": "Class name of the content element" }, { "class": "p-dataview-empty-message", @@ -8755,6 +10135,299 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "DatePickerYearChangeEvent", + "description": "Custom DatePicker year change event.", + "props": [ + { + "name": "month", + "optional": true, + "readonly": false, + "type": "number", + "description": "New month." + }, + { + "name": "year", + "optional": true, + "readonly": false, + "type": "number", + "description": "New year." + } + ] + }, + { + "name": "DatePickerMonthChangeEvent", + "description": "Custom DatePicker month change event.", + "props": [ + { + "name": "month", + "optional": true, + "readonly": false, + "type": "number", + "description": "New month." + }, + { + "name": "year", + "optional": true, + "readonly": false, + "type": "number", + "description": "New year." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "datepicker", + "name": "date", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: Date, // Date value of the component.\n }", + "description": "date value instance." + } + ], + "description": "Custom header template." + }, + { + "parent": "datepicker", + "name": "decade", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: Date, // An array containing the start and and year of a decade to display at header of the year picker.\n }", + "description": "date value instance." + } + ], + "description": "Custom decade template" + }, + { + "parent": "datepicker", + "name": "disabledDate", + "parameters": [], + "description": "Custom disabled date template." + }, + { + "parent": "datepicker", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "datepicker", + "name": "inputIconTemplate", + "parameters": [ + { + "name": "context", + "type": "{\n \t clickCallBack: undefined, // Click callback\n }", + "description": "input icon template params." + } + ], + "description": "Custom input icon template." + }, + { + "parent": "datepicker", + "name": "previousicon", + "parameters": [], + "description": "Custom previous icon template." + }, + { + "parent": "datepicker", + "name": "nexticon", + "parameters": [], + "description": "Custom next icon template." + }, + { + "parent": "datepicker", + "name": "triggericon", + "parameters": [], + "description": "Custom dropdown trigger icon template." + }, + { + "parent": "datepicker", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "datepicker", + "name": "decrementicon", + "parameters": [], + "description": "Custom decrement icon template." + }, + { + "parent": "datepicker", + "name": "incrementicon", + "parameters": [], + "description": "Custom increment icon template." + }, + { + "parent": "datepicker", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "LocaleSettings", + "description": "Locale settings options.", + "props": [ + { + "name": "firstDayOfWeek", + "optional": true, + "readonly": false, + "type": "number", + "description": "Day value." + }, + { + "name": "dayNames", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Day names." + }, + { + "name": "dayNamesShort", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Shortened day names." + }, + { + "name": "dayNamesMin", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Minimum days names." + }, + { + "name": "monthNames", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Month names." + }, + { + "name": "monthNamesShort", + "optional": true, + "readonly": false, + "type": "string[]", + "description": "Shortened month names." + }, + { + "name": "today", + "optional": true, + "readonly": false, + "type": "string", + "description": "Value of today date string." + }, + { + "name": "clear", + "optional": true, + "readonly": false, + "type": "string", + "description": "Clear." + }, + { + "name": "dateFormat", + "optional": true, + "readonly": false, + "type": "string", + "description": "Date format." + }, + { + "name": "weekHeader", + "optional": true, + "readonly": false, + "type": "string", + "description": "Week header." + } + ] + }, + { + "name": "Month", + "description": "Month interface.", + "props": [ + { + "name": "month", + "optional": true, + "readonly": false, + "type": "number", + "description": "Mont value." + }, + { + "name": "year", + "optional": true, + "readonly": false, + "type": "number", + "description": "Year value." + }, + { + "name": "dates", + "optional": true, + "readonly": false, + "type": "Date[]", + "description": "Array of dates." + }, + { + "name": "weekNumbers", + "optional": true, + "readonly": false, + "type": "number[]", + "description": "Array of week numbers." + } + ] + }, + { + "name": "DatePickerResponsiveOptions", + "description": "Custom DatePicker responsive options metadata.", + "props": [ + { + "name": "breakpoint", + "optional": true, + "readonly": false, + "type": "string", + "description": "Breakpoint for responsive mode. Exp;" + }, + { + "name": "numMonths", + "optional": true, + "readonly": false, + "type": "number", + "description": "The number of visible months on breakpoint." + } + ] + } + ] + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": [ + { + "name": "DatePickerTypeView", + "value": "\"date\" | \"month\" | \"year\"", + "description": "Custom type for the DatePicker views." + }, + { + "name": "NavigationState", + "value": "{\n \"backward\": \"boolean\",\n \"button\": \"boolean\"\n}", + "description": "Custom type for the DatePicker navigation state." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -9386,6 +11059,50 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "dialog", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "dialog", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "dialog", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + }, + { + "parent": "dialog", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + }, + { + "parent": "dialog", + "name": "maximizeicon", + "parameters": [], + "description": "Custom template of maximizeicon." + }, + { + "parent": "dialog", + "name": "minimizeicon", + "parameters": [], + "description": "Custom template of minimizeicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -9581,6 +11298,26 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "dock", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom template of item." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -9924,6 +11661,44 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "drawer", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "drawer", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "drawer", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + }, + { + "parent": "drawer", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + }, + { + "parent": "drawer", + "name": "headless", + "parameters": [], + "description": "Headless template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -10590,20 +12365,217 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { - "values": [] - } - } - }, - "dialogservice": { - "description": "Defines the service used by the component", - "methods": { - "description": "Methods used in service.", - "values": [ - { - "name": "open", + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "DropdownChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Selected option value" + } + ] + }, + { + "name": "DropdownFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "filter", + "optional": false, + "readonly": false, + "type": "any", + "description": "Filter value." + } + ] + }, + { + "name": "DropdownLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the first element in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the last element in viewport." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "dropdown", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the option.\n }", + "description": "item data." + } + ], + "description": "Custom item template." + }, + { + "parent": "dropdown", + "name": "selectedItem", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Selected option value.\n }", + "description": "selected item data." + } + ], + "description": "Custom selected item template." + }, + { + "parent": "dropdown", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "dropdown", + "name": "filter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: DropdownFilterOptions, // Filter options.\n }" + } + ], + "description": "Custom filter template." + }, + { + "parent": "dropdown", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "dropdown", + "name": "emptyfilter", + "parameters": [], + "description": "Custom empty filter template." + }, + { + "parent": "dropdown", + "name": "empty", + "parameters": [], + "description": "Custom empty template." + }, + { + "parent": "dropdown", + "name": "group", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Group option.\n }" + } + ], + "description": "Custom group template." + }, + { + "parent": "dropdown", + "name": "loader", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ScrollerOptions, // Virtual scroller options.\n }" + } + ], + "description": "Custom loader template. This template can be used with virtualScroll." + }, + { + "parent": "dropdown", + "name": "dropdownicon", + "parameters": [], + "description": "Custom dropdown trigger icon template." + }, + { + "parent": "dropdown", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "dropdown", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "DropdownFilterOptions", + "description": "Filter callbacks of the dropdown.", + "props": [ + { + "name": "filter", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Filter function." + }, + { + "name": "reset", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Reset function." + } + ] + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [] + } + } + }, + "dialogservice": { + "description": "Defines the service used by the component", + "methods": { + "description": "Methods used in service.", + "values": [ + { + "name": "open", "parameters": [ { "name": "componentType", @@ -11237,6 +13209,99 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "EditorTextChangeEvent", + "description": "Custom text change event.", + "props": [ + { + "name": "htmlValue", + "optional": false, + "readonly": false, + "type": "string", + "description": "Current value as html." + }, + { + "name": "textValue", + "optional": false, + "readonly": false, + "type": "string", + "description": "Current value as text." + }, + { + "name": "delta", + "optional": false, + "readonly": false, + "type": "string", + "description": "Representation of the change." + }, + { + "name": "source", + "optional": false, + "readonly": false, + "type": "string", + "description": "Source of change. Will be either 'user' or 'api'." + } + ] + }, + { + "name": "EditorSelectionChangeEvent", + "description": "Custom selection change event.", + "props": [ + { + "name": "range", + "optional": false, + "readonly": false, + "type": "string", + "description": "Representation of the selection boundaries." + }, + { + "name": "oldRange", + "optional": false, + "readonly": false, + "type": "string", + "description": "Representation of the previous selection boundaries." + }, + { + "name": "source", + "optional": false, + "readonly": false, + "type": "string", + "description": "Source of change. Will be either 'user' or 'api'." + } + ] + }, + { + "name": "EditorInitEvent", + "description": "Custom load event.", + "props": [ + { + "name": "editor", + "optional": false, + "readonly": false, + "type": "any", + "description": "Text editor instance." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "editor", + "name": "header", + "parameters": [], + "description": "Custom header template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -11348,6 +13413,83 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "FieldsetAfterToggleEvent", + "description": "Custom panel toggle event, emits after toggle.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "collapsed", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Collapsed state of the panel." + } + ] + }, + { + "name": "FieldsetBeforeToggleEvent", + "description": "Custom panel toggle event, emits before toggle.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "collapsed", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Collapsed state of the panel." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "fieldset", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "fieldset", + "name": "content", + "parameters": [], + "description": "Custom content template." + }, + { + "parent": "fieldset", + "name": "expandicon", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "fieldset", + "name": "collapseicon", + "parameters": [], + "description": "Custom icons template of the panel toggler." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -11802,41 +13944,316 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-fileupload", - "description": "Class name of the root element" - }, - { - "class": "p-fileupload-header", - "description": "Class name of the header element" - }, - { - "class": "p-fileupload-choose-button", - "description": "Class name of the choose button element" + "name": "UploadEvent", + "description": "Upload event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "HttpEvent", + "description": "HTTP event." + } + ] }, { - "class": "p-fileupload-upload-button", - "description": "Class name of the upload button element" + "name": "RemoveUploadedFileEvent", + "description": "Remove uploaded file event.", + "props": [ + { + "name": "file", + "optional": false, + "readonly": false, + "type": "any", + "description": "Removed file." + }, + { + "name": "files", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Uploaded files." + } + ] }, { - "class": "p-fileupload-cancel-button", - "description": "Class name of the cancel button element" + "name": "FormDataEvent", + "description": "Form data event.", + "props": [ + { + "name": "formData", + "optional": false, + "readonly": false, + "type": "FormData", + "description": "FormData object." + } + ] }, { - "class": "p-fileupload-content", - "description": "Class name of the content element" + "name": "FileSendEvent", + "description": "An event indicating that the request was sent to the server. Useful when a request may be retried multiple times, to distinguish between retries on the final event stream.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "HttpEvent", + "description": "HTTP event." + }, + { + "name": "formData", + "optional": false, + "readonly": false, + "type": "FormData", + "description": "FormData object." + } + ] }, { - "class": "p-fileupload-file-list", - "description": "Class name of the file list element" + "name": "FileBeforeUploadEvent", + "description": "Callback to invoke before file upload is initialized.", + "props": [ + { + "name": "formData", + "optional": false, + "readonly": false, + "type": "FormData", + "description": "FormData object." + } + ] }, { - "class": "p-fileupload-file", - "description": "Class name of the file element" + "name": "FileUploadEvent", + "description": "Callback to invoke when file upload is complete.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "HttpEvent", + "description": "HTTP event." + }, + { + "name": "files", + "optional": false, + "readonly": false, + "type": "File[]", + "description": "Uploaded files." + } + ] + }, + { + "name": "FileRemoveEvent", + "description": "Callback to invoke when a file is removed without uploading using clear button of a file.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "file", + "optional": false, + "readonly": false, + "type": "File", + "description": "Selected file" + } + ] + }, + { + "name": "FileSelectEvent", + "description": "Callback to invoke when files are selected.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "files", + "optional": false, + "readonly": false, + "type": "File[]", + "description": "Uploaded files." + }, + { + "name": "currentFiles", + "optional": false, + "readonly": false, + "type": "File[]", + "description": "All files to be uploaded." + } + ] + }, + { + "name": "FileProgressEvent", + "description": "Callback to invoke when files are being uploaded.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "HttpEvent", + "description": "HTTP event." + }, + { + "name": "progress", + "optional": false, + "readonly": false, + "type": "number", + "description": "Calculated progress value." + } + ] + }, + { + "name": "FileUploadHandlerEvent", + "description": "Callback to invoke in custom upload mode to upload the files manually.", + "props": [ + { + "name": "files", + "optional": false, + "readonly": false, + "type": "File[]", + "description": "List of selected files." + } + ] + }, + { + "name": "FileUploadErrorEvent", + "description": "Callback to invoke on upload error.", + "props": [ + { + "name": "error", + "optional": true, + "readonly": false, + "type": "ErrorEvent", + "description": "List of selected files." + }, + { + "name": "files", + "optional": false, + "readonly": false, + "type": "File[]", + "description": "List of selected files." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "fileupload", + "name": "file", + "parameters": [], + "description": "Custom template of file." + }, + { + "parent": "fileupload", + "name": "filelabel", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // File list.\n }" + } + ], + "description": "Custom file label template." + }, + { + "parent": "fileupload", + "name": "header", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // File list.\n \t uploadedFiles: any, // Uploaded files list.\n \t chooseCallback: VoidFunction, // Callback to invoke on choose button click.\n \t clearCallback: VoidFunction, // Callback to invoke on clear button click.\n \t uploadCallback: VoidFunction, // Callback to invoke on upload.\n }" + } + ], + "description": "Custom template of file." + }, + { + "parent": "fileupload", + "name": "content", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // File list.\n \t uploadedFiles: any, // Uploaded files list.\n \t progress: any, // Upload progress.\n \t messages: any, // Status messages about upload process.\n \t chooseCallback: VoidFunction, // Callback to invoke on choose button click.\n \t removeFileCallback: VoidFunction, // Callback to invoke on clear button click.\n \t clearCallback: VoidFunction, // Callback to invoke on clear button click.\n \t uploadCallback: VoidFunction, // Callback to invoke on upload.\n \t removeUploadedFileCallback: VoidFunction, // Callback to invoke on remove uploaded file, accepts index as a parameter.\n }" + } + ], + "description": "Custom template of content." + }, + { + "parent": "fileupload", + "name": "toolbar", + "parameters": [], + "description": "Custom template of toolbar." + }, + { + "parent": "fileupload", + "name": "chooseicon", + "parameters": [], + "description": "Custom template of chooseicon." + }, + { + "parent": "fileupload", + "name": "uploadicon", + "parameters": [], + "description": "Custom template of uploadicon." + }, + { + "parent": "fileupload", + "name": "cancelicon", + "parameters": [], + "description": "Custom template of cancelicon." + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-fileupload", + "description": "Class name of the root element" + }, + { + "class": "p-fileupload-header", + "description": "Class name of the header element" + }, + { + "class": "p-fileupload-choose-button", + "description": "Class name of the choose button element" + }, + { + "class": "p-fileupload-upload-button", + "description": "Class name of the upload button element" + }, + { + "class": "p-fileupload-cancel-button", + "description": "Class name of the cancel button element" + }, + { + "class": "p-fileupload-content", + "description": "Class name of the content element" + }, + { + "class": "p-fileupload-file-list", + "description": "Class name of the file list element" + }, + { + "class": "p-fileupload-file", + "description": "Class name of the file element" }, { "class": "p-fileupload-file-thumbnail", @@ -12183,6 +14600,129 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "galleria", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "galleria", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + }, + { + "parent": "galleria", + "name": "indicator", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Index of the item.\n }", + "description": "indicator data." + } + ], + "description": "Custom template of indicator." + }, + { + "parent": "galleria", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + }, + { + "parent": "galleria", + "name": "itemnexticon", + "parameters": [], + "description": "Custom template of itemnexticon." + }, + { + "parent": "galleria", + "name": "itempreviousicon", + "parameters": [], + "description": "Custom template of itempreviousicon." + }, + { + "parent": "galleria", + "name": "previousthumbnailicon", + "parameters": [], + "description": "Custom template of previousthumbnailicon." + }, + { + "parent": "galleria", + "name": "nextthumbnailicon", + "parameters": [], + "description": "Custom template of nextthumbnailicon." + }, + { + "parent": "galleria", + "name": "caption", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom template of caption." + }, + { + "parent": "galleria", + "name": "thumbnail", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom template of thumbnail." + }, + { + "parent": "galleria", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom template of item." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "GalleriaResponsiveOptions", + "description": "Responsive options of the component.", + "props": [ + { + "name": "breakpoint", + "optional": false, + "readonly": false, + "type": "string", + "description": "Breakpoint for responsive mode. Exp;" + }, + { + "name": "numVisible", + "optional": false, + "readonly": false, + "type": "number", + "description": "The number of visible items on breakpoint." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -12689,6 +15229,72 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "image", + "name": "indicator", + "parameters": [], + "description": "Custom template of indicator." + }, + { + "parent": "image", + "name": "image", + "parameters": [ + { + "name": "context", + "type": "{\n \t class: any, // Style class of the image element.\n \t style: any, // Style of the image element.\n \t errorCallback: Function, // Image click function.\n }" + } + ], + "description": "Custom template of image." + }, + { + "parent": "image", + "name": "preview", + "parameters": [ + { + "name": "context", + "type": "{\n \t errorCallback: Function, // Preview click function.\n }" + } + ], + "description": "Custom preview template." + }, + { + "parent": "image", + "name": "rotaterighticon", + "parameters": [], + "description": "Custom template of rotaterighticon." + }, + { + "parent": "image", + "name": "rotatelefticon", + "parameters": [], + "description": "Custom template of rotatelefticon." + }, + { + "parent": "image", + "name": "zoomouticon", + "parameters": [], + "description": "Custom template of zoomouticon." + }, + { + "parent": "image", + "name": "zoominicon", + "parameters": [], + "description": "Custom template of zoominicon." + }, + { + "parent": "image", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -12864,6 +15470,32 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "inplace", + "name": "display", + "parameters": [], + "description": "Custom template of display." + }, + { + "parent": "inplace", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "inplace", + "name": "closeicon", + "parameters": [], + "description": "Custom template of close icon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -13248,6 +15880,30 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "inputmask", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + } + ] + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": [ + { + "name": "Caret", + "value": "{\n \"begin\": \"number\",\n \"end\": \"number\"\n}", + "description": "Caret positions." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -13641,20 +16297,78 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-inputnumber", - "description": "Class name of the root element" + "name": "InputNumberInputEvent", + "description": "Custom input event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "string | number", + "description": "Input value." + }, + { + "name": "formattedValue", + "optional": false, + "readonly": false, + "type": "string", + "description": "Selected option value." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "inputnumber", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." }, { - "class": "p-inputnumber-input", - "description": "Class name of the input element" + "parent": "inputnumber", + "name": "incrementbuttonicon", + "parameters": [], + "description": "Custom increment button icon template." }, { - "class": "p-inputnumber-button-group", + "parent": "inputnumber", + "name": "decrementbuttonicon", + "parameters": [], + "description": "Custom decrement button icon template." + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-inputnumber", + "description": "Class name of the root element" + }, + { + "class": "p-inputnumber-input", + "description": "Class name of the input element" + }, + { + "class": "p-inputnumber-button-group", "description": "Class name of the button group element" }, { @@ -13794,6 +16508,92 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "InputOtpTemplateEvents", + "description": "Defines the custom events used by the component's emit.", + "props": [ + { + "name": "input", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Input event." + }, + { + "name": "keydown", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Keydown event." + }, + { + "name": "focus", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Focus event." + }, + { + "name": "blur", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Blur event." + }, + { + "name": "paste", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Paste event." + } + ] + }, + { + "name": "InputOtpChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Selected value." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "inputotp", + "name": "input", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Input value.\n \t events: InputOtpTemplateEvents, // Events of the component\n }", + "description": "" + } + ], + "description": "Custom template of input." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -13925,6 +16725,34 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "InputSwitchChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Checked state." + } + ] + } + ] + } + }, "style": { "components": {} } @@ -14128,6 +16956,9 @@ ] } } + }, + "interfaces": { + "components": {} } }, "knob": { @@ -14785,6 +17616,241 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "ListboxChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Original event" + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Selected option value" + } + ] + }, + { + "name": "ListboxSelectAllChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Boolean value indicates whether all data is selected." + } + ] + }, + { + "name": "ListboxFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "filter", + "optional": false, + "readonly": false, + "type": "any", + "description": "Filter value." + } + ] + }, + { + "name": "ListboxClickEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Value of the component." + }, + { + "name": "option", + "optional": true, + "readonly": false, + "type": "any", + "description": "Selected option" + } + ] + }, + { + "name": "ListboxDoubleClickEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Value of the component." + }, + { + "name": "option", + "optional": true, + "readonly": false, + "type": "any", + "description": "Selected option" + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "listbox", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the option.\n \t index: number, // Index of the option.\n }", + "description": "item data." + } + ], + "description": "Custom item template." + }, + { + "parent": "listbox", + "name": "group", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Group option.\n }", + "description": "group data." + } + ], + "description": "Custom group template." + }, + { + "parent": "listbox", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "listbox", + "name": "filter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ListboxFilterOptions, // Filter options.\n }", + "description": "filter options." + } + ], + "description": "Custom filter template." + }, + { + "parent": "listbox", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "listbox", + "name": "empty", + "parameters": [], + "description": "Custom empty template." + }, + { + "parent": "listbox", + "name": "emptyfilter", + "parameters": [], + "description": "Custom empty filter template." + }, + { + "parent": "listbox", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." + }, + { + "parent": "listbox", + "name": "checkicon", + "parameters": [], + "description": "Custom check icon template." + }, + { + "parent": "listbox", + "name": "checkmark", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Selection status.\n }" + } + ], + "description": "Custom checkmark template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "ListboxFilterOptions", + "description": "Filter options of listbox.", + "props": [ + { + "name": "filter", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Callback to filter options." + }, + { + "name": "reset", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Callback to reset filter." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -14910,6 +17976,43 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "megamenu", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Item instance.\n }" + } + ], + "description": "Custom item template." + }, + { + "parent": "megamenu", + "name": "start", + "parameters": [], + "description": "Custom template of start." + }, + { + "parent": "megamenu", + "name": "submenuicon", + "parameters": [], + "description": "Custom template of submenuicon." + }, + { + "parent": "megamenu", + "name": "end", + "parameters": [], + "description": "Custom template of end." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -15171,6 +18274,48 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "menu", + "name": "start", + "parameters": [], + "description": "Custom template of start." + }, + { + "parent": "menu", + "name": "end", + "parameters": [], + "description": "Custom template of end." + }, + { + "parent": "menu", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Item instance.\n }" + } + ], + "description": "Custom template of item." + }, + { + "parent": "menu", + "name": "submenuheader", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Item instance.\n }" + } + ], + "description": "Custom template of submenuheader." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -15341,6 +18486,49 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "menubar", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Item instance.\n \t root: boolean, // Whether root or not\n }" + } + ], + "description": "Custom item template." + }, + { + "parent": "menubar", + "name": "start", + "parameters": [], + "description": "Custom template of start." + }, + { + "parent": "menubar", + "name": "end", + "parameters": [], + "description": "Custom template of end." + }, + { + "parent": "menubar", + "name": "menuicon", + "parameters": [], + "description": "Custom template of menuicon." + }, + { + "parent": "menubar", + "name": "submenuicon", + "parameters": [], + "description": "Custom template of submenuicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -15664,13 +18852,27 @@ } } }, - "style": { - "components": {} - } - }, - "metergroup": { - "components": { - "MeterGroup": { + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "messages", + "name": "content", + "parameters": [], + "description": "Custom template of content." + } + ] + } + }, + "style": { + "components": {} + } + }, + "metergroup": { + "components": { + "MeterGroup": { "description": "MeterGroup displays scalar measurements within a known range.", "props": { "description": "Defines the input properties of the component.", @@ -15740,6 +18942,108 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "metergroup", + "name": "label", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MeterItem, // Current value of the component.\n \t totalPercent: number, // Total percent of the metergroup items.\n \t percentages: number, // Array of sequential sum of values of metergroup items.\n }" + } + ], + "description": "Custom label template." + }, + { + "parent": "metergroup", + "name": "meter", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MeterItem, // Current value of the component.\n \t index: number, // Current index of the meter item.\n \t class: string, // Style class of the meter item\n \t orientation: string, // Current orientation of the component.\n \t size: string, // Current width of the meter item.\n \t totalPercent: number, // Total percent of the metergroup items\n }" + } + ], + "description": "Custom meter item template." + }, + { + "parent": "metergroup", + "name": "start", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MeterItem, // Current value of the component.\n \t totalPercent: number, // Total percent of the metergroup items.\n \t percentages: number, // Array of sequential sum of values of metergroup items.\n }" + } + ], + "description": "Custom start template." + }, + { + "parent": "metergroup", + "name": "end", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MeterItem, // Current value of the component.\n \t totalPercent: number, // Total percent of the metergroup items.\n \t percentages: number, // Array of sequential sum of values of metergroup items.\n }" + } + ], + "description": "Custom start template." + }, + { + "parent": "metergroup", + "name": "icon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MeterItem, // Current value of the component.\n \t class: string, // Style class of the icon.\n }" + } + ], + "description": "Custom icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "MeterItem", + "description": "Represents a meter item configuration.", + "props": [ + { + "name": "label", + "optional": true, + "readonly": false, + "type": "string", + "description": "Label of the meter item." + }, + { + "name": "value", + "optional": true, + "readonly": false, + "type": "number", + "description": "Value of the meter item." + }, + { + "name": "color", + "optional": true, + "readonly": false, + "type": "string", + "description": "Color of the meter item." + }, + { + "name": "icon", + "optional": true, + "readonly": false, + "type": "string", + "description": "Icon of the meter item." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -16479,6 +19783,315 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "MultiSelectChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Current selected values." + }, + { + "name": "itemValue", + "optional": true, + "readonly": false, + "type": "any", + "description": "Toggled item value." + } + ] + }, + { + "name": "MultiSelectSelectAllChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Boolean value indicates whether all data is selected." + } + ] + }, + { + "name": "MultiSelectFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "filter", + "optional": false, + "readonly": false, + "type": "any", + "description": "Filter value." + } + ] + }, + { + "name": "MultiSelectFocusEvent", + "description": "Custom focus event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + } + ] + }, + { + "name": "MultiSelectBlurEvent", + "description": "Custom blur event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + } + ] + }, + { + "name": "MultiSelectLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the first element in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the last element in viewport." + } + ] + }, + { + "name": "MultiSelectRemoveEvent", + "description": "Custom remove event.", + "props": [ + { + "name": "newValue", + "optional": false, + "readonly": false, + "type": "object", + "description": "Value after the item removed." + }, + { + "name": "removed", + "optional": false, + "readonly": false, + "type": "MultiSelectItem", + "description": "Removed value." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "multiselect", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the option.\n }", + "description": "item data." + } + ], + "description": "Custom header template." + }, + { + "parent": "multiselect", + "name": "selectedItems", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Selected option value.\n \t removeChip: undefined, // Function to remove chip.\n }", + "description": "selected items data." + } + ], + "description": "Custom selected item template." + }, + { + "parent": "multiselect", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "multiselect", + "name": "filter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: MultiSelectFilterOptions, // Filter options.\n }" + } + ], + "description": "Custom filter template." + }, + { + "parent": "multiselect", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "multiselect", + "name": "emptyfilter", + "parameters": [], + "description": "Custom empty filter template." + }, + { + "parent": "multiselect", + "name": "empty", + "parameters": [], + "description": "Custom empty template." + }, + { + "parent": "multiselect", + "name": "group", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the item.\n }" + } + ], + "description": "Custom group template." + }, + { + "parent": "multiselect", + "name": "loader", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ScrollerOptions, // Virtual scroller options.\n }" + } + ], + "description": "Custom loader template. This template can be used with virtualScroll." + }, + { + "parent": "multiselect", + "name": "dropdownicon", + "parameters": [], + "description": "Custom dropdown trigger icon template." + }, + { + "parent": "multiselect", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "multiselect", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." + }, + { + "parent": "multiselect", + "name": "checkicon", + "parameters": [], + "description": "Custom check icon template.", + "deprecated": "Use headercheckboxicon or itemcheckboxicon instead." + }, + { + "parent": "multiselect", + "name": "headercheckboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Defines if all items are selected.\n \t partialSelected: boolean, // Defines if items are partially selected.\n }" + } + ], + "description": "Custom check icon template for the header checkbox." + }, + { + "parent": "multiselect", + "name": "itemcheckboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Selection status of the item.\n }" + } + ], + "description": "Custom check icon template for the item checkbox." + }, + { + "parent": "multiselect", + "name": "closeicon", + "parameters": [], + "description": "Custom close icon template." + }, + { + "parent": "multiselect", + "name": "removetokenicon", + "parameters": [], + "description": "Custom remove token icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "MultiSelectFilterOptions", + "description": "Callbacks to invoke on filter or reset.", + "props": [ + { + "name": "filter", + "optional": true, + "readonly": false, + "type": "Function" + }, + { + "name": "reset", + "optional": true, + "readonly": false, + "type": "Function" + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -16860,46 +20473,199 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-orderlist", - "description": "Class name of the root element" + "name": "OrderListSelectionChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Current selected values." + } + ] }, { - "class": "p-orderlist-controls", - "description": "Class name of the controls element" + "name": "OrderListFilterEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Filtered options." + } + ] } ] - } - } - }, - "organizationchart": { - "components": { - "OrganizationChart": { - "description": "OrganizationChart visualizes hierarchical organization data.", - "props": { - "description": "Defines the input properties of the component.", - "values": [ - { - "name": "value", - "optional": false, - "readonly": false, - "type": "TreeNode[]", - "description": "An array of nested TreeNodes." - }, - { - "name": "style", - "optional": false, - "readonly": false, - "type": "Object", - "description": "Inline style of the component." - }, - { - "name": "styleClass", - "optional": false, + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "orderlist", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n \t index: number, // Index of the item.\n }", + "description": "item data." + } + ], + "description": "Custom header template." + }, + { + "parent": "orderlist", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "orderlist", + "name": "filter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: OrderListFilterOptions, // Filter options.\n }" + } + ], + "description": "Custom filter template." + }, + { + "parent": "orderlist", + "name": "emptyfilter", + "parameters": [], + "description": "Custom empty filter template." + }, + { + "parent": "orderlist", + "name": "empty", + "parameters": [], + "description": "Custom empty template." + }, + { + "parent": "orderlist", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." + }, + { + "parent": "orderlist", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." + }, + { + "parent": "orderlist", + "name": "moveupicon", + "parameters": [], + "description": "Custom move up icon template." + }, + { + "parent": "orderlist", + "name": "movetopicon", + "parameters": [], + "description": "Custom move top icon template." + }, + { + "parent": "orderlist", + "name": "movedownicon", + "parameters": [], + "description": "Custom move down icon template." + }, + { + "parent": "orderlist", + "name": "movebottomicon", + "parameters": [], + "description": "Custom move bottom icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "OrderListFilterOptions", + "description": "Callbacks to invoke on filter.", + "props": [ + { + "name": "filter", + "optional": true, + "readonly": false, + "type": "Function" + }, + { + "name": "reset", + "optional": true, + "readonly": false, + "type": "Function" + } + ] + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-orderlist", + "description": "Class name of the root element" + }, + { + "class": "p-orderlist-controls", + "description": "Class name of the controls element" + } + ] + } + } + }, + "organizationchart": { + "components": { + "OrganizationChart": { + "description": "OrganizationChart visualizes hierarchical organization data.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ + { + "name": "value", + "optional": false, + "readonly": false, + "type": "TreeNode[]", + "description": "An array of nested TreeNodes." + }, + { + "name": "style", + "optional": false, + "readonly": false, + "type": "Object", + "description": "Inline style of the component." + }, + { + "name": "styleClass", + "optional": false, "readonly": false, "type": "string", "description": "Style class of the component." @@ -16993,6 +20759,111 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "OrganizationChartNodeSelectEvent", + "description": "Custom node select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "OrganizationChartNodeUnSelectEvent", + "description": "Custom node unselect event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "OrganizationChartNodeExpandEvent", + "description": "Custom node expand event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "OrganizationChartNodeCollapseEvent", + "description": "Custom node collapse event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "organizationchart", + "name": "togglericon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Expanded state of the node.\n }", + "description": "item data." + } + ], + "description": "Custom toggler icon template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -17478,6 +21349,26 @@ ] } } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "overlaypanel", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "overlaypanel", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + } + ] + } } }, "popover": { @@ -17671,6 +21562,26 @@ } ] } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "popover", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "popover", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + } + ] + } } }, "paginator": { @@ -17864,6 +21775,79 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "paginator", + "name": "dropdownicon", + "parameters": [], + "description": "Custom dropdown trigger icon template." + }, + { + "parent": "paginator", + "name": "firstpagelinkicon", + "parameters": [], + "description": "Custom first page link icon template." + }, + { + "parent": "paginator", + "name": "previouspagelinkicon", + "parameters": [], + "description": "Custom previous page link icon template." + }, + { + "parent": "paginator", + "name": "lastpagelinkicon", + "parameters": [], + "description": "Custom last page link icon template." + }, + { + "parent": "paginator", + "name": "nextpagelinkicon", + "parameters": [], + "description": "Custom next page link icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "PaginatorState", + "description": "Paginator state.", + "props": [ + { + "name": "page", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "first", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "rows", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "pageCount", + "optional": true, + "readonly": false, + "type": "number" + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -18079,6 +22063,95 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "PanelBeforeToggleEvent", + "description": "Custom panel toggle event, emits before panel toggle.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "collapsed", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Collapsed state of the panel." + } + ] + }, + { + "name": "PanelAfterToggleEvent", + "description": "Custom panel toggle event, emits after panel toggle.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "collapsed", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Collapsed state of the panel." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "panel", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "panel", + "name": "content", + "parameters": [], + "description": "Custom content template." + }, + { + "parent": "panel", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "panel", + "name": "headericons", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Collapsed state as a boolean\n }", + "description": "header icon data." + } + ], + "description": "Custom icons template of the panel toggler." + }, + { + "parent": "panel", + "name": "icons", + "parameters": [], + "description": "Custom icons template of the panel header." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -18192,6 +22265,31 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "panelmenu", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Item instance.\n }" + } + ], + "description": "Custom item template." + }, + { + "parent": "panelmenu", + "name": "submenuicon", + "parameters": [], + "description": "Custom template of submenuicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -18588,13 +22686,57 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "templates": { + "description": "Defines the templates used by the component.", "values": [ { - "class": "p-password", - "description": "Class name of the root element" + "parent": "password", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "password", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "password", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + }, + { + "parent": "password", + "name": "clearicon", + "parameters": [], + "description": "Custom template of clear icon." + }, + { + "parent": "password", + "name": "hideicon", + "parameters": [], + "description": "Custom template of hide icon." + }, + { + "parent": "password", + "name": "showicon", + "parameters": [], + "description": "Custom template of show icon." + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-password", + "description": "Class name of the root element" }, { "class": "p-password-input", @@ -19123,6 +23265,349 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "PickListMoveToSourceEvent", + "description": "Custom move to source event.", + "props": [ + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Moved items." + } + ] + }, + { + "name": "PickListMoveAllToSourceEvent", + "description": "Custom move all to source event.", + "props": [ + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Moved items." + } + ] + }, + { + "name": "PickListMoveAllToTargetEvent", + "description": "Custom move all to target event.", + "props": [ + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Moved items." + } + ] + }, + { + "name": "PickListMoveToTargetEvent", + "description": "Custom move to target event.", + "props": [ + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Moved items." + } + ] + }, + { + "name": "PickListSourceReorderEvent", + "description": "Custom move source reorder event.", + "props": [ + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Moved items." + } + ] + }, + { + "name": "PickListTargetReorderEvent", + "description": "Custom move target reorder event.", + "props": [ + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Moved items." + } + ] + }, + { + "name": "PickListSourceSelectEvent", + "description": "Custom source select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Selected items." + } + ] + }, + { + "name": "PickListTargetSelectEvent", + "description": "Custom target select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "items", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Selected items." + } + ] + }, + { + "name": "PickListSourceFilterEvent", + "description": "Custom source filter event.", + "props": [ + { + "name": "query", + "optional": false, + "readonly": false, + "type": "string", + "description": "Filter value." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Filtered items." + } + ] + }, + { + "name": "PickListTargetFilterEvent", + "description": "Custom target filter event.", + "props": [ + { + "name": "query", + "optional": false, + "readonly": false, + "type": "string", + "description": "Filter value." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "Filtered items." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "picklist", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n \t index: number, // Item index.\n }" + } + ], + "description": "Custom item template." + }, + { + "parent": "picklist", + "name": "sourceHeader", + "parameters": [], + "description": "Custom source header template." + }, + { + "parent": "picklist", + "name": "targetHeader", + "parameters": [], + "description": "Custom target header template." + }, + { + "parent": "picklist", + "name": "sourceFilter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: PickListFilterOptions, // Source filter options.\n }" + } + ], + "description": "Custom source filter template." + }, + { + "parent": "picklist", + "name": "targetFilter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: PickListFilterOptions, // Target filter options.\n }" + } + ], + "description": "Custom target filter template." + }, + { + "parent": "picklist", + "name": "emptymessagesource", + "parameters": [], + "description": "Custom source list empty message template." + }, + { + "parent": "picklist", + "name": "emptyfiltermessagesource", + "parameters": [], + "description": "Custom source list empty filter message template." + }, + { + "parent": "picklist", + "name": "emptymessagetarget", + "parameters": [], + "description": "Custom target list empty message template." + }, + { + "parent": "picklist", + "name": "emptyfiltermessagetarget", + "parameters": [], + "description": "Custom target list empty filter message template." + }, + { + "parent": "picklist", + "name": "moveupicon", + "parameters": [], + "description": "Custom move up icon template." + }, + { + "parent": "picklist", + "name": "movetopicon", + "parameters": [], + "description": "Custom move top icon template." + }, + { + "parent": "picklist", + "name": "movedownicon", + "parameters": [], + "description": "Custom move down icon template." + }, + { + "parent": "picklist", + "name": "movebottomicon", + "parameters": [], + "description": "Custom move bottom icon template." + }, + { + "parent": "picklist", + "name": "movetotargeticon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Boolean value indicates if the view is changed according to breakpoints.\n }" + } + ], + "description": "Custom move to target icon template." + }, + { + "parent": "picklist", + "name": "movealltotargeticon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Boolean value indicates if the view is changed according to breakpoints.\n }" + } + ], + "description": "Custom move all to target icon template." + }, + { + "parent": "picklist", + "name": "movetosourceicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Boolean value indicates if the view is changed according to breakpoints.\n }" + } + ], + "description": "Custom move to source icon template." + }, + { + "parent": "picklist", + "name": "movealltosourceicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Boolean value indicates if the view is changed according to breakpoints.\n }" + } + ], + "description": "Custom move all to source icon template." + }, + { + "parent": "picklist", + "name": "targetfiltericon", + "parameters": [], + "description": "Custom target filter icon template." + }, + { + "parent": "picklist", + "name": "sourcefiltericon", + "parameters": [], + "description": "Custom source filter icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "PickListFilterOptions", + "description": "Callbacks to invoke on filter.", + "props": [ + { + "name": "filter", + "optional": true, + "readonly": false, + "type": "Function" + }, + { + "name": "reset", + "optional": true, + "readonly": false, + "type": "Function" + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -19225,6 +23710,25 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "progressbar", + "name": "content", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Value of the progressbar.\n }" + } + ], + "description": "Custom template of content." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -19472,6 +23976,34 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "RadioButtonClickEvent", + "description": "Custom click event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Browser event." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -19612,6 +24144,57 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "RatingRateEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "number", + "description": "Selected option value" + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "rating", + "name": "onicon", + "parameters": [], + "description": "Custom on icon template." + }, + { + "parent": "rating", + "name": "officon", + "parameters": [], + "description": "Custom off icon template." + }, + { + "parent": "rating", + "name": "cancelicon", + "parameters": [], + "description": "Custom cancel icon template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -19875,22 +24458,341 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-virtualscroller", - "description": "Class name of the root element" - }, - { - "class": "p-virtualscroller-content", - "description": "Class name of the content element" + "name": "ScrollerLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "First element index in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Last element index in viewport." + } + ] }, { - "class": "p-virtualscroller-spacer", - "description": "Class name of the spacer element" - }, + "name": "ScrollerScrollIndexChangeEvent", + "description": "Custom scroll index change event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "First element index in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Last element index in viewport." + } + ] + }, + { + "name": "ScrollerScrollEvent", + "description": "Custom scroll event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "scroller", + "name": "content", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Loaded items.\n \t options: ScrollerContentOptions, // undefined\n }", + "description": "Content data." + } + ], + "description": "Custom content template." + }, + { + "parent": "scroller", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n \t options: ScrollerItemOptions, // Scroller item options.\n }", + "description": "Item data." + } + ], + "description": "Custom item template." + }, + { + "parent": "scroller", + "name": "loader", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ScrollerLoaderOptions, // Options.\n }", + "description": "Options instance." + } + ], + "description": "Custom loader template." + }, + { + "parent": "scroller", + "name": "loadericon", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ScrollerLoaderIconOptions, // Options.\n }", + "description": "Icon options." + } + ], + "description": "Custom loader icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "ScrollerContentOptions", + "description": "Scroller content options.", + "props": [ + { + "name": "contentStyleClass", + "optional": true, + "readonly": false, + "type": "string" + }, + { + "name": "items", + "optional": true, + "readonly": false, + "type": "any[]" + }, + { + "name": "loading", + "optional": true, + "readonly": false, + "type": "boolean" + }, + { + "name": "itemSize", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "rows", + "optional": true, + "readonly": false, + "type": "any[]" + }, + { + "name": "columns", + "optional": true, + "readonly": false, + "type": "any[]" + }, + { + "name": "spacerStyle", + "optional": true, + "readonly": false, + "type": "Object" + }, + { + "name": "contentStyle", + "optional": true, + "readonly": false, + "type": "Object" + }, + { + "name": "vertical", + "optional": true, + "readonly": false, + "type": "boolean" + }, + { + "name": "horizontal", + "optional": true, + "readonly": false, + "type": "boolean" + }, + { + "name": "both", + "optional": true, + "readonly": false, + "type": "boolean" + }, + { + "name": "getItemOptions", + "optional": true, + "readonly": false, + "type": "Function" + }, + { + "name": "getLoaderOptions", + "optional": true, + "readonly": false, + "type": "Function" + } + ] + }, + { + "name": "ScrollerItemOptions", + "description": "Scroller item options.", + "props": [ + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the item." + }, + { + "name": "count", + "optional": true, + "readonly": false, + "type": "number", + "description": "Item count." + }, + { + "name": "first", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Index of the first element in viewport." + }, + { + "name": "last", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Index of the last element in viewport." + }, + { + "name": "even", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if index is even number." + }, + { + "name": "odd", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if index is odd number." + } + ] + }, + { + "name": "ScrollerLoaderOptions", + "description": "Loader settings.", + "props": [ + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the item." + }, + { + "name": "count", + "optional": true, + "readonly": false, + "type": "number", + "description": "Item count." + }, + { + "name": "first", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Index of the first element in viewport." + }, + { + "name": "last", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Index of the last element in viewport." + }, + { + "name": "even", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if index is even number." + }, + { + "name": "odd", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if index is odd number." + } + ] + } + ] + }, + "types": { + "description": "Defines the custom types used by the module.", + "values": [ + { + "name": "ScrollerToType", + "value": "\"to-start\" | \"to-end\" | undefined", + "description": "Options of the scroll direction." + }, + { + "name": "ScrollerOrientationType", + "value": "\"vertical\" | \"horizontal\" | \"both\"", + "description": "Options of the scroller orientation." + }, + { + "name": "ScrollerLoaderIconOptions", + "value": "{\"[klass:string]\":\"any\"}", + "description": "Loader icon options." + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-virtualscroller", + "description": "Class name of the root element" + }, + { + "class": "p-virtualscroller-content", + "description": "Class name of the content element" + }, + { + "class": "p-virtualscroller-spacer", + "description": "Class name of the spacer element" + }, { "class": "p-virtualscroller-loader", "description": "Class name of the loader element" @@ -19957,6 +24859,20 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "scrollpanel", + "name": "content", + "parameters": [], + "description": "Custom content template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -20072,6 +24988,25 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "scrolltop", + "name": "icon", + "parameters": [ + { + "name": "context", + "type": "{\n \t styleClass: undefined, // Style class of the icon.\n }" + } + ], + "description": "Icon of the component." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -20722,70 +25657,267 @@ } } }, - "style": { + "interfaces": { "components": {}, - "classes": { + "events": { + "description": "Defines the custom events used by the component's emitters.", "values": [ { - "class": "p-select", - "description": "Class name of the root element" + "name": "SelectChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": false, + "readonly": false, + "type": "any", + "description": "Selected option value" + } + ] }, { - "class": "p-select-label", - "description": "Class name of the label element" + "name": "SelectFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "filter", + "optional": false, + "readonly": false, + "type": "any", + "description": "Filter value." + } + ] }, { - "class": "p-select-clear-icon", - "description": "Class name of the clear icon element" - }, + "name": "SelectLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the first element in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the last element in viewport." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ { - "class": "p-select-dropdown", - "description": "Class name of the dropdown element" + "parent": "select", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the option.\n }", + "description": "item data." + } + ], + "description": "Custom item template." }, { - "class": "p-select-loading-icon", - "description": "Class name of the loadingicon element" + "parent": "select", + "name": "selectedItem", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Selected option value.\n }", + "description": "selected item data." + } + ], + "description": "Custom selected item template." }, { - "class": "p-select-dropdown-icon", - "description": "Class name of the dropdown icon element" + "parent": "select", + "name": "header", + "parameters": [], + "description": "Custom header template." }, { - "class": "p-select-overlay", - "description": "Class name of the overlay element" + "parent": "select", + "name": "filter", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: SelectFilterOptions, // Filter options.\n }" + } + ], + "description": "Custom filter template." }, { - "class": "p-select-header", - "description": "Class name of the header element" + "parent": "select", + "name": "footer", + "parameters": [], + "description": "Custom footer template." }, { - "class": "p-select-filter", - "description": "Class name of the filter element" + "parent": "select", + "name": "emptyfilter", + "parameters": [], + "description": "Custom empty filter template." }, { - "class": "p-select-list-container", - "description": "Class name of the list container element" + "parent": "select", + "name": "empty", + "parameters": [], + "description": "Custom empty template." }, { - "class": "p-select-list", - "description": "Class name of the list element" + "parent": "select", + "name": "group", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Group option.\n }" + } + ], + "description": "Custom group template." }, { - "class": "p-select-option-group", - "description": "Class name of the option group element" + "parent": "select", + "name": "loader", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ScrollerOptions, // Virtual scroller options.\n }" + } + ], + "description": "Custom loader template. This template can be used with virtualScroll." }, { - "class": "p-select-option-group-label", - "description": "Class name of the option group label element" + "parent": "select", + "name": "dropdownicon", + "parameters": [], + "description": "Custom select icon template." }, { - "class": "p-select-option", - "description": "Class name of the option element" + "parent": "select", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." }, { - "class": "p-select-option-label", - "description": "Class name of the option label element" - }, + "parent": "select", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "SelectFilterOptions", + "description": "Filter callbacks of the select.", + "props": [ + { + "name": "filter", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Filter function." + }, + { + "name": "reset", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Reset function." + } + ] + } + ] + } + }, + "style": { + "components": {}, + "classes": { + "values": [ + { + "class": "p-select", + "description": "Class name of the root element" + }, + { + "class": "p-select-label", + "description": "Class name of the label element" + }, + { + "class": "p-select-clear-icon", + "description": "Class name of the clear icon element" + }, + { + "class": "p-select-dropdown", + "description": "Class name of the dropdown element" + }, + { + "class": "p-select-loading-icon", + "description": "Class name of the loadingicon element" + }, + { + "class": "p-select-dropdown-icon", + "description": "Class name of the dropdown icon element" + }, + { + "class": "p-select-overlay", + "description": "Class name of the overlay element" + }, + { + "class": "p-select-header", + "description": "Class name of the header element" + }, + { + "class": "p-select-filter", + "description": "Class name of the filter element" + }, + { + "class": "p-select-list-container", + "description": "Class name of the list container element" + }, + { + "class": "p-select-list", + "description": "Class name of the list element" + }, + { + "class": "p-select-option-group", + "description": "Class name of the option group element" + }, + { + "class": "p-select-option-group-label", + "description": "Class name of the option group label element" + }, + { + "class": "p-select-option", + "description": "Class name of the option element" + }, + { + "class": "p-select-option-label", + "description": "Class name of the option label element" + }, { "class": "p-select-option-check-icon", "description": "Class name of the option check icon element" @@ -20942,6 +26074,72 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "SelectButtonOptionClickEvent", + "description": "Custom click event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "option", + "optional": true, + "readonly": false, + "type": "any", + "description": "Selected option." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the selected option." + } + ] + }, + { + "name": "SelectButtonChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "value", + "optional": true, + "readonly": false, + "type": "any", + "description": "Selected option." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "selectbutton", + "name": "item", + "parameters": [], + "description": "Custom item template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -21148,6 +26346,44 @@ ] } } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "sidebar", + "name": "header", + "parameters": [], + "description": "Custom template of header." + }, + { + "parent": "sidebar", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "sidebar", + "name": "footer", + "parameters": [], + "description": "Custom template of footer." + }, + { + "parent": "sidebar", + "name": "closeicon", + "parameters": [], + "description": "Custom template of closeicon." + }, + { + "parent": "sidebar", + "name": "headless", + "parameters": [], + "description": "Headless template." + } + ] + } } }, "skeleton": { @@ -21360,6 +26596,68 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "SliderChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "event", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "values", + "optional": true, + "readonly": false, + "type": "number[]", + "description": "New values." + }, + { + "name": "value", + "optional": true, + "readonly": false, + "type": "number", + "description": "New value." + } + ] + }, + { + "name": "SliderSlideEndEvent", + "description": "Custom slide end event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Original event" + }, + { + "name": "value", + "optional": true, + "readonly": false, + "type": "number", + "description": "New value." + }, + { + "name": "values", + "optional": true, + "readonly": false, + "type": "number[]", + "description": "New values." + } + ] + } + ] + } + }, "style": { "components": {}, "classes": { @@ -21608,6 +26906,42 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "speeddial", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: MenuItem, // Data of the item.\n \t index: number, // Index of the item.\n \t toggleCallback: Function, // Item click function\n }" + } + ], + "description": "Custom template of item." + }, + { + "parent": "speeddial", + "name": "button", + "parameters": [ + { + "name": "context", + "type": "{\n \t toggleCallback: Function, // Button click function\n }" + } + ], + "description": "Custom template of button." + }, + { + "parent": "speeddial", + "name": "icon", + "parameters": [], + "description": "Custom template of icon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -21906,6 +27240,26 @@ } } }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "splitbutton", + "name": "content", + "parameters": [], + "description": "Custom template of content." + }, + { + "parent": "splitbutton", + "name": "dropdownicon", + "parameters": [], + "description": "Custom template of dropdownicon." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -22045,6 +27399,65 @@ } } }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "SplitterResizeStartEvent", + "description": "Custom panel resize start event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "MouseEvent | TouchEvent", + "description": "Browser event." + }, + { + "name": "sizes", + "optional": false, + "readonly": false, + "type": "number[]", + "description": "Collapsed state of the panel." + } + ] + }, + { + "name": "SplitterResizeEndEvent", + "description": "Custom panel resize end event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "MouseEvent | TouchEvent", + "description": "Browser event." + }, + { + "name": "sizes", + "optional": false, + "readonly": false, + "type": "number[]", + "description": "Collapsed state of the panel." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "splitter", + "name": "panel", + "parameters": [], + "description": "Custom panel template." + } + ] + } + }, "style": { "components": {}, "classes": { @@ -22458,47 +27871,310 @@ } } }, - "table": { - "components": { - "Table": { - "description": "Table displays data in tabular format.", - "props": { - "description": "Defines the input properties of the component.", - "values": [ - { - "name": "frozenColumns", - "optional": false, - "readonly": false, - "type": "any[]", - "description": "An array of objects to represent dynamic columns that are frozen." - }, - { - "name": "frozenValue", - "optional": false, - "readonly": false, - "type": "any[]", - "description": "An array of objects to display as frozen." - }, - { - "name": "style", - "optional": false, - "readonly": false, - "type": "Object", - "description": "Inline style of the component." - }, - { - "name": "styleClass", - "optional": false, - "readonly": false, - "type": "string", - "description": "Style class of the component." - }, - { - "name": "tableStyle", - "optional": false, - "readonly": false, - "type": "Object", - "description": "Inline style of the table." + "columnfilter": { + "interfaces": { + "components": { + "ColumnFilterProps": { + "description": "Defines valid properties in ColumnFilter component.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ + { + "name": "field", + "optional": false, + "readonly": false, + "type": "string", + "default": "text", + "description": "Property represented by the column." + }, + { + "name": "type", + "optional": false, + "readonly": false, + "type": "string", + "default": "text", + "description": "Type of the input." + }, + { + "name": "display", + "optional": false, + "readonly": false, + "type": "string", + "default": "row", + "description": "Filter display." + }, + { + "name": "showMenu", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to display filter menu popup." + }, + { + "name": "matchMode", + "optional": false, + "readonly": false, + "type": "string", + "description": "Filter match mode." + }, + { + "name": "operator", + "optional": false, + "readonly": false, + "type": "string", + "default": "'AND'", + "description": "Filter operator." + }, + { + "name": "showOperator", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to display filter operator." + }, + { + "name": "showClearButton", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to display clear filter button." + }, + { + "name": "showApplyButton", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to display apply filter button." + }, + { + "name": "showMatchModes", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to display filter match modes." + }, + { + "name": "showAddButton", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to display add filter button." + }, + { + "name": "hideOnClear", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Decides whether to close popup on clear button click." + }, + { + "name": "placeholder", + "optional": false, + "readonly": false, + "type": "string", + "description": "Filter placeholder." + }, + { + "name": "matchModeOptions", + "optional": false, + "readonly": false, + "type": "SelectItem[]", + "description": "Filter match mode options." + }, + { + "name": "maxConstraints", + "optional": false, + "readonly": false, + "type": "number", + "default": "2", + "description": "Defines maximum amount of constraints." + }, + { + "name": "minFractionDigits", + "optional": false, + "readonly": false, + "type": "number", + "description": "Defines minimum fraction of digits." + }, + { + "name": "maxFractionDigits", + "optional": false, + "readonly": false, + "type": "number", + "description": "Defines maximum fraction of digits." + }, + { + "name": "prefix", + "optional": false, + "readonly": false, + "type": "string", + "description": "Defines prefix of the filter." + }, + { + "name": "suffix", + "optional": false, + "readonly": false, + "type": "string", + "description": "Defines suffix of the filter." + }, + { + "name": "locale", + "optional": false, + "readonly": false, + "type": "string", + "description": "Defines filter locale." + }, + { + "name": "localeMatcher", + "optional": false, + "readonly": false, + "type": "string", + "description": "Defines filter locale matcher." + }, + { + "name": "currency", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Enables currency input." + }, + { + "name": "currencyDisplay", + "optional": false, + "readonly": false, + "type": "string", + "description": "Defines the display of the currency input." + }, + { + "name": "useGrouping", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Defines if filter grouping will be enabled." + }, + { + "name": "showButtons", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Defines the visibility of buttons." + }, + { + "name": "ariaLabel", + "optional": false, + "readonly": false, + "type": "string", + "description": "Defines the aria-label of the form element." + } + ] + } + } + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "columnfilter", + "name": "filterTemplate", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: string, // filterConstraint.value.\n \t filterCallback: undefined, // filter callback.\n \t type: string, // Type of the input.\n \t filterConstraint: string, // Filter constraint.\n \t placeholder: boolean, // Input placeholder.\n \t minFractionDigits: number, // Minimum fraction of digits.\n \t maxFractionDigits: number, // Maximum fraction of digits.\n \t prefix: string, // Input prefix.\n \t suffix: string, // Input suffix.\n \t locale: string, // Locale.\n \t localeMatcher: string, // Locale matcher.\n \t currency: boolean, // Enables currency input.\n \t currencyDisplay: boolean, // Display of the currency input.\n \t useGrouping: boolean, // Defines if filter grouping will be enabled.\n \t showButtons: boolean, // Defines the visibility of buttons.\n }" + } + ], + "description": "Custom filter template." + }, + { + "parent": "columnfilter", + "name": "headerTemplate", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "columnfilter", + "name": "footerTemplate", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "columnfilter", + "name": "filterIconTemplate", + "parameters": [], + "description": "Custom filter icon template." + }, + { + "parent": "columnfilter", + "name": "removeRuleIconTemplate", + "parameters": [], + "description": "Custom remove rule icon template." + }, + { + "parent": "columnfilter", + "name": "addRuleIconTemplate", + "parameters": [], + "description": "Custom add rule icon template." + }, + { + "parent": "columnfilter", + "name": "clearFilterIconTemplate", + "parameters": [], + "description": "Custom clear filter icon template." + } + ] + } + } + }, + "table": { + "components": { + "Table": { + "description": "Table displays data in tabular format.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ + { + "name": "frozenColumns", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "An array of objects to represent dynamic columns that are frozen." + }, + { + "name": "frozenValue", + "optional": false, + "readonly": false, + "type": "any[]", + "description": "An array of objects to display as frozen." + }, + { + "name": "style", + "optional": false, + "readonly": false, + "type": "Object", + "description": "Inline style of the component." + }, + { + "name": "styleClass", + "optional": false, + "readonly": false, + "type": "string", + "description": "Style class of the component." + }, + { + "name": "tableStyle", + "optional": false, + "readonly": false, + "type": "Object", + "description": "Inline style of the table." }, { "name": "tableStyleClass", @@ -23621,55 +29297,806 @@ } ] } - } - }, - "tabmenu": { - "components": { - "TabMenu": { - "description": "TabMenu is a navigation component that displays items as tab headers.", - "props": { - "description": "Defines the input properties of the component.", - "values": [ - { - "name": "model", - "optional": false, - "readonly": false, - "type": "MenuItem[]", - "description": "An array of menuitems." - }, - { - "name": "activeItem", - "optional": false, - "readonly": false, - "type": "MenuItem", - "description": "Defines the default active menuitem" - }, - { - "name": "scrollable", - "optional": false, - "readonly": false, - "type": "boolean", - "default": "false", - "description": "When enabled displays buttons at each side of the tab headers to scroll the tab list." - }, - { - "name": "style", - "optional": false, - "readonly": false, - "type": "Object", - "description": "Inline style of the element." - }, - { - "name": "styleClass", - "optional": false, - "readonly": false, - "type": "string", - "description": "Class of the element." - }, - { - "name": "ariaLabel", - "optional": false, - "readonly": false, + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "TableRowSelectEvent", + "description": "Custom select event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "Row data." + }, + { + "name": "type", + "optional": true, + "readonly": false, + "type": "string", + "description": "Selection type." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the selected row." + } + ] + }, + { + "name": "TableRowUnSelectEvent", + "description": "Custom unselect event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "Row data." + }, + { + "name": "type", + "optional": true, + "readonly": false, + "type": "string", + "description": "Selection type." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the selected row." + } + ] + }, + { + "name": "TableFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "filters", + "optional": true, + "readonly": false, + "type": "Object", + "description": "Filter meta." + }, + { + "name": "filteredValue", + "optional": true, + "readonly": false, + "type": "any", + "description": "Value after filter." + } + ] + }, + { + "name": "TableLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "rows", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "sortField", + "optional": true, + "readonly": false, + "type": "string | string[]" + }, + { + "name": "sortOrder", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "filters", + "optional": true, + "readonly": false, + "type": "Object" + }, + { + "name": "globalFilter", + "optional": true, + "readonly": false, + "type": "string | string[]" + }, + { + "name": "multiSortMeta", + "optional": true, + "readonly": false, + "type": "SortMeta[]" + }, + { + "name": "forceUpdate", + "optional": true, + "readonly": false, + "type": "Function" + }, + { + "name": "first", + "optional": true, + "readonly": false, + "type": "number", + "description": "First element in viewport." + }, + { + "name": "last", + "optional": true, + "readonly": false, + "type": "number", + "description": "Last element in viewport." + } + ] + }, + { + "name": "TableRowExpandEvent", + "description": "Custom row expand event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "data", + "optional": false, + "readonly": false, + "type": "any", + "description": "Row data." + } + ] + }, + { + "name": "TableRowCollapseEvent", + "description": "Custom row collapse event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "data", + "optional": false, + "readonly": false, + "type": "any", + "description": "Row data." + } + ] + }, + { + "name": "TableContextMenuSelectEvent", + "description": "Custom context menu select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "data", + "optional": false, + "readonly": false, + "type": "any", + "description": "Row data." + }, + { + "name": "index", + "optional": false, + "readonly": false, + "type": "number", + "description": "Row index." + } + ] + }, + { + "name": "TableContextMenuSelectionChangeEvent", + "description": "Custom context menu selection change event.", + "props": [ + { + "name": "data", + "optional": false, + "readonly": false, + "type": "any", + "description": "Row data." + } + ] + }, + { + "name": "TableColResizeEvent", + "description": "Custom column resize event.", + "props": [ + { + "name": "element", + "optional": false, + "readonly": false, + "type": "HTMLElement", + "description": "Instance of resized column." + }, + { + "name": "delta", + "optional": false, + "readonly": false, + "type": "number", + "description": "Position." + } + ] + }, + { + "name": "TableColumnReorderEvent", + "description": "Custom column reorder event.", + "props": [ + { + "name": "dragIndex", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the dragged item." + }, + { + "name": "dropIndex", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the drop position." + }, + { + "name": "columns", + "optional": true, + "readonly": false, + "type": "any[]", + "description": "Columns after reorder." + } + ] + }, + { + "name": "TableRowReorderEvent", + "description": "Custom row reorder event.", + "props": [ + { + "name": "dragIndex", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the dragged item." + }, + { + "name": "dropIndex", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the drop position." + } + ] + }, + { + "name": "TableEditEvent", + "description": "Custom edit event.", + "props": [ + { + "name": "field", + "optional": true, + "readonly": false, + "type": "string", + "description": "Field to be edited." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "New value." + } + ] + }, + { + "name": "TableEditInitEvent", + "description": "Custom edit init event.", + "props": [ + { + "name": "field", + "optional": true, + "readonly": false, + "type": "string", + "description": "Field to be edited." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "New value." + }, + { + "name": "index", + "optional": false, + "readonly": false, + "type": "number", + "description": "Edited element index." + } + ] + }, + { + "name": "TableEditCancelEvent", + "description": "Custom edit cancel event.", + "props": [ + { + "name": "field", + "optional": true, + "readonly": false, + "type": "string", + "description": "Field to be edited." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "New value." + }, + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Edited element index." + } + ] + }, + { + "name": "TableEditCompleteEvent", + "description": "Custom edit complete event.", + "props": [ + { + "name": "field", + "optional": true, + "readonly": false, + "type": "string", + "description": "Field to be edited." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "New value." + }, + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Edited element index." + } + ] + }, + { + "name": "TableHeaderCheckboxToggleEvent", + "description": "Custom checkbox toggle event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Checked state." + } + ] + }, + { + "name": "TableSelectAllChangeEvent", + "description": "Custom all selection change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Checked state." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "table", + "name": "caption", + "parameters": [], + "description": "Custom caption template." + }, + { + "parent": "table", + "name": "headergrouped", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Row data.\n \t rowIndex: number, // Row index.\n \t columns: any, // Columns.\n \t editing: boolean, // Editing state.\n \t frozen: boolean, // Frozen state.\n }", + "description": "row data." + } + ], + "description": "Custom grouped header template." + }, + { + "parent": "table", + "name": "header", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: string, // Field.\n }", + "description": "header data." + } + ], + "description": "Custom grouped header template." + }, + { + "parent": "table", + "name": "body", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns.\n \t frozen: boolean, // Frozen state.\n }", + "description": "body data." + } + ], + "description": "Custom body template." + }, + { + "parent": "table", + "name": "loadingbody", + "parameters": [ + { + "name": "context", + "type": "{\n \t rowspan: number, // Row span.\n \t rowgroup: number, // Row group.\n }", + "description": "loading body data." + } + ], + "description": "Custom loading body template." + }, + { + "parent": "table", + "name": "footer", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: string, // Field.\n }", + "description": "footer data." + } + ], + "description": "Custom footer template." + }, + { + "parent": "table", + "name": "footergrouped", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns.\n }", + "description": "footer data." + } + ], + "description": "Custom footer template." + }, + { + "parent": "table", + "name": "colgroup", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns.\n }", + "description": "columns data." + } + ], + "description": "Custom column group template." + }, + { + "parent": "table", + "name": "summary", + "parameters": [], + "description": "Custom summary template." + }, + { + "parent": "table", + "name": "rowexpansion", + "parameters": [ + { + "name": "context", + "type": "{\n \t rowspan: number, // Row span.\n \t rowgroup: number, // Row group.\n \t expanded: boolean, // Expanded state.\n }", + "description": "expanded row data." + } + ], + "description": "Custom expanded row template." + }, + { + "parent": "table", + "name": "groupheader", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Row data.\n \t rowIndex: number, // Row index.\n \t columns: any, // Columns.\n \t editing: boolean, // Editing state.\n \t frozen: boolean, // Frozen state.\n }", + "description": "row data." + } + ], + "description": "Custom group header template." + }, + { + "parent": "table", + "name": "groupfooter", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Row data.\n \t rowIndex: number, // Row index.\n \t columns: any, // Columns.\n \t editing: boolean, // Editing state.\n \t frozen: boolean, // Frozen state.\n }", + "description": "row data." + } + ], + "description": "Custom group footer template." + }, + { + "parent": "table", + "name": "frozenheader", + "parameters": [], + "description": "Custom frozen header template." + }, + { + "parent": "table", + "name": "frozenbody", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Row data.\n \t rowIndex: number, // Row index.\n \t columns: any, // Columns.\n \t editing: boolean, // Editing state.\n \t frozen: boolean, // Frozen state.\n }", + "description": "row data." + } + ], + "description": "Custom frozen body template." + }, + { + "parent": "table", + "name": "frozenfooter", + "parameters": [], + "description": "Custom frozen footer template." + }, + { + "parent": "table", + "name": "frozencolgroup", + "parameters": [], + "description": "Custom frozen column group template." + }, + { + "parent": "table", + "name": "frozenrowexpansion", + "parameters": [ + { + "name": "context", + "type": "{\n \t rowspan: number, // Row span.\n \t rowgroup: number, // Row group.\n \t expanded: boolean, // Expanded state.\n }", + "description": "row data." + } + ], + "description": "Custom frozen expanded row template." + }, + { + "parent": "table", + "name": "emptymessage", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns\n \t frozen: boolean, // Frozen state.\n }" + } + ], + "description": "Custom empty message template." + }, + { + "parent": "table", + "name": "paginatorleft", + "parameters": [], + "description": "Custom paginator left template." + }, + { + "parent": "table", + "name": "paginatorright", + "parameters": [], + "description": "Custom paginator right template." + }, + { + "parent": "table", + "name": "paginatordropdownicon", + "parameters": [], + "description": "Custom paginator dropdown trigger icon template." + }, + { + "parent": "table", + "name": "paginatordropdownitem", + "parameters": [], + "description": "Custom paginator dropdown item template." + }, + { + "parent": "table", + "name": "paginatorfirstpagelinkicon", + "parameters": [], + "description": "Custom paginator first page link icon template." + }, + { + "parent": "table", + "name": "paginatorlastpagelinkicon", + "parameters": [], + "description": "Custom paginator last page link icon template." + }, + { + "parent": "table", + "name": "paginatorpreviouspagelinkicon", + "parameters": [], + "description": "Custom paginator previous page link icon template." + }, + { + "parent": "table", + "name": "paginatornextpagelinkicon", + "parameters": [], + "description": "Custom paginator next page link icon template." + }, + { + "parent": "table", + "name": "loadingicon", + "parameters": [], + "description": "Custom loading icon template." + }, + { + "parent": "table", + "name": "reorderindicatorupicon", + "parameters": [], + "description": "Custom reorder indicator up icon template." + }, + { + "parent": "table", + "name": "reorderindicatordownicon", + "parameters": [], + "description": "Custom reorder indicator down icon template." + }, + { + "parent": "table", + "name": "sorticon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: number, // Sort order.\n }" + } + ], + "description": "Custom sort icon template." + }, + { + "parent": "table", + "name": "checkboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checkbox state.\n \t partialSelected: boolean, // Partial selection state of row node.\n }", + "description": "checkbox data." + } + ], + "description": "Custom checkbox icon template." + }, + { + "parent": "table", + "name": "headercheckboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checked state.\n }", + "description": "checkbox data." + } + ], + "description": "Custom header checkbox icon template." + } + ] + } + } + }, + "tabmenu": { + "components": { + "TabMenu": { + "description": "TabMenu is a navigation component that displays items as tab headers.", + "props": { + "description": "Defines the input properties of the component.", + "values": [ + { + "name": "model", + "optional": false, + "readonly": false, + "type": "MenuItem[]", + "description": "An array of menuitems." + }, + { + "name": "activeItem", + "optional": false, + "readonly": false, + "type": "MenuItem", + "description": "Defines the default active menuitem" + }, + { + "name": "scrollable", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "When enabled displays buttons at each side of the tab headers to scroll the tab list." + }, + { + "name": "style", + "optional": false, + "readonly": false, + "type": "Object", + "description": "Inline style of the element." + }, + { + "name": "styleClass", + "optional": false, + "readonly": false, + "type": "string", + "description": "Class of the element." + }, + { + "name": "ariaLabel", + "optional": false, + "readonly": false, "type": "string", "description": "Defines a string value that labels an interactive element." }, @@ -23733,6 +30160,38 @@ } ] } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "tabmenu", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n \t index: number, // Item index.\n }", + "description": "item data." + } + ], + "description": "Custom template of item." + }, + { + "parent": "tabmenu", + "name": "nexticon", + "parameters": [], + "description": "Custom template of nexticon." + }, + { + "parent": "tabmenu", + "name": "previousicon", + "parameters": [], + "description": "Custom template of previousicon." + } + ] + } } }, "tabs": { @@ -23908,6 +30367,44 @@ ] } } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "tabpanel", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "tabpanel", + "name": "content", + "parameters": [], + "description": "Custom content template(Default)." + }, + { + "parent": "tabpanel", + "name": "righticon", + "parameters": [], + "description": "Custom right icon template." + }, + { + "parent": "tabpanel", + "name": "lefticon", + "parameters": [], + "description": "Custom left icon template." + }, + { + "parent": "tabpanel", + "name": "closeicon", + "parameters": [], + "description": "Custom close icon template." + } + ] + } } }, "tabpanels": { @@ -24142,6 +30639,76 @@ ] } } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "TabViewChangeEvent", + "description": "Custom tab change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "index", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the selected tab" + } + ] + }, + { + "name": "TabViewCloseEvent", + "description": "Custom tab close event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "index", + "optional": false, + "readonly": false, + "type": "number", + "description": "Index of the closed tab" + }, + { + "name": "close", + "optional": true, + "readonly": false + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "tabview", + "name": "previousicon", + "parameters": [], + "description": "Previous button icon template for the scrollable component." + }, + { + "parent": "tabview", + "name": "nexticon", + "parameters": [], + "description": "Next button icon template for the scrollable component." + } + ] + } } }, "tag": { @@ -24217,6 +30784,20 @@ } ] } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "tag", + "name": "icon", + "parameters": [], + "description": "Custom icon template" + } + ] + } } }, "terminal": { @@ -24300,6 +30881,34 @@ } ] } + }, + "interfaces": { + "components": {}, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "TerminalService", + "description": "Defines Terminal service options.", + "props": [ + { + "name": "sendCommand", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Emits command value." + }, + { + "name": "sendResponse", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Emits response value." + } + ] + } + ] + } } }, "terminalservice": { @@ -24564,6 +31173,31 @@ } ] } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "tieredmenu", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n \t hasSubmenu: boolean, // Submenu control of the item.\n }" + } + ], + "description": "Custom template of item." + }, + { + "parent": "tieredmenu", + "name": "submenuicon", + "parameters": [], + "description": "Custom template of submenuicon." + } + ] + } } }, "timeline": { @@ -24648,6 +31282,50 @@ } ] } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "timeline", + "name": "content", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom content template." + }, + { + "parent": "timeline", + "name": "opposite", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom opposite item template." + }, + { + "parent": "timeline", + "name": "marker", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n }", + "description": "item data." + } + ], + "description": "Custom marker template." + } + ] + } } }, "toast": { @@ -24825,6 +31503,54 @@ } ] } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "ToastCloseEvent", + "description": "Custom close event.", + "props": [ + { + "name": "message", + "optional": false, + "readonly": false, + "type": "ToastMessageOptions", + "description": "Message of the closed element." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "toast", + "name": "message", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the message.\n }" + } + ], + "description": "Custom template of message." + }, + { + "parent": "toast", + "name": "headless", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Data of the message.\n }" + } + ], + "description": "Headless template." + } + ] + } } }, "togglebutton": { @@ -24963,16 +31689,73 @@ "classes": { "values": [ { - "class": "p-togglebutton", - "description": "Class name of the root element" - }, - { - "class": "p-togglebutton-icon", - "description": "Class name of the icon element" + "class": "p-togglebutton", + "description": "Class name of the root element" + }, + { + "class": "p-togglebutton-icon", + "description": "Class name of the icon element" + }, + { + "class": "p-togglebutton-label", + "description": "Class name of the label element" + } + ] + } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "ToggleButtonChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Boolean value to represent checked state." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "togglebutton", + "name": "icon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checked.\n }", + "description": "checked state as boolean." + } + ], + "description": "Custom icon template." }, { - "class": "p-togglebutton-label", - "description": "Class name of the label element" + "parent": "togglebutton", + "name": "content", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checked.\n \t label: string, // Label of the component.\n }", + "description": "content data." + } + ], + "description": "Custom content template." } ] } @@ -25111,6 +31894,34 @@ } ] } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "ToggleSwitchChangeEvent", + "description": "Custom change event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Checked state." + } + ] + } + ] + } } }, "toolbar": { @@ -25167,6 +31978,32 @@ } ] } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "toolbar", + "name": "start", + "parameters": [], + "description": "Custom start content." + }, + { + "parent": "toolbar", + "name": "end", + "parameters": [], + "description": "Custom end content." + }, + { + "parent": "toolbar", + "name": "center", + "parameters": [], + "description": "Custom center content." + } + ] + } } }, "tooltip": { @@ -25827,6 +32664,299 @@ } ] } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "TreeNodeSelectEvent", + "description": "Custom node select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeNodeUnSelectEvent", + "description": "Custom node unselect event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeNodeExpandEvent", + "description": "Custom node expand event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeNodeCollapseEvent", + "description": "Custom node collapse event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeNodeContextMenuSelectEvent", + "description": "Custom context menu select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event" + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeNodeDropEvent", + "description": "Custom node drop event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "DragEvent", + "description": "Browser drag event." + }, + { + "name": "dragNode", + "optional": true, + "readonly": false, + "type": "TreeNode", + "description": "Dragged node instance." + }, + { + "name": "dropNode", + "optional": true, + "readonly": false, + "type": "TreeNode", + "description": "Dropped node instance." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the dragged node." + }, + { + "name": "accept", + "optional": true, + "readonly": false, + "type": "Function", + "description": "Callback to invoke on drop." + } + ] + }, + { + "name": "TreeLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "First element index in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Last element index in viewport." + } + ] + }, + { + "name": "TreeScrollIndexChangeEvent", + "description": "Custom scroll index change event.", + "props": [ + { + "name": "first", + "optional": false, + "readonly": false, + "type": "number", + "description": "First element index in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "number", + "description": "Last element index in viewport." + } + ] + }, + { + "name": "TreeScrollEvent", + "description": "Custom scroll event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + } + ] + }, + { + "name": "TreeFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "filter", + "optional": false, + "readonly": false, + "type": "string", + "description": "Filter value." + }, + { + "name": "filteredValue", + "optional": false, + "readonly": false, + "type": "TreeNode[]", + "description": "Filtered nodes." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "tree", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "tree", + "name": "empty", + "parameters": [], + "description": "Custom empty message template." + }, + { + "parent": "tree", + "name": "footer", + "parameters": [], + "description": "Custom footer template." + }, + { + "parent": "tree", + "name": "loader", + "parameters": [ + { + "name": "context", + "type": "{\n \t options: ScrollerOptions, // Scroller options.\n }", + "description": "loader options." + } + ], + "description": "Custom loader template." + }, + { + "parent": "tree", + "name": "togglericon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Expanded state of the node.\n }", + "description": "expand data." + } + ], + "description": "Custom toggler icon template." + }, + { + "parent": "tree", + "name": "checkboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checked state of the node.\n \t partialSelected: boolean, // Partial selection state of the node.\n }", + "description": "node data." + } + ], + "description": "Custom checkbox icon template." + }, + { + "parent": "tree", + "name": "loadingicon", + "parameters": [], + "description": "Custom loading icon template." + }, + { + "parent": "tree", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." + } + ] + } } }, "treeselect": { @@ -26252,44 +33382,181 @@ "classes": { "values": [ { - "class": "p-treeselect", - "description": "Class name of the root element" + "class": "p-treeselect", + "description": "Class name of the root element" + }, + { + "class": "p-treeselect-label-container", + "description": "Class name of the label container element" + }, + { + "class": "p-treeselect-label", + "description": "Class name of the label element" + }, + { + "class": "p-treeselect-chip-item", + "description": "Class name of the chip item element" + }, + { + "class": "p-treeselect-chip", + "description": "Class name of the chip element" + }, + { + "class": "p-treeselect-dropdown", + "description": "Class name of the dropdown element" + }, + { + "class": "p-treeselect-dropdown-icon", + "description": "Class name of the dropdown icon element" + }, + { + "class": "p-treeselect-overlay", + "description": "Class name of the panel element" + }, + { + "class": "p-treeselect-tree-container", + "description": "Class name of the tree container element" + }, + { + "class": "p-treeselect-empty-message", + "description": "Class name of the empty message element" + } + ] + } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "TreeSelectNodeCollapseEvent", + "description": "Custom node collapse event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeSelectNodeExpandEvent", + "description": "Custom node expand event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "treeselect", + "name": "value", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: TreeNode, // Value of the component.\n \t placeholder: string, // Placeholder of the component.\n }", + "description": "value data." + } + ], + "description": "Custom value template." }, { - "class": "p-treeselect-label-container", - "description": "Class name of the label container element" + "parent": "treeselect", + "name": "header", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: TreeNode, // Value of the component.\n \t options: TreeNode, // Placeholder of the component.\n }", + "description": "header data." + } + ], + "description": "Custom header template." }, { - "class": "p-treeselect-label", - "description": "Class name of the label element" + "parent": "treeselect", + "name": "empty", + "parameters": [], + "description": "Custom empty template." }, { - "class": "p-treeselect-chip-item", - "description": "Class name of the chip item element" + "parent": "treeselect", + "name": "footer", + "parameters": [], + "description": "Custom footer template." }, { - "class": "p-treeselect-chip", - "description": "Class name of the chip element" + "parent": "treeselect", + "name": "clearicon", + "parameters": [], + "description": "Custom clear icon template." }, { - "class": "p-treeselect-dropdown", - "description": "Class name of the dropdown element" + "parent": "treeselect", + "name": "triggericon", + "parameters": [], + "description": "Custom dropdown trigger icon template." }, { - "class": "p-treeselect-dropdown-icon", - "description": "Class name of the dropdown icon element" + "parent": "treeselect", + "name": "filtericon", + "parameters": [], + "description": "Custom filter icon template." }, { - "class": "p-treeselect-overlay", - "description": "Class name of the panel element" + "parent": "treeselect", + "name": "closeicon", + "parameters": [], + "description": "Custom close icon template." }, { - "class": "p-treeselect-tree-container", - "description": "Class name of the tree container element" + "parent": "treeselect", + "name": "itemtogglericon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Expanded state of the node.\n }", + "description": "toggler icon data." + } + ], + "description": "Custom node toggler template." }, { - "class": "p-treeselect-empty-message", - "description": "Class name of the empty message element" + "parent": "treeselect", + "name": "itemcheckboxicon", + "parameters": [], + "description": "Custom node checkbox icon template." + }, + { + "parent": "treeselect", + "name": "itemloadingicon", + "parameters": [], + "description": "Custom loading icon template." } ] } @@ -27026,88 +34293,893 @@ "classes": { "values": [ { - "class": "p-treetable", - "description": "Class name of the root element" + "class": "p-treetable", + "description": "Class name of the root element" + }, + { + "class": "p-treetable-loading", + "description": "Class name of the loading element" + }, + { + "class": "p-treetable-mask", + "description": "Class name of the mask element" + }, + { + "class": "p-treetable-loading-icon", + "description": "Class name of the loading icon element" + }, + { + "class": "p-treetable-header", + "description": "Class name of the header element" + }, + { + "class": "p-treetable-paginator-[position]", + "description": "Class name of the paginator element" + }, + { + "class": "p-treetable-table-container", + "description": "Class name of the table container element" + }, + { + "class": "p-treetable-table", + "description": "Class name of the table element" + }, + { + "class": "p-treetable-thead", + "description": "Class name of the thead element" + }, + { + "class": "p-treetable-column-resizer", + "description": "Class name of the column resizer element" + }, + { + "class": "p-treetable-column-title", + "description": "Class name of the column title element" + }, + { + "class": "p-treetable-sort-icon", + "description": "Class name of the sort icon element" + }, + { + "class": "p-treetable-sort-badge", + "description": "Class name of the sort badge element" + }, + { + "class": "p-treetable-tbody", + "description": "Class name of the tbody element" + }, + { + "class": "p-treetable-node-toggle-button", + "description": "Class name of the node toggle button element" + }, + { + "class": "p-treetable-node-toggle-icon", + "description": "Class name of the node toggle icon element" + }, + { + "class": "p-treetable-node-checkbox", + "description": "Class name of the node checkbox element" + }, + { + "class": "p-treetable-empty-message", + "description": "Class name of the empty message element" + }, + { + "class": "p-treetable-tfoot", + "description": "Class name of the tfoot element" + }, + { + "class": "p-treetable-footer", + "description": "Class name of the footer element" + }, + { + "class": "p-treetable-column-resize-indicator", + "description": "Class name of the column resize indicator element" + } + ] + } + }, + "interfaces": { + "components": {}, + "events": { + "description": "Defines the custom events used by the component's emitters.", + "values": [ + { + "name": "TreeTableLazyLoadEvent", + "description": "Custom lazy load event.", + "props": [ + { + "name": "rows", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "sortField", + "optional": true, + "readonly": false, + "type": "string | string[]" + }, + { + "name": "sortOrder", + "optional": true, + "readonly": false, + "type": "number" + }, + { + "name": "filters", + "optional": true, + "readonly": false, + "type": "Object" + }, + { + "name": "globalFilter", + "optional": true, + "readonly": false, + "type": "string | string[]" + }, + { + "name": "multiSortMeta", + "optional": true, + "readonly": false, + "type": "SortMeta[]" + }, + { + "name": "forceUpdate", + "optional": true, + "readonly": false, + "type": "Function" + }, + { + "name": "first", + "optional": false, + "readonly": false, + "type": "any", + "description": "First element in viewport." + }, + { + "name": "last", + "optional": false, + "readonly": false, + "type": "any", + "description": "Last element in viewport." + } + ] + }, + { + "name": "TreeTableColumnReorderEvent", + "description": "Custom column reorder event.", + "props": [ + { + "name": "dragIndex", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the dragged item." + }, + { + "name": "dropIndex", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the drop position." + }, + { + "name": "columns", + "optional": true, + "readonly": false, + "type": "any[]", + "description": "Columns after reorder." + } + ] + }, + { + "name": "TreeTableFilterEvent", + "description": "Custom filter event.", + "props": [ + { + "name": "filters", + "optional": true, + "readonly": false, + "type": "Object", + "description": "Filter meta." + }, + { + "name": "filteredValue", + "optional": true, + "readonly": false, + "type": "TreeNode[]", + "description": "Value after filter." + } + ] + }, + { + "name": "TreeTableNodeExpandEvent", + "description": "Custom node expand event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeTableNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeTableNodeCollapseEvent", + "description": "Custom node collapse event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeTableNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeTableSortEvent", + "description": "Custom sort event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "TreeNode[]", + "description": "Value to be sorted." + }, + { + "name": "mode", + "optional": true, + "readonly": false, + "type": "\"multiple\" | \"single\"", + "description": "Sort mode." + }, + { + "name": "field", + "optional": true, + "readonly": false, + "type": "string", + "description": "Sort field." + }, + { + "name": "order", + "optional": true, + "readonly": false, + "type": "number", + "description": "Sort order." + }, + { + "name": "multiSortMeta", + "optional": true, + "readonly": false, + "type": "SortMeta[]", + "description": "Multiple sort meta." + }, + { + "name": "multisortmeta", + "optional": true, + "readonly": false, + "type": "any", + "description": "Multiple sort meta." + }, + { + "name": "sortMeta", + "optional": true, + "readonly": false, + "type": "SortMeta", + "description": "Sort meta." + } + ] + }, + { + "name": "TreeTableColResizeEvent", + "description": "Custom column resize event.", + "props": [ + { + "name": "element", + "optional": false, + "readonly": false, + "type": "HTMLElement", + "description": "Instance of resized column." + }, + { + "name": "delta", + "optional": false, + "readonly": false, + "type": "number", + "description": "Position." + } + ] + }, + { + "name": "TreeTableNodeSelectEvent", + "description": "Custom node select event.", + "props": [ + { + "name": "checked", + "optional": true, + "readonly": false, + "type": "boolean" + }, + { + "name": "label", + "optional": true, + "readonly": false, + "type": "string", + "description": "Label of the node." + }, + { + "name": "data", + "optional": true, + "readonly": false, + "type": "any", + "description": "Data represented by the node." + }, + { + "name": "icon", + "optional": true, + "readonly": false, + "type": "string", + "description": "Icon of the node to display next to content." + }, + { + "name": "expandedIcon", + "optional": true, + "readonly": false, + "type": "string", + "description": "Icon to use in expanded state." + }, + { + "name": "collapsedIcon", + "optional": true, + "readonly": false, + "type": "string", + "description": "Icon to use in collapsed state." + }, + { + "name": "children", + "optional": true, + "readonly": false, + "type": "TreeNode[]", + "description": "An array of treenodes as children." + }, + { + "name": "leaf", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Specifies if the node has children. Used in lazy loading." + }, + { + "name": "expanded", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Expanded state of the node." + }, + { + "name": "parent", + "optional": true, + "readonly": false, + "type": "TreeNode", + "description": "Parent of the node." + }, + { + "name": "partialSelected", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if value is partially selected." + }, + { + "name": "style", + "optional": true, + "readonly": false, + "type": "any", + "description": "Inline style of the node." + }, + { + "name": "styleClass", + "optional": true, + "readonly": false, + "type": "string", + "description": "Style class of the node." + }, + { + "name": "draggable", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if the node is draggable." + }, + { + "name": "droppable", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Defines if the node is droppable." + }, + { + "name": "selectable", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Whether the node is selectable when selection mode is enabled." + }, + { + "name": "key", + "optional": true, + "readonly": false, + "type": "string", + "description": "Mandatory unique key of the node." + }, + { + "name": "loading", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Mandatory unique key of the node." + }, + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "rowNode", + "optional": true, + "readonly": false, + "type": "any", + "description": "Row of the node." + }, + { + "name": "node", + "optional": true, + "readonly": false, + "type": "TreeNode", + "description": "Node instance." + }, + { + "name": "type", + "optional": true, + "readonly": false, + "type": "string", + "description": "Selection type." + }, + { + "name": "index", + "optional": true, + "readonly": false, + "type": "number", + "description": "Node index." + }, + { + "name": "level", + "optional": true, + "readonly": false, + "type": "number", + "description": "Node level." + }, + { + "name": "visible", + "optional": true, + "readonly": false, + "type": "boolean", + "description": "Boolean value indicates if node is in viewport." + } + ] + }, + { + "name": "TreeTableNodeUnSelectEvent", + "description": "Custom node unselect event.", + "props": [ + { + "name": "originalEvent", + "optional": true, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": true, + "readonly": false, + "type": "TreeTableNode", + "description": "Node instance." + }, + { + "name": "type", + "optional": true, + "readonly": false, + "type": "string", + "description": "Selection type." + } + ] + }, + { + "name": "TreeTableContextMenuSelectEvent", + "description": "Custom context menu select event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "node", + "optional": false, + "readonly": false, + "type": "TreeTableNode", + "description": "Node instance." + } + ] + }, + { + "name": "TreeTableHeaderCheckboxToggleEvent", + "description": "Custom checkbox toggle event.", + "props": [ + { + "name": "originalEvent", + "optional": false, + "readonly": false, + "type": "Event", + "description": "Browser event." + }, + { + "name": "checked", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Checked state." + } + ] + }, + { + "name": "TreeTableEditEvent", + "description": "Custom edit event.", + "props": [ + { + "name": "field", + "optional": false, + "readonly": false, + "type": "string", + "description": "Field to be edited." + }, + { + "name": "data", + "optional": false, + "readonly": false, + "type": "string", + "description": "New value." + } + ] + } + ] + }, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "treetable", + "name": "caption", + "parameters": [], + "description": "Custom caption template." }, { - "class": "p-treetable-loading", - "description": "Class name of the loading element" + "parent": "treetable", + "name": "header", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n }", + "description": "header data." + } + ], + "description": "Custom header template." }, { - "class": "p-treetable-mask", - "description": "Class name of the mask element" + "parent": "treetable", + "name": "body", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: TreeNode, // undefined\n \t node: TreeNode, // Serialized node.\n \t rowData: any, // Row data.\n \t columns: any, // Columns instance.\n }", + "description": "body data." + } + ], + "description": "Custom body template." }, { - "class": "p-treetable-loading-icon", - "description": "Class name of the loading icon element" + "parent": "treetable", + "name": "footer", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n }", + "description": "footer data." + } + ], + "description": "Custom footer template." }, { - "class": "p-treetable-header", - "description": "Class name of the header element" + "parent": "treetable", + "name": "summary", + "parameters": [], + "description": "Custom summary template." }, { - "class": "p-treetable-paginator-[position]", - "description": "Class name of the paginator element" + "parent": "treetable", + "name": "colgroup", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n }", + "description": "column group data." + } + ], + "description": "Custom colgroup template." }, { - "class": "p-treetable-table-container", - "description": "Class name of the table container element" + "parent": "treetable", + "name": "emptymessage", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n \t frozen: boolean, // Boolean value indicates whether column is frozen.\n }" + } + ], + "description": "Custom emptymessage template." }, { - "class": "p-treetable-table", - "description": "Class name of the table element" + "parent": "treetable", + "name": "paginatorleft", + "parameters": [], + "description": "Custom paginator left section template." }, { - "class": "p-treetable-thead", - "description": "Class name of the thead element" + "parent": "treetable", + "name": "paginatorright", + "parameters": [], + "description": "Custom paginator right section template." }, { - "class": "p-treetable-column-resizer", - "description": "Class name of the column resizer element" + "parent": "treetable", + "name": "paginatordropdownitem", + "parameters": [], + "description": "Custom paginator dropdown template." }, { - "class": "p-treetable-column-title", - "description": "Class name of the column title element" + "parent": "treetable", + "name": "frozenheader", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n }", + "description": "frozen header data." + } + ], + "description": "Custom frozenheader template." }, { - "class": "p-treetable-sort-icon", - "description": "Class name of the sort icon element" + "parent": "treetable", + "name": "frozenbody", + "parameters": [], + "description": "Custom frozenbody template." }, { - "class": "p-treetable-sort-badge", - "description": "Class name of the sort badge element" + "parent": "treetable", + "name": "frozenfooter", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n }", + "description": "frozen footer data." + } + ], + "description": "Custom frozenfooter template." }, { - "class": "p-treetable-tbody", - "description": "Class name of the tbody element" + "parent": "treetable", + "name": "frozencolgroup", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Columns instance.\n }", + "description": "group data." + } + ], + "description": "Custom frozen column group template." }, { - "class": "p-treetable-node-toggle-button", - "description": "Class name of the node toggle button element" + "parent": "treetable", + "name": "loadingicon", + "parameters": [], + "description": "Custom loading icon template." }, { - "class": "p-treetable-node-toggle-icon", - "description": "Class name of the node toggle icon element" + "parent": "treetable", + "name": "reorderindicatorupicon", + "parameters": [], + "description": "Custom reorder indicator up icon template." }, { - "class": "p-treetable-node-checkbox", - "description": "Class name of the node checkbox element" + "parent": "treetable", + "name": "reorderindicatordownicon", + "parameters": [], + "description": "Custom reorder indicator down icon template." }, { - "class": "p-treetable-empty-message", - "description": "Class name of the empty message element" + "parent": "treetable", + "name": "sorticon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: number, // Sort order.\n }", + "description": "sort data." + } + ], + "description": "Custom sort icon template." }, { - "class": "p-treetable-tfoot", - "description": "Class name of the tfoot element" + "parent": "treetable", + "name": "checkboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checkbox state.\n \t partialSelected: boolean, // Partial selection state of row node.\n }", + "description": "checkbox data." + } + ], + "description": "Custom checkbox icon template." }, { - "class": "p-treetable-footer", - "description": "Class name of the footer element" + "parent": "treetable", + "name": "headercheckboxicon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Checkbox state.\n }", + "description": "checkbox data." + } + ], + "description": "Custom header checkbox icon template." }, { - "class": "p-treetable-column-resize-indicator", - "description": "Class name of the column resize indicator element" + "parent": "treetable", + "name": "togglericon", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: boolean, // Expand state of row node.\n }", + "description": "toggle icon data." + } + ], + "description": "Custom toggler icon template." + }, + { + "parent": "treetable", + "name": "paginatorfirstpagelinkicon", + "parameters": [], + "description": "Custom paginator first page link icon template." + }, + { + "parent": "treetable", + "name": "paginatorlastpagelinkicon", + "parameters": [], + "description": "Custom paginatorlastpagelinkicon template." + }, + { + "parent": "treetable", + "name": "paginatorpreviouspagelinkicon", + "parameters": [], + "description": "Custom paginatorpreviouspagelinkicon template." + }, + { + "parent": "treetable", + "name": "paginatornextpagelinkicon", + "parameters": [], + "description": "Custom paginatornextpagelinkicon template." + } + ] + }, + "interfaces": { + "description": "Defines the custom interfaces used by the module.", + "values": [ + { + "name": "TreeTablePaginatorState", + "description": "Paginator state.", + "props": [ + { + "name": "page", + "optional": true, + "readonly": false, + "type": "number", + "description": "Current page." + }, + { + "name": "first", + "optional": true, + "readonly": false, + "type": "number", + "description": "Index of the first element." + }, + { + "name": "rows", + "optional": true, + "readonly": false, + "type": "number", + "description": "Row count." + }, + { + "name": "pageCount", + "optional": true, + "readonly": false, + "type": "number", + "description": "Page count." + } + ] + }, + { + "name": "TreeTableFilterOptions", + "description": "Filtering options.", + "props": [ + { + "name": "filterField", + "optional": false, + "readonly": false, + "type": "string", + "description": "Field to be filtered." + }, + { + "name": "filterValue", + "optional": false, + "readonly": false, + "type": "any", + "description": "Value to use when filtering." + }, + { + "name": "filterConstraint", + "optional": false, + "readonly": false, + "type": "Function", + "description": "Filter constraints." + }, + { + "name": "isStrictMode", + "optional": false, + "readonly": false, + "type": "boolean", + "description": "Boolean value that defines if strict mode enabled." + } + ] } ] } @@ -27196,6 +35268,38 @@ ] } } + }, + "interfaces": { + "components": {}, + "templates": { + "description": "Defines the templates used by the component.", + "values": [ + { + "parent": "virtualscroller", + "name": "item", + "parameters": [ + { + "name": "context", + "type": "{\n \t $implicit: any, // Item instance.\n \t options: ScrollerOptions, // Scroller options.\n }", + "description": "item data." + } + ], + "description": "Custom item template." + }, + { + "parent": "virtualscroller", + "name": "header", + "parameters": [], + "description": "Custom header template." + }, + { + "parent": "virtualscroller", + "name": "footer", + "parameters": [], + "description": "Custom header template." + } + ] + } } }, "lara": { From 25abe5ce1c689c1e06e54564c5be7dc2e729b567 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Thu, 17 Oct 2024 11:41:02 +0300 Subject: [PATCH 38/49] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1edc417106d..90e788ba157 100755 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ ### Website -Visit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation. +PrimeNG is a rich set of open source UI Components for Angular. Visit the [PrimeNG website](https://primeng.org/) for interactive demos, comprehensive documentation and additional resources. From 7064e15130fad1b490e960d8bc62e7e8afda0a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Thu, 17 Oct 2024 13:05:19 +0300 Subject: [PATCH 39/49] Fix typo --- .../pages/landing/herosection.component.ts | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 7efcee135bd..f8ac6dcaf60 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription, debounceTime } from 'rxjs'; +import { Subscription } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -199,14 +199,14 @@ import { KnobModule } from 'primeng/knob'; hidden: isSlimMenu, 'font-medium leading-8': !isSlimMenu, }" - >・・ {{ navItem.title }}{{ navItem.title }}
    @@ -228,10 +228,11 @@ import { KnobModule } from 'primeng/knob'; }" > - - - ・ - Slim Mode + + + ・ + Slim Mode +
    @@ -360,7 +361,7 @@ import { KnobModule } from 'primeng/knob'; @@ -677,9 +678,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { { icon: 'pi pi-user', title: 'Customers' }, { icon: 'pi pi-video', title: 'Movies' }, ]; - this.sampleAppsSidebarNavsMore = [ - { icon: 'pi pi-cog', title: 'Settings' }, - ]; + this.sampleAppsSidebarNavsMore = [{ icon: 'pi pi-cog', title: 'Settings' }]; this.selectedSampleAppsSidebarNav = 'Overview'; this.selectButtonValue = { label: 'Styled', value: 1 }; From ea7e1ca3ca7880c7a94ff541bbb8662f8e50f494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Thu, 17 Oct 2024 13:06:10 +0300 Subject: [PATCH 40/49] Fix typo --- .../pages/landing/herosection.component.ts | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/showcase/pages/landing/herosection.component.ts b/src/app/showcase/pages/landing/herosection.component.ts index 7efcee135bd..f8ac6dcaf60 100644 --- a/src/app/showcase/pages/landing/herosection.component.ts +++ b/src/app/showcase/pages/landing/herosection.component.ts @@ -13,7 +13,7 @@ import { RadioButtonModule } from 'primeng/radiobutton'; import { SelectButtonModule } from 'primeng/selectbutton'; import { SliderModule } from 'primeng/slider'; import { TabMenuModule } from 'primeng/tabmenu'; -import { Subscription, debounceTime } from 'rxjs'; +import { Subscription } from 'rxjs'; import { AppConfigService } from '@service/appconfigservice'; import { DividerModule } from 'primeng/divider'; import { AvatarModule } from 'primeng/avatar'; @@ -199,14 +199,14 @@ import { KnobModule } from 'primeng/knob'; hidden: isSlimMenu, 'font-medium leading-8': !isSlimMenu, }" - >・・ {{ navItem.title }}{{ navItem.title }}
    @@ -228,10 +228,11 @@ import { KnobModule } from 'primeng/knob'; }" > - - - ・ - Slim Mode + + + ・ + Slim Mode +
    @@ -360,7 +361,7 @@ import { KnobModule } from 'primeng/knob'; @@ -677,9 +678,7 @@ export class HeroSectionComponent implements OnInit, OnDestroy { { icon: 'pi pi-user', title: 'Customers' }, { icon: 'pi pi-video', title: 'Movies' }, ]; - this.sampleAppsSidebarNavsMore = [ - { icon: 'pi pi-cog', title: 'Settings' }, - ]; + this.sampleAppsSidebarNavsMore = [{ icon: 'pi pi-cog', title: 'Settings' }]; this.selectedSampleAppsSidebarNav = 'Overview'; this.selectButtonValue = { label: 'Styled', value: 1 }; From f5631e4d48f1210edb37d5d9cba6198a42e363d2 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Thu, 17 Oct 2024 13:18:49 +0300 Subject: [PATCH 41/49] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 90e788ba157..76a278809b4 100755 --- a/README.md +++ b/README.md @@ -8,5 +8,4 @@ [![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org) ### Website - PrimeNG is a rich set of open source UI Components for Angular. Visit the [PrimeNG website](https://primeng.org/) for interactive demos, comprehensive documentation and additional resources. From 9561d724362e4e9362ee56db784d1a33181f975b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:26:05 +0300 Subject: [PATCH 42/49] Fix formgroup error --- .../showcase/doc/autocomplete/reactiveformsdoc.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts b/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts index b6e25ab70ae..f1595eb5f79 100644 --- a/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts +++ b/src/app/showcase/doc/autocomplete/reactiveformsdoc.ts @@ -1,5 +1,5 @@ import { Component } from '@angular/core'; -import { FormGroup } from '@angular/forms'; +import { FormControl, FormGroup } from '@angular/forms'; import { Code } from '@domain/code'; interface AutoCompleteCompleteEvent { @@ -67,6 +67,18 @@ export class AutocompleteReactiveFormsDemo implements OnInit { search(event: AutoCompleteCompleteEvent) { this.items = [...Array(10).keys()].map((item) => event.query + '-' + item); } + + ngOnInit() { + this.formGroup = new FormGroup({ + selectedCountry: new FormControl(undefined), + }); + } }`, }; + + ngOnInit() { + this.formGroup = new FormGroup({ + selectedCountry: new FormControl(undefined), + }); + } } From 4a54e809c6c7510d6a900d7c0ede2347c4971868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:53:36 +0300 Subject: [PATCH 43/49] Add new material theme, fixes #16583 --- .../components/themes/material/material.ts | 822 ++++++++++++++++++ .../components/themes/material/public_api.ts | 1 + .../app.configurator.component.ts | 3 + .../showcase/styles/layout/_topbar.scss | 22 +- 4 files changed, 837 insertions(+), 11 deletions(-) create mode 100644 src/app/components/themes/material/material.ts create mode 100644 src/app/components/themes/material/public_api.ts diff --git a/src/app/components/themes/material/material.ts b/src/app/components/themes/material/material.ts new file mode 100644 index 00000000000..f12f193d05f --- /dev/null +++ b/src/app/components/themes/material/material.ts @@ -0,0 +1,822 @@ +import accordion from './accordion'; +import autocomplete from './autocomplete'; +import avatar from './avatar'; +import badge from './badge'; +import blockui from './blockui'; +import breadcrumb from './breadcrumb'; +import button from './button'; +import datepicker from './datepicker'; +import card from './card'; +import carousel from './carousel'; +import cascadeselect from './cascadeselect'; +import checkbox from './checkbox'; +import chip from './chip'; +import colorpicker from './colorpicker'; +import confirmdialog from './confirmdialog'; +import confirmpopup from './confirmpopup'; +import contextmenu from './contextmenu'; +import dataview from './dataview'; +import datatable from './datatable'; +import dialog from './dialog'; +import divider from './divider'; +import dock from './dock'; +import drawer from './drawer'; +import editor from './editor'; +import fieldset from './fieldset'; +import fileupload from './fileupload'; +import floatlabel from './floatlabel'; +import galleria from './galleria'; +import iconfield from './iconfield'; +import image from './image'; +import inlinemessage from './inlinemessage'; +import inplace from './inplace'; +import inputchips from './inputchips'; +import inputgroup from './inputgroup'; +import inputnumber from './inputnumber'; +import inputtext from './inputtext'; +import knob from './knob'; +import listbox from './listbox'; +import megamenu from './megamenu'; +import menu from './menu'; +import menubar from './menubar'; +import message from './message'; +import metergroup from './metergroup'; +import multiselect from './multiselect'; +import orderlist from './orderlist'; +import organizationchart from './organizationchart'; +import overlaybadge from './overlaybadge'; +import popover from './popover'; +import paginator from './paginator'; +import password from './password'; +import panel from './panel'; +import panelmenu from './panelmenu'; +import picklist from './picklist'; +import progressbar from './progressbar'; +import progressspinner from './progressspinner'; +import radiobutton from './radiobutton'; +import rating from './rating'; +import scrollpanel from './scrollpanel'; +import select from './select'; +import selectbutton from './selectbutton'; +import skeleton from './skeleton'; +import slider from './slider'; +import speeddial from './speeddial'; +import splitter from './splitter'; +import splitbutton from './splitbutton'; +import stepper from './stepper'; +import steps from './steps'; +import tabmenu from './tabmenu'; +import tabs from './tabs'; +import tabview from './tabview'; +import textarea from './textarea'; +import tieredmenu from './tieredmenu'; +import tag from './tag'; +import terminal from './terminal'; +import timeline from './timeline'; +import togglebutton from './togglebutton'; +import toggleswitch from './toggleswitch'; +import tree from './tree'; +import treeselect from './treeselect'; +import treetable from './treetable'; +import toast from './toast'; +import toolbar from './toolbar'; +import virtualscroller from './virtualscroller'; +import tooltip from './tooltip'; +import ripple from './ripple'; +import iftalabel from './iftalabel'; + +export const Material = { + primitive: { + borderRadius: { + none: '0', + xs: '2px', + sm: '4px', + md: '6px', + lg: '8px', + xl: '12px', + }, + emerald: { + 50: '#ecfdf5', + 100: '#d1fae5', + 200: '#a7f3d0', + 300: '#6ee7b7', + 400: '#34d399', + 500: '#10b981', + 600: '#059669', + 700: '#047857', + 800: '#065f46', + 900: '#064e3b', + 950: '#022c22', + }, + green: { + 50: '#f0fdf4', + 100: '#dcfce7', + 200: '#bbf7d0', + 300: '#86efac', + 400: '#4ade80', + 500: '#22c55e', + 600: '#16a34a', + 700: '#15803d', + 800: '#166534', + 900: '#14532d', + 950: '#052e16', + }, + lime: { + 50: '#f7fee7', + 100: '#ecfccb', + 200: '#d9f99d', + 300: '#bef264', + 400: '#a3e635', + 500: '#84cc16', + 600: '#65a30d', + 700: '#4d7c0f', + 800: '#3f6212', + 900: '#365314', + 950: '#1a2e05', + }, + red: { + 50: '#fef2f2', + 100: '#fee2e2', + 200: '#fecaca', + 300: '#fca5a5', + 400: '#f87171', + 500: '#ef4444', + 600: '#dc2626', + 700: '#b91c1c', + 800: '#991b1b', + 900: '#7f1d1d', + 950: '#450a0a', + }, + orange: { + 50: '#fff7ed', + 100: '#ffedd5', + 200: '#fed7aa', + 300: '#fdba74', + 400: '#fb923c', + 500: '#f97316', + 600: '#ea580c', + 700: '#c2410c', + 800: '#9a3412', + 900: '#7c2d12', + 950: '#431407', + }, + amber: { + 50: '#fffbeb', + 100: '#fef3c7', + 200: '#fde68a', + 300: '#fcd34d', + 400: '#fbbf24', + 500: '#f59e0b', + 600: '#d97706', + 700: '#b45309', + 800: '#92400e', + 900: '#78350f', + 950: '#451a03', + }, + yellow: { + 50: '#fefce8', + 100: '#fef9c3', + 200: '#fef08a', + 300: '#fde047', + 400: '#facc15', + 500: '#eab308', + 600: '#ca8a04', + 700: '#a16207', + 800: '#854d0e', + 900: '#713f12', + 950: '#422006', + }, + teal: { + 50: '#f0fdfa', + 100: '#ccfbf1', + 200: '#99f6e4', + 300: '#5eead4', + 400: '#2dd4bf', + 500: '#14b8a6', + 600: '#0d9488', + 700: '#0f766e', + 800: '#115e59', + 900: '#134e4a', + 950: '#042f2e', + }, + cyan: { + 50: '#ecfeff', + 100: '#cffafe', + 200: '#a5f3fc', + 300: '#67e8f9', + 400: '#22d3ee', + 500: '#06b6d4', + 600: '#0891b2', + 700: '#0e7490', + 800: '#155e75', + 900: '#164e63', + 950: '#083344', + }, + sky: { + 50: '#f0f9ff', + 100: '#e0f2fe', + 200: '#bae6fd', + 300: '#7dd3fc', + 400: '#38bdf8', + 500: '#0ea5e9', + 600: '#0284c7', + 700: '#0369a1', + 800: '#075985', + 900: '#0c4a6e', + 950: '#082f49', + }, + blue: { + 50: '#eff6ff', + 100: '#dbeafe', + 200: '#bfdbfe', + 300: '#93c5fd', + 400: '#60a5fa', + 500: '#3b82f6', + 600: '#2563eb', + 700: '#1d4ed8', + 800: '#1e40af', + 900: '#1e3a8a', + 950: '#172554', + }, + indigo: { + 50: '#eef2ff', + 100: '#e0e7ff', + 200: '#c7d2fe', + 300: '#a5b4fc', + 400: '#818cf8', + 500: '#6366f1', + 600: '#4f46e5', + 700: '#4338ca', + 800: '#3730a3', + 900: '#312e81', + 950: '#1e1b4b', + }, + violet: { + 50: '#f5f3ff', + 100: '#ede9fe', + 200: '#ddd6fe', + 300: '#c4b5fd', + 400: '#a78bfa', + 500: '#8b5cf6', + 600: '#7c3aed', + 700: '#6d28d9', + 800: '#5b21b6', + 900: '#4c1d95', + 950: '#2e1065', + }, + purple: { + 50: '#faf5ff', + 100: '#f3e8ff', + 200: '#e9d5ff', + 300: '#d8b4fe', + 400: '#c084fc', + 500: '#a855f7', + 600: '#9333ea', + 700: '#7e22ce', + 800: '#6b21a8', + 900: '#581c87', + 950: '#3b0764', + }, + fuchsia: { + 50: '#fdf4ff', + 100: '#fae8ff', + 200: '#f5d0fe', + 300: '#f0abfc', + 400: '#e879f9', + 500: '#d946ef', + 600: '#c026d3', + 700: '#a21caf', + 800: '#86198f', + 900: '#701a75', + 950: '#4a044e', + }, + pink: { + 50: '#fdf2f8', + 100: '#fce7f3', + 200: '#fbcfe8', + 300: '#f9a8d4', + 400: '#f472b6', + 500: '#ec4899', + 600: '#db2777', + 700: '#be185d', + 800: '#9d174d', + 900: '#831843', + 950: '#500724', + }, + rose: { + 50: '#fff1f2', + 100: '#ffe4e6', + 200: '#fecdd3', + 300: '#fda4af', + 400: '#fb7185', + 500: '#f43f5e', + 600: '#e11d48', + 700: '#be123c', + 800: '#9f1239', + 900: '#881337', + 950: '#4c0519', + }, + slate: { + 50: '#f8fafc', + 100: '#f1f5f9', + 200: '#e2e8f0', + 300: '#cbd5e1', + 400: '#94a3b8', + 500: '#64748b', + 600: '#475569', + 700: '#334155', + 800: '#1e293b', + 900: '#0f172a', + 950: '#020617', + }, + gray: { + 50: '#f9fafb', + 100: '#f3f4f6', + 200: '#e5e7eb', + 300: '#d1d5db', + 400: '#9ca3af', + 500: '#6b7280', + 600: '#4b5563', + 700: '#374151', + 800: '#1f2937', + 900: '#111827', + 950: '#030712', + }, + zinc: { + 50: '#fafafa', + 100: '#f4f4f5', + 200: '#e4e4e7', + 300: '#d4d4d8', + 400: '#a1a1aa', + 500: '#71717a', + 600: '#52525b', + 700: '#3f3f46', + 800: '#27272a', + 900: '#18181b', + 950: '#09090b', + }, + neutral: { + 50: '#fafafa', + 100: '#f5f5f5', + 200: '#e5e5e5', + 300: '#d4d4d4', + 400: '#a3a3a3', + 500: '#737373', + 600: '#525252', + 700: '#404040', + 800: '#262626', + 900: '#171717', + 950: '#0a0a0a', + }, + stone: { + 50: '#fafaf9', + 100: '#f5f5f4', + 200: '#e7e5e4', + 300: '#d6d3d1', + 400: '#a8a29e', + 500: '#78716c', + 600: '#57534e', + 700: '#44403c', + 800: '#292524', + 900: '#1c1917', + 950: '#0c0a09', + }, + }, + semantic: { + transitionDuration: '0s', + focusRing: { + width: '2px', + style: 'solid', + color: '{primary.color}', + offset: '2px', + shadow: 'none', + }, + disabledOpacity: '0.6', + iconSize: '1rem', + anchorGutter: '0', + primary: { + 50: '{emerald.50}', + 100: '{emerald.100}', + 200: '{emerald.200}', + 300: '{emerald.300}', + 400: '{emerald.400}', + 500: '{emerald.500}', + 600: '{emerald.600}', + 700: '{emerald.700}', + 800: '{emerald.800}', + 900: '{emerald.900}', + 950: '{emerald.950}', + }, + formField: { + paddingX: '0.75rem', + paddingY: '0.5rem', + borderRadius: '{border.radius.xs}', + focusRing: { + width: '2px', + style: 'solid', + color: '{primary.color}', + offset: '-1px', + shadow: 'none', + }, + transitionDuration: '{transition.duration}', + }, + list: { + padding: '0.125rem 0', + gap: '0', + header: { + padding: '0.5rem 0.75rem 0.375rem 0.75rem', + }, + option: { + padding: '0.5rem 0.75rem', + borderRadius: '0', + }, + optionGroup: { + padding: '0.5rem 0.75rem', + fontWeight: '700', + }, + }, + content: { + borderRadius: '{border.radius.xs}', + }, + mask: { + transitionDuration: '0.15s', + }, + navigation: { + list: { + padding: '0.125rem 0', + gap: '0', + }, + item: { + padding: '0.5rem 0.75rem', + borderRadius: '0', + gap: '0.5rem', + }, + submenuLabel: { + padding: '0.5rem 0.75rem', + fontWeight: '700', + }, + submenuIcon: { + size: '0.875rem', + }, + }, + overlay: { + select: { + borderRadius: '{border.radius.xs}', + shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)', + }, + popover: { + borderRadius: '{border.radius.xs}', + padding: '0.75rem', + shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)', + }, + modal: { + borderRadius: '{border.radius.xs}', + padding: '1.25rem', + shadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)', + }, + navigation: { + shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)', + }, + }, + colorScheme: { + light: { + surface: { + 0: '#ffffff', + 50: '{slate.50}', + 100: '{slate.100}', + 200: '{slate.200}', + 300: '{slate.300}', + 400: '{slate.400}', + 500: '{slate.500}', + 600: '{slate.600}', + 700: '{slate.700}', + 800: '{slate.800}', + 900: '{slate.900}', + 950: '{slate.950}', + }, + primary: { + color: '{primary.600}', + contrastColor: '#ffffff', + hoverColor: '{primary.700}', + activeColor: '{primary.800}', + }, + highlight: { + background: '{primary.600}', + focusBackground: '{primary.700}', + color: '#ffffff', + focusColor: '#ffffff', + }, + mask: { + background: 'rgba(0,0,0,0.4)', + color: '{surface.200}', + }, + formField: { + background: '{surface.0}', + disabledBackground: '{surface.300}', + filledBackground: '{surface.100}', + filledFocusBackground: '{surface.100}', + borderColor: '{surface.500}', + hoverBorderColor: '{surface.500}', + focusBorderColor: '{surface.500}', + invalidBorderColor: '{red.500}', + color: '{surface.900}', + disabledColor: '{surface.600}', + placeholderColor: '{surface.600}', + floatLabelColor: '{surface.600}', + floatLabelFocusColor: '{primary.color}', + floatLabelActiveColor: '{surface.600}', + floatLabelInvalidColor: '{red.500}', + iconColor: '{surface.900}', + shadow: 'none', + }, + text: { + color: '{surface.900}', + hoverColor: '{surface.950}', + mutedColor: '{surface.600}', + hoverMutedColor: '{surface.700}', + }, + content: { + background: '{surface.0}', + hoverBackground: '{surface.200}', + borderColor: '{surface.400}', + color: '{text.color}', + hoverColor: '{text.hover.color}', + }, + overlay: { + select: { + background: '{surface.0}', + borderColor: 'transparent', + color: '{text.color}', + }, + popover: { + background: '{surface.0}', + borderColor: 'transparent', + color: '{text.color}', + }, + modal: { + background: '{surface.0}', + borderColor: 'transparent', + color: '{text.color}', + }, + }, + list: { + option: { + focusBackground: '{surface.200}', + selectedBackground: '{highlight.background}', + selectedFocusBackground: '{highlight.focus.background}', + color: '{text.color}', + focusColor: '{text.hover.color}', + selectedColor: '{highlight.color}', + selectedFocusColor: '{highlight.focus.color}', + icon: { + color: '{text.muted.color}', + focusColor: '{text.hover.muted.color}', + }, + }, + optionGroup: { + background: 'transparent', + color: '{text.color}', + }, + }, + navigation: { + item: { + focusBackground: '{primary.color}', + activeBackground: '{surface.200}', + color: '{text.color}', + focusColor: '{primary.contrast.color}', + activeColor: '{text.hover.color}', + icon: { + color: '{text.muted.color}', + focusColor: '{primary.contrast.color}', + activeColor: '{text.hover.muted.color}', + }, + }, + submenuLabel: { + background: 'transparent', + color: '{text.color}', + }, + submenuIcon: { + color: '{text.muted.color}', + focusColor: '{primary.contrast.color}', + activeColor: '{text.hover.muted.color}', + }, + }, + }, + dark: { + surface: { + 0: '#ffffff', + 50: '{zinc.50}', + 100: '{zinc.100}', + 200: '{zinc.200}', + 300: '{zinc.300}', + 400: '{zinc.400}', + 500: '{zinc.500}', + 600: '{zinc.600}', + 700: '{zinc.700}', + 800: '{zinc.800}', + 900: '{zinc.900}', + 950: '{zinc.950}', + }, + primary: { + color: '{primary.500}', + contrastColor: '{surface.950}', + hoverColor: '{primary.400}', + activeColor: '{primary.300}', + }, + highlight: { + background: '{primary.500}', + focusBackground: '{primary.400}', + color: '{surface.950}', + focusColor: '{surface.950}', + }, + mask: { + background: 'rgba(0,0,0,0.6)', + color: '{surface.200}', + }, + formField: { + background: '{surface.950}', + disabledBackground: '{surface.700}', + filledBackground: '{surface.800}', + filledFocusBackground: '{surface.800}', + borderColor: '{surface.500}', + hoverBorderColor: '{surface.500}', + focusBorderColor: '{surface.500}', + invalidBorderColor: '{red.400}', + color: '{surface.0}', + disabledColor: '{surface.400}', + placeholderColor: '{surface.400}', + floatLabelColor: '{surface.400}', + floatLabelFocusColor: '{primary.color}', + floatLabelActiveColor: '{surface.400}', + floatLabelInvalidColor: '{red.400}', + iconColor: '{surface.0}', + shadow: 'none', + }, + text: { + color: '{surface.0}', + hoverColor: '{surface.0}', + mutedColor: '{surface.400}', + hoverMutedColor: '{surface.300}', + }, + content: { + background: '{surface.900}', + hoverBackground: '{surface.700}', + borderColor: '{surface.500}', + color: '{text.color}', + hoverColor: '{text.hover.color}', + }, + overlay: { + select: { + background: '{surface.900}', + borderColor: '{surface.700}', + color: '{text.color}', + }, + popover: { + background: '{surface.900}', + borderColor: '{surface.700}', + color: '{text.color}', + }, + modal: { + background: '{surface.900}', + borderColor: '{surface.700}', + color: '{text.color}', + }, + }, + list: { + option: { + focusBackground: '{surface.700}', + selectedBackground: '{highlight.background}', + selectedFocusBackground: '{highlight.focus.background}', + color: '{text.color}', + focusColor: '{text.hover.color}', + selectedColor: '{highlight.color}', + selectedFocusColor: '{highlight.focus.color}', + icon: { + color: '{text.muted.color}', + focusColor: '{text.hover.muted.color}', + }, + }, + optionGroup: { + background: 'transparent', + color: '{text.color}', + }, + }, + navigation: { + item: { + focusBackground: '{primary.color}', + activeBackground: '{surface.700}', + color: '{text.color}', + focusColor: '{primary.contrast.color}', + activeColor: '{text.color}', + icon: { + color: '{text.muted.color}', + focusColor: '{primary.contrast.color}', + activeColor: '{text.hover.muted.color}', + }, + }, + submenuLabel: { + background: 'transparent', + color: '{text.color}', + }, + submenuIcon: { + color: '{text.muted.color}', + focusColor: '{primary.contrast.color}', + activeColor: '{text.hover.muted.color}', + }, + }, + }, + }, + }, + components: { + accordion, + autocomplete, + avatar, + badge, + blockui, + breadcrumb, + button, + datepicker, + card, + carousel, + cascadeselect, + checkbox, + chip, + colorpicker, + confirmdialog, + confirmpopup, + contextmenu, + dataview, + datatable, + dialog, + divider, + dock, + drawer, + editor, + fieldset, + fileupload, + floatlabel, + galleria, + iconfield, + image, + inlinemessage, + inplace, + inputchips, + inputgroup, + inputnumber, + inputtext, + iftalabel, + knob, + listbox, + megamenu, + menu, + menubar, + message, + metergroup, + multiselect, + orderlist, + organizationchart, + overlaybadge, + popover, + paginator, + password, + panel, + panelmenu, + picklist, + progressbar, + progressspinner, + radiobutton, + rating, + scrollpanel, + select, + selectbutton, + skeleton, + slider, + speeddial, + splitter, + splitbutton, + stepper, + steps, + tabmenu, + tabs, + tabview, + textarea, + tieredmenu, + tag, + terminal, + timeline, + togglebutton, + toggleswitch, + tree, + treeselect, + treetable, + toast, + toolbar, + virtualscroller, + tooltip, + ripple, + }, + // directives: { + // // ripple, + // // tooltip + // }, +}; diff --git a/src/app/components/themes/material/public_api.ts b/src/app/components/themes/material/public_api.ts new file mode 100644 index 00000000000..f6b2aba08f2 --- /dev/null +++ b/src/app/components/themes/material/public_api.ts @@ -0,0 +1 @@ +export * from './material'; diff --git a/src/app/showcase/layout/configurator/app.configurator.component.ts b/src/app/showcase/layout/configurator/app.configurator.component.ts index fee34f274ce..98e4c86a479 100644 --- a/src/app/showcase/layout/configurator/app.configurator.component.ts +++ b/src/app/showcase/layout/configurator/app.configurator.component.ts @@ -12,10 +12,12 @@ import { $t, updatePreset, updateSurfacePalette } from 'primeng/themes'; import { Aura } from 'primeng/themes/aura'; import { Lara } from 'primeng/themes/lara'; import { Nora } from 'primeng/themes/nora'; +import { Material } from 'primeng/themes/material'; import { ToggleSwitchModule } from 'primeng/toggleswitch'; const presets = { Aura, + Material, Lara, Nora, }; @@ -66,6 +68,7 @@ const presets = { [(ngModel)]="selectedPreset" (ngModelChange)="onPresetChange($event)" [allowEmpty]="false" + styleClass="inline-flex" />
    diff --git a/src/assets/showcase/styles/layout/_topbar.scss b/src/assets/showcase/styles/layout/_topbar.scss index b1c44f0672b..aeaf67256a9 100644 --- a/src/assets/showcase/styles/layout/_topbar.scss +++ b/src/assets/showcase/styles/layout/_topbar.scss @@ -52,7 +52,7 @@ width: 25px; } } - + .menu-button { display: none; } @@ -84,13 +84,13 @@ outline-color: transparent; background-color: var(--card-background); cursor: pointer; - + @include focus-visible(); - + &:hover { border-color: var(--primary-color); } - + i, span { color: var(--text-color); } @@ -98,7 +98,7 @@ .config-item { background-color: var(--primary-color); - + i { color: var(--primary-contrast-color); } @@ -108,14 +108,14 @@ position: absolute; top: calc(100% + 2px); right: 0; - width: 16rem; + width: 21rem; padding: .75rem; background-color: var(--overlay-background); border-radius: 6px; border: 1px solid var(--border-color); transform-origin: top; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - + .config-panel-content { display: flex; flex-direction: column; @@ -131,12 +131,12 @@ .config-panel-colors { > div { + justify-content: flex-start; padding-top: .5rem; display: flex; gap: .5rem; flex-wrap: wrap; - justify-content: space-between; - + button { border: none; width: 1.25rem; @@ -148,7 +148,7 @@ outline-width: 2px; outline-style: solid; outline-offset: 1px; - + &.active-color { outline-color: var(--primary-color); } @@ -219,4 +219,4 @@ } } } -} \ No newline at end of file +} From bc0f0a8988cadc2dcdfe38dcae24d65f0c82df5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Sat, 19 Oct 2024 20:37:20 +0300 Subject: [PATCH 44/49] Refactor imports & add missing styles for baseicon --- src/app/components/base/style/basestyle.ts | 38 ++++++++++++- src/app/components/baseicon/baseicon.ts | 15 ++--- src/app/components/baseicon/public_api.ts | 1 + .../baseicon/style/baseiconstyle.ts | 56 +++++++++++++++++++ .../icons/angledoubledown/angledoubledown.ts | 1 - .../icons/angledoubleleft/angledoubleleft.ts | 1 - .../angledoubleright/angledoubleright.ts | 1 - .../icons/angledoubleup/angledoubleup.ts | 1 - .../components/icons/angledown/angledown.ts | 1 - .../components/icons/angleleft/angleleft.ts | 1 - .../components/icons/angleright/angleright.ts | 1 - src/app/components/icons/angleup/angleup.ts | 1 - .../components/icons/arrowdown/arrowdown.ts | 1 - .../icons/arrowdownleft/arrowdownleft.ts | 1 - .../icons/arrowdownright/arrowdownright.ts | 1 - .../components/icons/arrowleft/arrowleft.ts | 1 - .../components/icons/arrowright/arrowright.ts | 1 - src/app/components/icons/arrowup/arrowup.ts | 1 - src/app/components/icons/ban/ban.ts | 1 - src/app/components/icons/bars/bars.ts | 1 - src/app/components/icons/blank/blank.ts | 3 +- src/app/components/icons/calendar/calendar.ts | 1 - .../components/icons/caretleft/caretleft.ts | 1 - .../components/icons/caretright/caretright.ts | 1 - src/app/components/icons/check/check.ts | 1 - .../icons/chevrondown/chevrondown.ts | 1 - .../icons/chevronleft/chevronleft.ts | 1 - .../icons/chevronright/chevronright.ts | 1 - .../components/icons/chevronup/chevronup.ts | 1 - .../exclamationtriangle.ts | 1 - src/app/components/icons/eye/eye.ts | 1 - src/app/components/icons/eyeslash/eyeslash.ts | 1 - src/app/components/icons/filter/filter.ts | 1 - .../icons/filterslash/filterslash.ts | 1 - src/app/components/icons/home/home.ts | 1 - .../components/icons/infocircle/infocircle.ts | 1 - src/app/components/icons/minus/minus.ts | 2 - src/app/components/icons/pencil/pencil.ts | 1 - src/app/components/icons/plus/plus.ts | 2 +- src/app/components/icons/refresh/refresh.ts | 1 - src/app/components/icons/search/search.ts | 1 - .../icons/searchminus/searchminus.ts | 1 - .../components/icons/searchplus/searchplus.ts | 1 - src/app/components/icons/sortalt/sortalt.ts | 1 - .../icons/sortamountdown/sortamountdown.ts | 1 - .../icons/sortamountupalt/sortamountupalt.ts | 1 - src/app/components/icons/spinner/spinner.ts | 1 - src/app/components/icons/star/star.ts | 1 - src/app/components/icons/starfill/starfill.ts | 1 - src/app/components/icons/thlarge/thlarge.ts | 1 - src/app/components/icons/times/times.ts | 1 - .../icons/timescircle/timescircle.ts | 1 - src/app/components/icons/trash/trash.ts | 1 - src/app/components/icons/undo/undo.ts | 1 - src/app/components/icons/upload/upload.ts | 1 - .../icons/windowmaximize/windowmaximize.ts | 1 - .../icons/windowminimize/windowminimize.ts | 1 - 57 files changed, 99 insertions(+), 68 deletions(-) create mode 100644 src/app/components/baseicon/style/baseiconstyle.ts diff --git a/src/app/components/base/style/basestyle.ts b/src/app/components/base/style/basestyle.ts index 158529a4698..42cb15d2506 100644 --- a/src/app/components/base/style/basestyle.ts +++ b/src/app/components/base/style/basestyle.ts @@ -1,5 +1,5 @@ -import { Injectable, inject } from '@angular/core'; -import { Theme, dt } from 'primeng/themes'; +import { inject, Injectable } from '@angular/core'; +import { dt, Theme } from 'primeng/themes'; import { UseStyle } from 'primeng/usestyle'; import { ObjectUtils } from 'primeng/utils'; @@ -151,6 +151,40 @@ const css = ({ dt }) => ` overflow: hidden; padding-right: ${dt('scrollbar.width')}; } + +/* @todo move to baseiconstyle.ts */ + +.p-icon { + display: inline-block; + vertical-align: baseline; +} + +.p-icon-spin { + -webkit-animation: p-icon-spin 2s infinite linear; + animation: p-icon-spin 2s infinite linear; +} + +@-webkit-keyframes p-icon-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes p-icon-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} `; @Injectable({ providedIn: 'root' }) diff --git a/src/app/components/baseicon/baseicon.ts b/src/app/components/baseicon/baseicon.ts index eb2a1f63d2d..244f2fd6cd9 100644 --- a/src/app/components/baseicon/baseicon.ts +++ b/src/app/components/baseicon/baseicon.ts @@ -1,26 +1,19 @@ -import { - Component, - Input, - ChangeDetectionStrategy, - ViewEncapsulation, - ElementRef, - HostBinding, - booleanAttribute, - inject, -} from '@angular/core'; +import { booleanAttribute, ChangeDetectionStrategy, Component, Input, OnInit, ViewEncapsulation } from '@angular/core'; import { ObjectUtils } from 'primeng/utils'; import { BaseComponent } from 'primeng/basecomponent'; +import { BaseIconStyle } from './style/baseiconstyle'; @Component({ template: ` `, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, + providers: [BaseIconStyle], host: { class: 'p-component p-iconwrapper', }, }) -export class BaseIcon extends BaseComponent { +export class BaseIcon extends BaseComponent implements OnInit { @Input() label: string; @Input({ transform: booleanAttribute }) spin: boolean = false; diff --git a/src/app/components/baseicon/public_api.ts b/src/app/components/baseicon/public_api.ts index 22afa3c7c32..086f1f9e63f 100644 --- a/src/app/components/baseicon/public_api.ts +++ b/src/app/components/baseicon/public_api.ts @@ -1 +1,2 @@ export * from './baseicon'; +export * from './style/baseiconstyle'; diff --git a/src/app/components/baseicon/style/baseiconstyle.ts b/src/app/components/baseicon/style/baseiconstyle.ts new file mode 100644 index 00000000000..40e6a5e4a87 --- /dev/null +++ b/src/app/components/baseicon/style/baseiconstyle.ts @@ -0,0 +1,56 @@ +import { Injectable } from '@angular/core'; +import { BaseStyle } from 'primeng/base'; + +const css = ` +.p-icon { + display: inline-block; + vertical-align: baseline; +} + +.p-icon-spin { + -webkit-animation: p-icon-spin 2s infinite linear; + animation: p-icon-spin 2s infinite linear; +} + +@-webkit-keyframes p-icon-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes p-icon-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +`; + +@Injectable() +export class BaseIconStyle extends BaseStyle { + name = 'baseicon'; + + inlineStyles = css; +} +/** + * + * [Live Demo](https://www.primeng.org/) + * + * @module baseiconstyle + * + */ + +export enum BaseIconClasses { + root = 'p-icon', +} + +export interface BaseIconStyle extends BaseStyle {} diff --git a/src/app/components/icons/angledoubledown/angledoubledown.ts b/src/app/components/icons/angledoubledown/angledoubledown.ts index d41cec33628..68fd333e717 100644 --- a/src/app/components/icons/angledoubledown/angledoubledown.ts +++ b/src/app/components/icons/angledoubledown/angledoubledown.ts @@ -4,7 +4,6 @@ import { BaseIcon } from 'primeng/baseicon'; @Component({ selector: 'AngleDoubleDownIcon', standalone: true, - imports: [BaseIcon], template: ` + `, diff --git a/src/app/components/icons/calendar/calendar.ts b/src/app/components/icons/calendar/calendar.ts index 3f4aeafe7be..eb6e0af9765 100644 --- a/src/app/components/icons/calendar/calendar.ts +++ b/src/app/components/icons/calendar/calendar.ts @@ -4,7 +4,6 @@ import { BaseIcon } from 'primeng/baseicon'; @Component({ selector: 'CalendarIcon', standalone: true, - imports: [BaseIcon], template: ` Date: Sat, 19 Oct 2024 20:38:26 +0300 Subject: [PATCH 45/49] Add pButtonLabel & pButtonIcon directives, fixes #16589 --- src/app/components/button/button.ts | 104 ++++++++++++------ .../showcase/doc/button/buttondoc.module.ts | 3 +- src/app/showcase/doc/button/directivedoc.ts | 22 +++- 3 files changed, 88 insertions(+), 41 deletions(-) diff --git a/src/app/components/button/button.ts b/src/app/components/button/button.ts index fb6ba3f6a2c..278d36b3d5e 100755 --- a/src/app/components/button/button.ts +++ b/src/app/components/button/button.ts @@ -1,33 +1,32 @@ -import { CommonModule, DOCUMENT } from '@angular/common'; +import { CommonModule } from '@angular/common'; import { AfterContentInit, AfterViewInit, + booleanAttribute, ChangeDetectionStrategy, Component, + computed, + contentChild, ContentChildren, Directive, - ElementRef, EventEmitter, - HostBinding, - Inject, + inject, Input, NgModule, + numberAttribute, OnDestroy, Output, QueryList, SimpleChanges, TemplateRef, ViewEncapsulation, - booleanAttribute, - inject, - numberAttribute, } from '@angular/core'; import { PrimeTemplate, SharedModule } from 'primeng/api'; import { DomHandler } from 'primeng/dom'; import { SpinnerIcon } from 'primeng/icons/spinner'; -import { Ripple, RippleModule } from 'primeng/ripple'; +import { RippleModule } from 'primeng/ripple'; import { ObjectUtils } from 'primeng/utils'; -import { AutoFocus, AutoFocusModule } from 'primeng/autofocus'; +import { AutoFocusModule } from 'primeng/autofocus'; import { BaseComponent } from 'primeng/basecomponent'; import { ButtonStyle } from './style/buttonstyle'; import { BadgeModule } from 'primeng/badge'; @@ -43,33 +42,54 @@ const INTERNAL_BUTTON_CLASSES = { loading: 'p-button-loading', labelOnly: 'p-button-loading-label-only', } as const; + +@Directive({ + selector: '[pButtonLabel]', + providers: [ButtonStyle], + host: { + '[class.p-button-label]': 'true', + }, +}) +export class ButtonLabel extends BaseComponent { + _componentStyle = inject(ButtonStyle); +} + +@Directive({ + selector: '[pButtonIcon]', + providers: [ButtonStyle], + host: { + '[class.p-button-icon]': 'true', + }, +}) +export class ButtonIcon extends BaseComponent { + _componentStyle = inject(ButtonStyle); +} /** * Button directive is an extension to button component. * @group Components */ @Directive({ selector: '[pButton]', - providers: [ButtonStyle], + host: { + '[class.p-button-icon-only]': 'isIconOnly()', + '[class.p-button-text]': 'isTextButton()', + }, }) export class ButtonDirective extends BaseComponent implements AfterViewInit, OnDestroy { /** * Position of the icon. + * @deprecated utilize pButtonIcon and pButtonLabel directives. * @group Props */ @Input() iconPos: ButtonIconPosition = 'left'; /** * Uses to pass attributes to the loading icon's DOM element. + * @deprecated * @group Props */ @Input() loadingIcon: string | undefined; - /** - * Text of the button. - * @group Props - */ - @Input() get label(): string | undefined { - return this._label as string; - } + private labelSignal = contentChild(ButtonLabel); set label(val: string) { this._label = val; @@ -79,13 +99,7 @@ export class ButtonDirective extends BaseComponent implements AfterViewInit, OnD this.setStyleClass(); } } - /** - * Name of the icon. - * @group Props - */ - @Input() get icon(): string { - return this._icon as string; - } + private iconSignal = contentChild(ButtonIcon); set icon(val: string) { this._icon = val; @@ -110,13 +124,7 @@ export class ButtonDirective extends BaseComponent implements AfterViewInit, OnD } } _buttonProps!: ButtonProps; - /** - * Used to pass all properties of the ButtonProps to the Button component. - * @group Props - */ - @Input() get buttonProps(): ButtonProps { - return this._buttonProps; - } + isIconOnly = computed(() => !!(!this.labelSignal() && this.iconSignal())); set buttonProps(val: ButtonProps) { this._buttonProps = val; @@ -174,6 +182,34 @@ export class ButtonDirective extends BaseComponent implements AfterViewInit, OnD } private _internalClasses: string[] = Object.values(INTERNAL_BUTTON_CLASSES); + isTextButton = computed(() => !!(!this.iconSignal() && this.labelSignal() && this.text)); + + /** + * Text of the button. + * @deprecated use pButtonLabel directive instead. + * @group Props + */ + @Input() get label(): string | undefined { + return this._label as string; + } + + /** + * Name of the icon. + * @deprecated use pButtonIcon directive instead + * @group Props + */ + @Input() get icon(): string { + return this._icon as string; + } + + /** + * Used to pass all properties of the ButtonProps to the Button component. + * @deprecated assign props directly to the button element. + * @group Props + */ + @Input() get buttonProps(): ButtonProps { + return this._buttonProps; + } spinnerIcon = ` @@ -532,7 +568,7 @@ export class Button extends BaseComponent implements AfterContentInit { * @group Props * @defaultValue secondary */ - @Input() badgeSeverity: 'success' | 'info' | 'warning' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined = + @Input() badgeSeverity: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined = 'secondary'; /** * Used to define a string that autocomplete attribute the current element. @@ -668,7 +704,7 @@ export class Button extends BaseComponent implements AfterContentInit { @NgModule({ imports: [CommonModule, RippleModule, SharedModule, AutoFocusModule, SpinnerIcon, BadgeModule], - exports: [ButtonDirective, Button, SharedModule], - declarations: [ButtonDirective, Button], + exports: [ButtonDirective, Button, ButtonLabel, ButtonIcon, SharedModule], + declarations: [ButtonDirective, Button, ButtonLabel, ButtonIcon], }) export class ButtonModule {} diff --git a/src/app/showcase/doc/button/buttondoc.module.ts b/src/app/showcase/doc/button/buttondoc.module.ts index 8329520fa46..0ed1500fcac 100644 --- a/src/app/showcase/doc/button/buttondoc.module.ts +++ b/src/app/showcase/doc/button/buttondoc.module.ts @@ -27,9 +27,10 @@ import { StyleDoc } from './styledoc'; import { TemplateDoc } from './templatedoc'; import { TextDoc } from './textdoc'; import { ButtonGroupDoc } from './buttongroupdoc'; +import { WindowMaximizeIcon } from '../../../components/icons/windowmaximize/windowmaximize'; @NgModule({ - imports: [CommonModule, AppCodeModule, AppDocModule, ButtonModule, ButtonGroupModule, RippleModule, RouterModule], + imports: [CommonModule, AppCodeModule, AppDocModule, ButtonModule, ButtonGroupModule, RippleModule, RouterModule, WindowMaximizeIcon], exports: [AppDocModule], declarations: [ ImportDoc, diff --git a/src/app/showcase/doc/button/directivedoc.ts b/src/app/showcase/doc/button/directivedoc.ts index d05d6b7dec2..a15bb15f22b 100644 --- a/src/app/showcase/doc/button/directivedoc.ts +++ b/src/app/showcase/doc/button/directivedoc.ts @@ -6,28 +6,38 @@ import { Code } from '@domain/code'; template: `

    - Button can also be used as directive using pButton. In contrary of p-button component, pButton directive does not - utilize ripple effect, use pRipple directive to enable ripple. + Button can also be used as directive using pButton along with pButtonLabel and pButtonIcon helper + directives. In contrary of p-button component, pButton directive does not utilize ripple effect, use + pRipple directive to enable ripple.

    - +
    `, }) export class DirectiveDoc { code: Code = { - basic: ``, + basic: ``, html: `
    - +
    `, typescript: `import { Component } from '@angular/core'; import { ButtonModule } from 'primeng/button'; import { RippleModule } from 'primeng/ripple'; - + @Component({ selector: 'button-directive-demo', templateUrl: './button-directive-demo.html', From 276cd3f1aab176624346539979bd74efdc3840d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Sat, 19 Oct 2024 20:40:40 +0300 Subject: [PATCH 46/49] Add material theme --- .../themes/material/accordion/index.ts | 77 +++ .../themes/material/autocomplete/index.ts | 164 +++++ .../themes/material/avatar/index.ts | 23 + .../components/themes/material/badge/index.ts | 90 +++ .../components/themes/material/base/index.ts | 386 +++++++++++ .../themes/material/blockui/index.ts | 5 + .../themes/material/breadcrumb/index.ts | 28 + .../themes/material/button/index.ts | 615 ++++++++++++++++++ .../components/themes/material/card/index.ts | 22 + .../themes/material/carousel/index.ts | 57 ++ .../themes/material/cascadeselect/index.ts | 112 ++++ .../themes/material/checkbox/index.ts | 98 +++ .../components/themes/material/chip/index.ts | 57 ++ .../themes/material/colorpicker/index.ts | 41 ++ .../themes/material/confirmdialog/index.ts | 9 + .../themes/material/confirmpopup/index.ts | 23 + .../themes/material/contextmenu/index.ts | 41 ++ .../themes/material/datatable/index.ts | 178 +++++ .../themes/material/dataview/index.ts | 40 ++ .../themes/material/datepicker/index.ts | 180 +++++ .../themes/material/dialog/index.ts | 24 + .../themes/material/divider/index.ts | 23 + .../components/themes/material/dock/index.ts | 20 + .../themes/material/drawer/index.ts | 19 + .../themes/material/editor/index.ts | 38 ++ .../themes/material/fieldset/index.ts | 42 ++ .../themes/material/fileupload/index.ts | 35 + .../themes/material/floatlabel/index.ts | 37 ++ .../themes/material/galleria/index.ts | 128 ++++ .../themes/material/iconfield/index.ts | 5 + .../themes/material/iftalabel/index.ts | 16 + .../components/themes/material/image/index.ts | 44 ++ .../themes/material/imagecompare/index.ts | 20 + .../themes/material/inlinemessage/index.ts | 91 +++ .../themes/material/inplace/index.ts | 18 + .../themes/material/inputchips/index.ts | 44 ++ .../themes/material/inputgroup/index.ts | 10 + .../themes/material/inputnumber/index.ts | 45 ++ .../themes/material/inputtext/index.ts | 82 +++ .../components/themes/material/knob/index.ts | 21 + .../themes/material/listbox/index.ts | 71 ++ .../themes/material/megamenu/index.ts | 84 +++ .../components/themes/material/menu/index.ts | 40 ++ .../themes/material/menubar/index.ts | 67 ++ .../themes/material/message/index.ts | 193 ++++++ .../themes/material/metergroup/index.ts | 23 + .../themes/material/multiselect/index.ts | 118 ++++ .../themes/material/orderlist/index.ts | 8 + .../material/organizationchart/index.ts | 39 ++ .../themes/material/overlaybadge/index.ts | 8 + .../themes/material/paginator/index.ts | 34 + .../components/themes/material/panel/index.ts | 28 + .../themes/material/panelmenu/index.ts | 67 ++ .../themes/material/password/index.ts | 37 ++ .../themes/material/picklist/index.ts | 8 + .../themes/material/popover/index.ts | 14 + .../themes/material/progressbar/index.ts | 15 + .../themes/material/progressspinner/index.ts | 20 + .../themes/material/radiobutton/index.ts | 60 ++ .../themes/material/rating/index.ts | 35 + .../themes/material/ripple/index.ts | 14 + .../themes/material/scrollpanel/index.ts | 28 + .../themes/material/select/index.ts | 122 ++++ .../themes/material/selectbutton/index.ts | 17 + .../themes/material/skeleton/index.ts | 19 + .../themes/material/slider/index.ts | 49 ++ .../themes/material/speeddial/index.ts | 6 + .../themes/material/splitbutton/index.ts | 7 + .../themes/material/splitter/index.ts | 23 + .../themes/material/stepper/index.ts | 71 ++ .../components/themes/material/steps/index.ts | 37 ++ .../themes/material/tabmenu/index.ts | 43 ++ .../components/themes/material/tabs/index.ts | 83 +++ .../themes/material/tabview/index.ts | 37 ++ .../components/themes/material/tag/index.ts | 75 +++ .../themes/material/terminal/index.ts | 16 + .../themes/material/textarea/index.ts | 27 + .../themes/material/tieredmenu/index.ts | 52 ++ .../themes/material/timeline/index.ts | 43 ++ .../components/themes/material/toast/index.ts | 215 ++++++ .../themes/material/togglebutton/index.ts | 57 ++ .../themes/material/toggleswitch/index.ts | 91 +++ .../themes/material/toolbar/index.ts | 24 + .../themes/material/tooltip/index.ts | 11 + .../components/themes/material/tree/index.ts | 59 ++ .../themes/material/treeselect/index.ts | 92 +++ .../themes/material/treetable/index.ts | 130 ++++ .../themes/material/virtualscroller/index.ts | 11 + 88 files changed, 5436 insertions(+) create mode 100644 src/app/components/themes/material/accordion/index.ts create mode 100644 src/app/components/themes/material/autocomplete/index.ts create mode 100644 src/app/components/themes/material/avatar/index.ts create mode 100644 src/app/components/themes/material/badge/index.ts create mode 100644 src/app/components/themes/material/base/index.ts create mode 100644 src/app/components/themes/material/blockui/index.ts create mode 100644 src/app/components/themes/material/breadcrumb/index.ts create mode 100644 src/app/components/themes/material/button/index.ts create mode 100644 src/app/components/themes/material/card/index.ts create mode 100644 src/app/components/themes/material/carousel/index.ts create mode 100644 src/app/components/themes/material/cascadeselect/index.ts create mode 100644 src/app/components/themes/material/checkbox/index.ts create mode 100644 src/app/components/themes/material/chip/index.ts create mode 100644 src/app/components/themes/material/colorpicker/index.ts create mode 100644 src/app/components/themes/material/confirmdialog/index.ts create mode 100644 src/app/components/themes/material/confirmpopup/index.ts create mode 100644 src/app/components/themes/material/contextmenu/index.ts create mode 100644 src/app/components/themes/material/datatable/index.ts create mode 100644 src/app/components/themes/material/dataview/index.ts create mode 100644 src/app/components/themes/material/datepicker/index.ts create mode 100644 src/app/components/themes/material/dialog/index.ts create mode 100644 src/app/components/themes/material/divider/index.ts create mode 100644 src/app/components/themes/material/dock/index.ts create mode 100644 src/app/components/themes/material/drawer/index.ts create mode 100644 src/app/components/themes/material/editor/index.ts create mode 100644 src/app/components/themes/material/fieldset/index.ts create mode 100644 src/app/components/themes/material/fileupload/index.ts create mode 100644 src/app/components/themes/material/floatlabel/index.ts create mode 100644 src/app/components/themes/material/galleria/index.ts create mode 100644 src/app/components/themes/material/iconfield/index.ts create mode 100644 src/app/components/themes/material/iftalabel/index.ts create mode 100644 src/app/components/themes/material/image/index.ts create mode 100644 src/app/components/themes/material/imagecompare/index.ts create mode 100644 src/app/components/themes/material/inlinemessage/index.ts create mode 100644 src/app/components/themes/material/inplace/index.ts create mode 100644 src/app/components/themes/material/inputchips/index.ts create mode 100644 src/app/components/themes/material/inputgroup/index.ts create mode 100644 src/app/components/themes/material/inputnumber/index.ts create mode 100644 src/app/components/themes/material/inputtext/index.ts create mode 100644 src/app/components/themes/material/knob/index.ts create mode 100644 src/app/components/themes/material/listbox/index.ts create mode 100644 src/app/components/themes/material/megamenu/index.ts create mode 100644 src/app/components/themes/material/menu/index.ts create mode 100644 src/app/components/themes/material/menubar/index.ts create mode 100644 src/app/components/themes/material/message/index.ts create mode 100644 src/app/components/themes/material/metergroup/index.ts create mode 100644 src/app/components/themes/material/multiselect/index.ts create mode 100644 src/app/components/themes/material/orderlist/index.ts create mode 100644 src/app/components/themes/material/organizationchart/index.ts create mode 100644 src/app/components/themes/material/overlaybadge/index.ts create mode 100644 src/app/components/themes/material/paginator/index.ts create mode 100644 src/app/components/themes/material/panel/index.ts create mode 100644 src/app/components/themes/material/panelmenu/index.ts create mode 100644 src/app/components/themes/material/password/index.ts create mode 100644 src/app/components/themes/material/picklist/index.ts create mode 100644 src/app/components/themes/material/popover/index.ts create mode 100644 src/app/components/themes/material/progressbar/index.ts create mode 100644 src/app/components/themes/material/progressspinner/index.ts create mode 100644 src/app/components/themes/material/radiobutton/index.ts create mode 100644 src/app/components/themes/material/rating/index.ts create mode 100644 src/app/components/themes/material/ripple/index.ts create mode 100644 src/app/components/themes/material/scrollpanel/index.ts create mode 100644 src/app/components/themes/material/select/index.ts create mode 100644 src/app/components/themes/material/selectbutton/index.ts create mode 100644 src/app/components/themes/material/skeleton/index.ts create mode 100644 src/app/components/themes/material/slider/index.ts create mode 100644 src/app/components/themes/material/speeddial/index.ts create mode 100644 src/app/components/themes/material/splitbutton/index.ts create mode 100644 src/app/components/themes/material/splitter/index.ts create mode 100644 src/app/components/themes/material/stepper/index.ts create mode 100644 src/app/components/themes/material/steps/index.ts create mode 100644 src/app/components/themes/material/tabmenu/index.ts create mode 100644 src/app/components/themes/material/tabs/index.ts create mode 100644 src/app/components/themes/material/tabview/index.ts create mode 100644 src/app/components/themes/material/tag/index.ts create mode 100644 src/app/components/themes/material/terminal/index.ts create mode 100644 src/app/components/themes/material/textarea/index.ts create mode 100644 src/app/components/themes/material/tieredmenu/index.ts create mode 100644 src/app/components/themes/material/timeline/index.ts create mode 100644 src/app/components/themes/material/toast/index.ts create mode 100644 src/app/components/themes/material/togglebutton/index.ts create mode 100644 src/app/components/themes/material/toggleswitch/index.ts create mode 100644 src/app/components/themes/material/toolbar/index.ts create mode 100644 src/app/components/themes/material/tooltip/index.ts create mode 100644 src/app/components/themes/material/tree/index.ts create mode 100644 src/app/components/themes/material/treeselect/index.ts create mode 100644 src/app/components/themes/material/treetable/index.ts create mode 100644 src/app/components/themes/material/virtualscroller/index.ts diff --git a/src/app/components/themes/material/accordion/index.ts b/src/app/components/themes/material/accordion/index.ts new file mode 100644 index 00000000000..6299bfec517 --- /dev/null +++ b/src/app/components/themes/material/accordion/index.ts @@ -0,0 +1,77 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + panel: { + borderWidth: '0', + borderColor: '{content.border.color}' + }, + header: { + color: '{text.color}', + hoverColor: '{text.color}', + activeColor: '{text.color}', + padding: '1.25rem', + fontWeight: '600', + borderRadius: '0', + borderWidth: '0', + borderColor: '{content.border.color}', + background: '{content.background}', + hoverBackground: '{content.hover.background}', + activeBackground: '{content.background}', + activeHoverBackground: '{content.background}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + }, + toggleIcon: { + color: '{text.muted.color}', + hoverColor: '{text.muted.color}', + activeColor: '{text.muted.color}', + activeHoverColor: '{text.muted.color}' + }, + first: { + topBorderRadius: '{content.border.radius}', + borderWidth: '0' + }, + last: { + bottomBorderRadius: '{content.border.radius}', + activeBottomBorderRadius: '0' + } + }, + content: { + borderWidth: '0', + borderColor: '{content.border.color}', + background: '{content.background}', + color: '{text.color}', + padding: '0 1.25rem 1.25rem 1.25rem' + }, + css: ({ dt }) => ` +.p-accordionpanel { + box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12); + transition: margin ${dt('accordion.transition.duration')}; +} + +.p-accordionpanel-active { + margin: 1rem 0; +} + +.p-accordionpanel:first-child { + border-top-left-radius: ${dt('content.border.radius')}; + border-top-right-radius: ${dt('content.border.radius')}; + margin-top: 0; +} + +.p-accordionpanel:last-child { + border-bottom-left-radius: ${dt('content.border.radius')}; + border-bottom-right-radius: ${dt('content.border.radius')}; + margin-bottom: 0; +} + +.p-accordionpanel:not(.p-disabled) .p-accordionheader:focus-visible { + background: ${dt('navigation.item.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/autocomplete/index.ts b/src/app/components/themes/material/autocomplete/index.ts new file mode 100644 index 00000000000..ec7dd4932bf --- /dev/null +++ b/src/app/components/themes/material/autocomplete/index.ts @@ -0,0 +1,164 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledHoverBackground: '{form.field.filled.hover.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + overlay: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}' + }, + list: { + padding: '{list.padding}', + gap: '{list.gap}' + }, + option: { + focusBackground: '{list.option.focus.background}', + selectedBackground: '{list.option.selected.background}', + selectedFocusBackground: '{list.option.selected.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + selectedColor: '{list.option.selected.color}', + selectedFocusColor: '{list.option.selected.focus.color}', + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}' + }, + optionGroup: { + background: '{list.option.group.background}', + color: '{list.option.group.color}', + fontWeight: '{list.option.group.font.weight}', + padding: '{list.option.group.padding}' + }, + dropdown: { + width: '3rem', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.border.color}', + activeBorderColor: '{form.field.border.color}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + chip: { + borderRadius: '{border.radius.sm}' + }, + emptyMessage: { + padding: '{list.option.padding}' + }, + colorScheme: { + light: { + chip: { + focusBackground: '{surface.300}', + color: '{surface.950}' + }, + dropdown: { + background: '{surface.100}', + hoverBackground: '{surface.200}', + activeBackground: '{surface.300}', + color: '{surface.600}', + hoverColor: '{surface.700}', + activeColor: '{surface.800}' + } + }, + dark: { + chip: { + focusBackground: '{surface.600}', + color: '{surface.0}' + }, + dropdown: { + background: '{surface.800}', + hoverBackground: '{surface.700}', + activeBackground: '{surface.600}', + color: '{surface.300}', + hoverColor: '{surface.200}', + activeColor: '{surface.100}' + } + } + }, + css: ({ dt }) => ` +.p-autocomplete-dropdown:focus-visible { + background: ${dt('autocomplete.dropdown.hover.background')}; + border-color: ${dt('autocomplete.dropdown.hover.border.color')}; + color: ${dt('autocomplete.dropdown.hover.color')}; +} + +.p-variant-filled.p-autocomplete-input-multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid transparent; + background: ${dt('autocomplete.filled.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('autocomplete.focus.border.color')}, ${dt('autocomplete.focus.border.color')}), linear-gradient(to bottom, ${dt('autocomplete.border.color')}, ${dt('autocomplete.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.p-autocomplete:not(.p-disabled):hover .p-variant-filled.p-autocomplete-input-multiple { + background: ${dt('autocomplete.filled.hover.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('autocomplete.focus.border.color')}, ${dt('autocomplete.focus.border.color')}), linear-gradient(to bottom, ${dt('autocomplete.hover.border.color')}, ${dt('autocomplete.hover.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-autocomplete:not(.p-disabled).p-focus .p-variant-filled.p-autocomplete-input-multiple { + outline: 0 none; + background: ${dt('autocomplete.filled.focus.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('autocomplete.focus.border.color')}, ${dt('autocomplete.focus.border.color')}), linear-gradient(to bottom, ${dt('autocomplete.border.color')}, ${dt('autocomplete.border.color')}); + background-size: 100% 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-autocomplete:not(.p-disabled).p-focus:hover .p-variant-filled.p-autocomplete-input-multiple { + background-image: linear-gradient(to bottom, ${dt('autocomplete.focus.border.color')}, ${dt('autocomplete.focus.border.color')}), linear-gradient(to bottom, ${dt('autocomplete.hover.border.color')}, ${dt('autocomplete.hover.border.color')}); +} + +.p-autocomplete.p-invalid .p-autocomplete-input-multiple { + background-image: linear-gradient(to bottom, ${dt('autocomplete.invalid.border.color')}, ${dt('autocomplete.invalid.border.color')}), linear-gradient(to bottom, ${dt('autocomplete.invalid.border.color')}, ${dt( + 'autocomplete.invalid.border.color' + )}); +} + +.p-autocomplete.p-invalid.p-focus .p-autocomplete-input-multiple { + background-image: linear-gradient(to bottom, ${dt('autocomplete.invalid.border.color')}, ${dt('autocomplete.invalid.border.color')}), linear-gradient(to bottom, ${dt('autocomplete.invalid.border.color')}, ${dt( + 'autocomplete.invalid.border.color' + )}); +} + +.p-autocomplete-option { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/avatar/index.ts b/src/app/components/themes/material/avatar/index.ts new file mode 100644 index 00000000000..7907a7bed13 --- /dev/null +++ b/src/app/components/themes/material/avatar/index.ts @@ -0,0 +1,23 @@ +export default { + root: { + width: '2rem', + height: '2rem', + fontSize: '1rem', + background: '{content.border.color}', + borderRadius: '{content.border.radius}' + }, + group: { + borderColor: '{content.background}', + offset: '-1rem' + }, + lg: { + width: '3rem', + height: '3rem', + fontSize: '1.5rem' + }, + xl: { + width: '4rem', + height: '4rem', + fontSize: '2rem' + } +}; diff --git a/src/app/components/themes/material/badge/index.ts b/src/app/components/themes/material/badge/index.ts new file mode 100644 index 00000000000..5ed3f6e4688 --- /dev/null +++ b/src/app/components/themes/material/badge/index.ts @@ -0,0 +1,90 @@ +export default { + root: { + borderRadius: '{border.radius.md}', + padding: '0 0.5rem', + fontSize: '0.75rem', + fontWeight: '700', + minWidth: '1.5rem', + height: '1.5rem' + }, + dot: { + size: '0.5rem' + }, + sm: { + fontSize: '0.625rem', + minWidth: '1.25rem', + height: '1.25rem' + }, + lg: { + fontSize: '0.875rem', + minWidth: '1.75rem', + height: '1.75rem' + }, + xl: { + fontSize: '1rem', + minWidth: '2rem', + height: '2rem' + }, + colorScheme: { + light: { + primary: { + background: '{primary.color}', + color: '{primary.contrast.color}' + }, + secondary: { + background: '{surface.100}', + color: '{surface.600}' + }, + success: { + background: '{green.500}', + color: '{surface.0}' + }, + info: { + background: '{sky.500}', + color: '{surface.0}' + }, + warn: { + background: '{orange.500}', + color: '{surface.0}' + }, + danger: { + background: '{red.500}', + color: '{surface.0}' + }, + contrast: { + background: '{surface.950}', + color: '{surface.0}' + } + }, + dark: { + primary: { + background: '{primary.color}', + color: '{primary.contrast.color}' + }, + secondary: { + background: '{surface.800}', + color: '{surface.300}' + }, + success: { + background: '{green.400}', + color: '{green.950}' + }, + info: { + background: '{sky.400}', + color: '{sky.950}' + }, + warn: { + background: '{orange.400}', + color: '{orange.950}' + }, + danger: { + background: '{red.400}', + color: '{red.950}' + }, + contrast: { + background: '{surface.0}', + color: '{surface.950}' + } + } + } +}; diff --git a/src/app/components/themes/material/base/index.ts b/src/app/components/themes/material/base/index.ts new file mode 100644 index 00000000000..176fde138b2 --- /dev/null +++ b/src/app/components/themes/material/base/index.ts @@ -0,0 +1,386 @@ +export default { + primitive: { + borderRadius: { + none: '0', + xs: '2px', + sm: '4px', + md: '6px', + lg: '8px', + xl: '12px' + }, + emerald: { 50: '#E8F6F1', 100: '#C5EBE1', 200: '#9EDFCF', 300: '#76D3BD', 400: '#58C9AF', 500: '#3BBFA1', 600: '#35AF94', 700: '#2D9B83', 800: '#268873', 900: '#1A6657', 950: '#0d3329' }, + green: { 50: '#E8F5E9', 100: '#C8E6C9', 200: '#A5D6A7', 300: '#81C784', 400: '#66BB6A', 500: '#4CAF50', 600: '#43A047', 700: '#388E3C', 800: '#2E7D32', 900: '#1B5E20', 950: '#0e2f10' }, + lime: { 50: '#F9FBE7', 100: '#F0F4C3', 200: '#E6EE9C', 300: '#DCE775', 400: '#D4E157', 500: '#CDDC39', 600: '#C0CA33', 700: '#AFB42B', 800: '#9E9D24', 900: '#827717', 950: '#413c0c' }, + red: { 50: '#FFEBEE', 100: '#FFCDD2', 200: '#EF9A9A', 300: '#E57373', 400: '#EF5350', 500: '#F44336', 600: '#E53935', 700: '#D32F2F', 800: '#C62828', 900: '#B71C1C', 950: '#5c0e0e' }, + orange: { 50: '#FFF3E0', 100: '#FFE0B2', 200: '#FFCC80', 300: '#FFB74D', 400: '#FFA726', 500: '#FF9800', 600: '#FB8C00', 700: '#F57C00', 800: '#EF6C00', 900: '#E65100', 950: '#732900' }, + amber: { 50: '#FFF8E1', 100: '#FFECB3', 200: '#FFE082', 300: '#FFD54F', 400: '#FFCA28', 500: '#FFC107', 600: '#FFB300', 700: '#FFA000', 800: '#FF8F00', 900: '#FF6F00', 950: '#803800' }, + yellow: { 50: '#FFFDE7', 100: '#FFF9C4', 200: '#FFF59D', 300: '#FFF176', 400: '#FFEE58', 500: '#FFEB3B', 600: '#FDD835', 700: '#FBC02D', 800: '#F9A825', 900: '#F57F17', 950: '#7b400c' }, + teal: { 50: '#E0F2F1', 100: '#B2DFDB', 200: '#80CBC4', 300: '#4DB6AC', 400: '#26A69A', 500: '#009688', 600: '#00897B', 700: '#00796B', 800: '#00695C', 900: '#004D40', 950: '#002720' }, + cyan: { 50: '#E0F7FA', 100: '#B2EBF2', 200: '#80DEEA', 300: '#4DD0E1', 400: '#26C6DA', 500: '#00BCD4', 600: '#00ACC1', 700: '#0097A7', 800: '#00838F', 900: '#006064', 950: '#003032' }, + sky: { 50: '#E1F5FE', 100: '#B3E5FC', 200: '#81D4FA', 300: '#4FC3F7', 400: '#29B6F6', 500: '#03A9F4', 600: '#039BE5', 700: '#0288D1', 800: '#0277BD', 900: '#01579B', 950: '#012c4e' }, + blue: { 50: '#E3F2FD', 100: '#BBDEFB', 200: '#90CAF9', 300: '#64B5F6', 400: '#42A5F5', 500: '#2196F3', 600: '#1E88E5', 700: '#1976D2', 800: '#1565C0', 900: '#0D47A1', 950: '#072451' }, + indigo: { 50: '#E8EAF6', 100: '#C5CAE9', 200: '#9FA8DA', 300: '#7986CB', 400: '#5C6BC0', 500: '#3F51B5', 600: '#3949AB', 700: '#303F9F', 800: '#283593', 900: '#1A237E', 950: '#0d123f' }, + violet: { 50: '#EDE7F6', 100: '#D1C4E9', 200: '#B39DDB', 300: '#9575CD', 400: '#7E57C2', 500: '#673AB7', 600: '#5E35B1', 700: '#512DA8', 800: '#4527A0', 900: '#311B92', 950: '#190e49' }, + purple: { 50: '#F3E5F5', 100: '#E1BEE7', 200: '#CE93D8', 300: '#BA68C8', 400: '#AB47BC', 500: '#9C27B0', 600: '#8E24AA', 700: '#7B1FA2', 800: '#6A1B9A', 900: '#4A148C', 950: '#250a46' }, + fuchsia: { 50: '#FDE6F3', 100: '#FBC1E3', 200: '#F897D1', 300: '#F56DBF', 400: '#F34DB2', 500: '#F12DA5', 600: '#E0289D', 700: '#CC2392', 800: '#B81E88', 900: '#951777', 950: '#4b0c3c' }, + pink: { 50: '#FCE4EC', 100: '#F8BBD0', 200: '#F48FB1', 300: '#F06292', 400: '#EC407A', 500: '#E91E63', 600: '#D81B60', 700: '#C2185B', 800: '#AD1457', 900: '#880E4F', 950: '#440728' }, + rose: { 50: '#FFF0F0', 100: '#FFD9D9', 200: '#FFC0C0', 300: '#FFA7A7', 400: '#FF8E8E', 500: '#FF7575', 600: '#FF5252', 700: '#FF3838', 800: '#F71C1C', 900: '#D50000', 950: '#3E0000' }, + slate: { 50: '#f8fafc', 100: '#f1f5f9', 200: '#e2e8f0', 300: '#cbd5e1', 400: '#94a3b8', 500: '#64748b', 600: '#475569', 700: '#334155', 800: '#1e293b', 900: '#0f172a', 950: '#020617' }, + gray: { 50: '#f9fafb', 100: '#f3f4f6', 200: '#e5e7eb', 300: '#d1d5db', 400: '#9ca3af', 500: '#6b7280', 600: '#4b5563', 700: '#374151', 800: '#1f2937', 900: '#111827', 950: '#030712' }, + zinc: { 50: '#fafafa', 100: '#f4f4f5', 200: '#e4e4e7', 300: '#d4d4d8', 400: '#a1a1aa', 500: '#71717a', 600: '#52525b', 700: '#3f3f46', 800: '#27272a', 900: '#18181b', 950: '#09090b' }, + neutral: { 50: '#fafafa', 100: '#f5f5f5', 200: '#e5e5e5', 300: '#d4d4d4', 400: '#a3a3a3', 500: '#737373', 600: '#525252', 700: '#404040', 800: '#262626', 900: '#171717', 950: '#0a0a0a' }, + stone: { 50: '#fafaf9', 100: '#f5f5f4', 200: '#e7e5e4', 300: '#d6d3d1', 400: '#a8a29e', 500: '#78716c', 600: '#57534e', 700: '#44403c', 800: '#292524', 900: '#1c1917', 950: '#0c0a09' } + }, + semantic: { + transitionDuration: '0.2s', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0' + }, + disabledOpacity: '0.38', + iconSize: '1rem', + anchorGutter: '0', + primary: { + 50: '{emerald.50}', + 100: '{emerald.100}', + 200: '{emerald.200}', + 300: '{emerald.300}', + 400: '{emerald.400}', + 500: '{emerald.500}', + 600: '{emerald.600}', + 700: '{emerald.700}', + 800: '{emerald.800}', + 900: '{emerald.900}', + 950: '{emerald.950}' + }, + formField: { + paddingX: '0.75rem', + paddingY: '0.75rem', + borderRadius: '{border.radius.sm}', + focusRing: { + width: '2px', + style: 'solid', + color: '{primary.color}', + offset: '-2px', + shadow: 'none' + }, + transitionDuration: '{transition.duration}' + }, + list: { + padding: '0.5rem 0', + gap: '0', + header: { + padding: '0.75rem 1rem' + }, + option: { + padding: '0.75rem 1rem', + borderRadius: '{border.radius.none}' + }, + optionGroup: { + padding: '0.75rem 1rem', + fontWeight: '700' + } + }, + content: { + borderRadius: '{border.radius.sm}' + }, + mask: { + transitionDuration: '0.15s' + }, + navigation: { + list: { + padding: '0.5rem 0', + gap: '0' + }, + item: { + padding: '0.75rem 1rem', + borderRadius: '{border.radius.none}', + gap: '0.5rem' + }, + submenuLabel: { + padding: '0.75rem 1rem', + fontWeight: '700' + }, + submenuIcon: { + size: '0.875rem' + } + }, + overlay: { + select: { + borderRadius: '{border.radius.sm}', + shadow: '0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12)' + }, + popover: { + borderRadius: '{border.radius.sm}', + padding: '1rem', + shadow: '0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12)' + }, + modal: { + borderRadius: '{border.radius.sm}', + padding: '1.5rem', + shadow: '0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12)' + }, + navigation: { + shadow: '0 2px 4px -1px rgba(0,0,0,.2), 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12)' + } + }, + colorScheme: { + light: { + focusRing: { + shadow: '0 0 1px 4px {surface.200}' + }, + surface: { + 0: '#ffffff', + 50: '{slate.50}', + 100: '{slate.100}', + 200: '{slate.200}', + 300: '{slate.300}', + 400: '{slate.400}', + 500: '{slate.500}', + 600: '{slate.600}', + 700: '{slate.700}', + 800: '{slate.800}', + 900: '{slate.900}', + 950: '{slate.950}' + }, + primary: { + color: '{primary.500}', + contrastColor: '#ffffff', + hoverColor: '{primary.400}', + activeColor: '{primary.300}' + }, + highlight: { + background: 'color-mix(in srgb, {primary.color}, transparent 88%)', + focusBackground: 'color-mix(in srgb, {primary.color}, transparent 76%)', + color: '{primary.700}', + focusColor: '{primary.800}' + }, + mask: { + background: 'rgba(0,0,0,0.32)', + color: '{surface.200}' + }, + formField: { + background: '{surface.0}', + disabledBackground: '{surface.300}', + filledBackground: '{surface.100}', + filledHoverBackground: '{surface.200}', + filledFocusBackground: '{surface.100}', + borderColor: '{surface.400}', + hoverBorderColor: '{surface.900}', + focusBorderColor: '{primary.color}', + invalidBorderColor: '{red.800}', + color: '{surface.900}', + disabledColor: '{surface.600}', + placeholderColor: '{surface.600}', + floatLabelColor: '{surface.600}', + floatLabelFocusColor: '{primary.600}', + floatLabelActiveColor: '{surface.600}', + floatLabelInvalidColor: '{red.800}', + iconColor: '{surface.600}', + shadow: 'none' + }, + text: { + color: '{surface.900}', + hoverColor: '{surface.900}', + mutedColor: '{surface.600}', + hoverMutedColor: '{surface.600}' + }, + content: { + background: '{surface.0}', + hoverBackground: '{surface.100}', + borderColor: '{surface.300}', + color: '{text.color}', + hoverColor: '{text.hover.color}' + }, + overlay: { + select: { + background: '{surface.0}', + borderColor: '{surface.0}', + color: '{text.color}' + }, + popover: { + background: '{surface.0}', + borderColor: '{surface.0}', + color: '{text.color}' + }, + modal: { + background: '{surface.0}', + borderColor: '{surface.0}', + color: '{text.color}' + } + }, + list: { + option: { + focusBackground: '{surface.100}', + selectedBackground: '{highlight.background}', + selectedFocusBackground: '{highlight.focus.background}', + color: '{text.color}', + focusColor: '{text.hover.color}', + selectedColor: '{highlight.color}', + selectedFocusColor: '{highlight.focus.color}', + icon: { + color: '{surface.600}', + focusColor: '{surface.600}' + } + }, + optionGroup: { + background: 'transparent', + color: '{text.color}' + } + }, + navigation: { + item: { + focusBackground: '{surface.100}', + activeBackground: '{surface.200}', + color: '{text.color}', + focusColor: '{text.hover.color}', + activeColor: '{text.hover.color}', + icon: { + color: '{surface.600}', + focusColor: '{surface.600}', + activeColor: '{surface.600}' + } + }, + submenuLabel: { + background: 'transparent', + color: '{text.color}' + }, + submenuIcon: { + color: '{surface.600}', + focusColor: '{surface.600}', + activeColor: '{surface.600}' + } + } + }, + dark: { + focusRing: { + shadow: '0 0 1px 4px {surface.700}' + }, + surface: { + 0: '#ffffff', + 50: '{zinc.50}', + 100: '{zinc.100}', + 200: '{zinc.200}', + 300: '{zinc.300}', + 400: '{zinc.400}', + 500: '{zinc.500}', + 600: '{zinc.600}', + 700: '{zinc.700}', + 800: '{zinc.800}', + 900: '{zinc.900}', + 950: '{zinc.950}' + }, + primary: { + color: '{primary.400}', + contrastColor: '{surface.900}', + hoverColor: '{primary.300}', + activeColor: '{primary.200}' + }, + highlight: { + background: 'color-mix(in srgb, {primary.400}, transparent 84%)', + focusBackground: 'color-mix(in srgb, {primary.400}, transparent 76%)', + color: 'rgba(255,255,255,.87)', + focusColor: 'rgba(255,255,255,.87)' + }, + mask: { + background: 'rgba(0,0,0,0.6)', + color: '{surface.200}' + }, + formField: { + background: '{surface.950}', + disabledBackground: '{surface.700}', + filledBackground: '{surface.800}', + filledHoverBackground: '{surface.700}', + filledFocusBackground: '{surface.800}', + borderColor: '{surface.600}', + hoverBorderColor: '{surface.400}', + focusBorderColor: '{primary.color}', + invalidBorderColor: '{red.300}', + color: '{surface.0}', + disabledColor: '{surface.400}', + placeholderColor: '{surface.400}', + floatLabelColor: '{surface.400}', + floatLabelFocusColor: '{primary.color}', + floatLabelActiveColor: '{surface.400}', + floatLabelInvalidColor: '{red.300}', + iconColor: '{surface.400}', + shadow: 'none' + }, + text: { + color: '{surface.0}', + hoverColor: '{surface.0}', + mutedColor: '{surface.400}', + hoverMutedColor: '{surface.400}' + }, + content: { + background: '{surface.900}', + hoverBackground: '{surface.800}', + borderColor: '{surface.700}', + color: '{text.color}', + hoverColor: '{text.hover.color}' + }, + overlay: { + select: { + background: '{surface.900}', + borderColor: '{surface.900}', + color: '{text.color}' + }, + popover: { + background: '{surface.900}', + borderColor: '{surface.900}', + color: '{text.color}' + }, + modal: { + background: '{surface.900}', + borderColor: '{surface.900}', + color: '{text.color}' + } + }, + list: { + option: { + focusBackground: '{surface.800}', + selectedBackground: '{highlight.background}', + selectedFocusBackground: '{highlight.focus.background}', + color: '{text.color}', + focusColor: '{text.hover.color}', + selectedColor: '{highlight.color}', + selectedFocusColor: '{highlight.focus.color}', + icon: { + color: '{surface.400}', + focusColor: '{surface.400}' + } + }, + optionGroup: { + background: 'transparent', + color: '{text.muted.color}' + } + }, + navigation: { + item: { + focusBackground: '{surface.800}', + activeBackground: '{surface.700}', + color: '{text.color}', + focusColor: '{text.hover.color}', + activeColor: '{text.hover.color}', + icon: { + color: '{surface.400}', + focusColor: '{surface.400}', + activeColor: '{surface.400}' + } + }, + submenuLabel: { + background: 'transparent', + color: '{text.muted.color}' + }, + submenuIcon: { + color: '{surface.400}', + focusColor: '{surface.400}', + activeColor: '{surface.400}' + } + } + } + } + } +}; diff --git a/src/app/components/themes/material/blockui/index.ts b/src/app/components/themes/material/blockui/index.ts new file mode 100644 index 00000000000..1ed842dac23 --- /dev/null +++ b/src/app/components/themes/material/blockui/index.ts @@ -0,0 +1,5 @@ +export default { + root: { + borderRadius: '{content.border.radius}' + } +}; diff --git a/src/app/components/themes/material/breadcrumb/index.ts b/src/app/components/themes/material/breadcrumb/index.ts new file mode 100644 index 00000000000..fc4dc333d40 --- /dev/null +++ b/src/app/components/themes/material/breadcrumb/index.ts @@ -0,0 +1,28 @@ +export default { + root: { + padding: '1rem', + background: '{content.background}', + gap: '0.5rem', + transitionDuration: '{transition.duration}' + }, + item: { + color: '{text.muted.color}', + hoverColor: '{text.color}', + borderRadius: '{content.border.radius}', + gap: '{navigation.item.gap}', + icon: { + color: '{navigation.item.icon.color}', + hoverColor: '{navigation.item.icon.focus.color}' + }, + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + separator: { + color: '{navigation.item.icon.color}' + } +}; diff --git a/src/app/components/themes/material/button/index.ts b/src/app/components/themes/material/button/index.ts new file mode 100644 index 00000000000..eb043585f41 --- /dev/null +++ b/src/app/components/themes/material/button/index.ts @@ -0,0 +1,615 @@ +export default { + root: { + borderRadius: '{form.field.border.radius}', + roundedBorderRadius: '2rem', + gap: '0.5rem', + paddingX: '1rem', + paddingY: '0.625rem', + iconOnlyWidth: '3rem', + sm: { + fontSize: '0.875rem', + paddingX: '0.875rem', + paddingY: '0.5rem' + }, + lg: { + fontSize: '1.125rem', + paddingX: '1.125rem', + paddingY: '0.75rem' + }, + label: { + fontWeight: '500' + }, + raisedShadow: '0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12)', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + offset: '{focus.ring.offset}' + }, + badgeSize: '1rem', + transitionDuration: '{form.field.transition.duration}' + }, + colorScheme: { + light: { + root: { + primary: { + background: '{primary.color}', + hoverBackground: '{primary.hover.color}', + activeBackground: '{primary.active.color}', + borderColor: '{primary.color}', + hoverBorderColor: '{primary.hover.color}', + activeBorderColor: '{primary.active.color}', + color: '{primary.contrast.color}', + hoverColor: '{primary.contrast.color}', + activeColor: '{primary.contrast.color}', + focusRing: { + color: '{primary.color}', + shadow: 'none' + } + }, + secondary: { + background: '{surface.100}', + hoverBackground: '{surface.200}', + activeBackground: '{surface.300}', + borderColor: '{surface.100}', + hoverBorderColor: '{surface.200}', + activeBorderColor: '{surface.300}', + color: '{surface.600}', + hoverColor: '{surface.700}', + activeColor: '{surface.800}', + focusRing: { + color: '{surface.600}', + shadow: 'none' + } + }, + info: { + background: '{sky.500}', + hoverBackground: '{sky.400}', + activeBackground: '{sky.300}', + borderColor: '{sky.500}', + hoverBorderColor: '{sky.400}', + activeBorderColor: '{sky.300}', + color: '#ffffff', + hoverColor: '#ffffff', + activeColor: '#ffffff', + focusRing: { + color: '{sky.500}', + shadow: 'none' + } + }, + success: { + background: '{green.500}', + hoverBackground: '{green.400}', + activeBackground: '{green.300}', + borderColor: '{green.500}', + hoverBorderColor: '{green.400}', + activeBorderColor: '{green.300}', + color: '#ffffff', + hoverColor: '#ffffff', + activeColor: '#ffffff', + focusRing: { + color: '{green.500}', + shadow: 'none' + } + }, + warn: { + background: '{orange.500}', + hoverBackground: '{orange.400}', + activeBackground: '{orange.300}', + borderColor: '{orange.500}', + hoverBorderColor: '{orange.400}', + activeBorderColor: '{orange.300}', + color: '#ffffff', + hoverColor: '#ffffff', + activeColor: '#ffffff', + focusRing: { + color: '{orange.500}', + shadow: 'none' + } + }, + help: { + background: '{purple.500}', + hoverBackground: '{purple.400}', + activeBackground: '{purple.300}', + borderColor: '{purple.500}', + hoverBorderColor: '{purple.400}', + activeBorderColor: '{purple.300}', + color: '#ffffff', + hoverColor: '#ffffff', + activeColor: '#ffffff', + focusRing: { + color: '{purple.500}', + shadow: 'none' + } + }, + danger: { + background: '{red.500}', + hoverBackground: '{red.400}', + activeBackground: '{red.300}', + borderColor: '{red.500}', + hoverBorderColor: '{red.400}', + activeBorderColor: '{red.300}', + color: '#ffffff', + hoverColor: '#ffffff', + activeColor: '#ffffff', + focusRing: { + color: '{red.500}', + shadow: 'none' + } + }, + contrast: { + background: '{surface.950}', + hoverBackground: '{surface.800}', + activeBackground: '{surface.700}', + borderColor: '{surface.950}', + hoverBorderColor: '{surface.800}', + activeBorderColor: '{surface.700}', + color: '{surface.0}', + hoverColor: '{surface.0}', + activeColor: '{surface.0}', + focusRing: { + color: '{surface.950}', + shadow: 'none' + } + } + }, + outlined: { + primary: { + hoverBackground: '{primary.50}', + activeBackground: '{primary.100}', + borderColor: '{primary.color}', + color: '{primary.color}' + }, + secondary: { + hoverBackground: '{surface.50}', + activeBackground: '{surface.100}', + borderColor: '{surface.600}', + color: '{surface.600}' + }, + success: { + hoverBackground: '{green.50}', + activeBackground: '{green.100}', + borderColor: '{green.500}', + color: '{green.500}' + }, + info: { + hoverBackground: '{sky.50}', + activeBackground: '{sky.100}', + borderColor: '{sky.500}', + color: '{sky.500}' + }, + warn: { + hoverBackground: '{orange.50}', + activeBackground: '{orange.100}', + borderColor: '{orange.500}', + color: '{orange.500}' + }, + help: { + hoverBackground: '{purple.50}', + activeBackground: '{purple.100}', + borderColor: '{purple.500}', + color: '{purple.500}' + }, + danger: { + hoverBackground: '{red.50}', + activeBackground: '{red.100}', + borderColor: '{red.500}', + color: '{red.500}' + }, + contrast: { + hoverBackground: '{surface.50}', + activeBackground: '{surface.100}', + borderColor: '{surface.950}', + color: '{surface.950}' + }, + plain: { + hoverBackground: '{surface.50}', + activeBackground: '{surface.100}', + borderColor: '{surface.900}', + color: '{surface.900}' + } + }, + text: { + primary: { + hoverBackground: '{primary.50}', + activeBackground: '{primary.100}', + color: '{primary.color}' + }, + secondary: { + hoverBackground: '{surface.50}', + activeBackground: '{surface.100}', + color: '{surface.600}' + }, + success: { + hoverBackground: '{green.50}', + activeBackground: '{green.100}', + color: '{green.500}' + }, + info: { + hoverBackground: '{sky.50}', + activeBackground: '{sky.100}', + color: '{sky.500}' + }, + warn: { + hoverBackground: '{orange.50}', + activeBackground: '{orange.100}', + color: '{orange.500}' + }, + help: { + hoverBackground: '{purple.50}', + activeBackground: '{purple.100}', + color: '{purple.500}' + }, + danger: { + hoverBackground: '{red.50}', + activeBackground: '{red.100}', + color: '{red.500}' + }, + plain: { + hoverBackground: '{surface.50}', + activeBackground: '{surface.100}', + color: '{surface.900}' + } + }, + link: { + color: '{primary.color}', + hoverColor: '{primary.color}', + activeColor: '{primary.color}' + } + }, + dark: { + root: { + primary: { + background: '{primary.color}', + hoverBackground: '{primary.hover.color}', + activeBackground: '{primary.active.color}', + borderColor: '{primary.color}', + hoverBorderColor: '{primary.hover.color}', + activeBorderColor: '{primary.active.color}', + color: '{primary.contrast.color}', + hoverColor: '{primary.contrast.color}', + activeColor: '{primary.contrast.color}', + focusRing: { + color: '{primary.color}', + shadow: 'none' + } + }, + secondary: { + background: '{surface.800}', + hoverBackground: '{surface.700}', + activeBackground: '{surface.600}', + borderColor: '{surface.800}', + hoverBorderColor: '{surface.700}', + activeBorderColor: '{surface.600}', + color: '{surface.300}', + hoverColor: '{surface.200}', + activeColor: '{surface.100}', + focusRing: { + color: '{surface.300}', + shadow: 'none' + } + }, + info: { + background: '{sky.400}', + hoverBackground: '{sky.300}', + activeBackground: '{sky.200}', + borderColor: '{sky.400}', + hoverBorderColor: '{sky.300}', + activeBorderColor: '{sky.200}', + color: '{sky.950}', + hoverColor: '{sky.950}', + activeColor: '{sky.950}', + focusRing: { + color: '{sky.400}', + shadow: 'none' + } + }, + success: { + background: '{green.400}', + hoverBackground: '{green.300}', + activeBackground: '{green.200}', + borderColor: '{green.400}', + hoverBorderColor: '{green.300}', + activeBorderColor: '{green.200}', + color: '{green.950}', + hoverColor: '{green.950}', + activeColor: '{green.950}', + focusRing: { + color: '{green.400}', + shadow: 'none' + } + }, + warn: { + background: '{orange.400}', + hoverBackground: '{orange.300}', + activeBackground: '{orange.200}', + borderColor: '{orange.400}', + hoverBorderColor: '{orange.300}', + activeBorderColor: '{orange.200}', + color: '{orange.950}', + hoverColor: '{orange.950}', + activeColor: '{orange.950}', + focusRing: { + color: '{orange.400}', + shadow: 'none' + } + }, + help: { + background: '{purple.400}', + hoverBackground: '{purple.300}', + activeBackground: '{purple.200}', + borderColor: '{purple.400}', + hoverBorderColor: '{purple.300}', + activeBorderColor: '{purple.200}', + color: '{purple.950}', + hoverColor: '{purple.950}', + activeColor: '{purple.950}', + focusRing: { + color: '{purple.400}', + shadow: 'none' + } + }, + danger: { + background: '{red.400}', + hoverBackground: '{red.300}', + activeBackground: '{red.200}', + borderColor: '{red.400}', + hoverBorderColor: '{red.300}', + activeBorderColor: '{red.200}', + color: '{red.950}', + hoverColor: '{red.950}', + activeColor: '{red.950}', + focusRing: { + color: '{red.400}', + shadow: 'none' + } + }, + contrast: { + background: '{surface.0}', + hoverBackground: '{surface.100}', + activeBackground: '{surface.200}', + borderColor: '{surface.0}', + hoverBorderColor: '{surface.100}', + activeBorderColor: '{surface.200}', + color: '{surface.950}', + hoverColor: '{surface.950}', + activeColor: '{surface.950}', + focusRing: { + color: '{surface.0}', + shadow: 'none' + } + } + }, + outlined: { + primary: { + hoverBackground: 'color-mix(in srgb, {primary.color}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {primary.color}, transparent 84%)', + borderColor: '{primary.700}', + color: '{primary.color}' + }, + secondary: { + hoverBackground: 'rgba(255,255,255,0.04)', + activeBackground: 'rgba(255,255,255,0.16)', + borderColor: '{surface.700}', + color: '{surface.400}' + }, + success: { + hoverBackground: 'color-mix(in srgb, {green.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {green.400}, transparent 84%)', + borderColor: '{green.700}', + color: '{green.400}' + }, + info: { + hoverBackground: 'color-mix(in srgb, {sky.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {sky.400}, transparent 84%)', + borderColor: '{sky.700}', + color: '{sky.400}' + }, + warn: { + hoverBackground: 'color-mix(in srgb, {orange.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {orange.400}, transparent 84%)', + borderColor: '{orange.700}', + color: '{orange.400}' + }, + help: { + hoverBackground: 'color-mix(in srgb, {purple.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {purple.400}, transparent 84%)', + borderColor: '{purple.700}', + color: '{purple.400}' + }, + danger: { + hoverBackground: 'color-mix(in srgb, {red.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {red.400}, transparent 84%)', + borderColor: '{red.700}', + color: '{red.400}' + }, + contrast: { + hoverBackground: '{surface.800}', + activeBackground: '{surface.700}', + borderColor: '{surface.500}', + color: '{surface.0}' + }, + plain: { + hoverBackground: '{surface.800}', + activeBackground: '{surface.700}', + borderColor: '{surface.600}', + color: '{surface.0}' + } + }, + text: { + primary: { + hoverBackground: 'color-mix(in srgb, {primary.color}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {primary.color}, transparent 84%)', + color: '{primary.color}' + }, + secondary: { + hoverBackground: '{surface.800}', + activeBackground: '{surface.700}', + color: '{surface.400}' + }, + success: { + hoverBackground: 'color-mix(in srgb, {green.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {green.400}, transparent 84%)', + color: '{green.400}' + }, + info: { + hoverBackground: 'color-mix(in srgb, {sky.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {sky.400}, transparent 84%)', + color: '{sky.400}' + }, + warn: { + hoverBackground: 'color-mix(in srgb, {orange.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {orange.400}, transparent 84%)', + color: '{orange.400}' + }, + help: { + hoverBackground: 'color-mix(in srgb, {purple.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {purple.400}, transparent 84%)', + color: '{purple.400}' + }, + danger: { + hoverBackground: 'color-mix(in srgb, {red.400}, transparent 96%)', + activeBackground: 'color-mix(in srgb, {red.400}, transparent 84%)', + color: '{red.400}' + }, + plain: { + hoverBackground: '{surface.800}', + activeBackground: '{surface.700}', + color: '{surface.0}' + } + }, + link: { + color: '{primary.color}', + hoverColor: '{primary.color}', + activeColor: '{primary.color}' + } + } + }, + css: ({ dt }) => ` +.p-button:focus-visible { + background: ${dt('button.primary.active.background')}; + border-color: ${dt('button.primary.active.background')}; +} + +.p-button-secondary:focus-visible { + background: ${dt('button.secondary.active.background')}; + border-color: ${dt('button.secondary.active.background')}; +} + +.p-button-success:focus-visible { + background: ${dt('button.success.active.background')}; + border-color: ${dt('button.success.active.background')}; +} + +.p-button-info:focus-visible { + background: ${dt('button.info.active.background')}; + border-color: ${dt('button.info.active.background')}; +} + +.p-button-warn:focus-visible { + background: ${dt('button.warn.active.background')}; + border-color: ${dt('button.warn.active.background')}; +} + +.p-button-help:focus-visible { + background: ${dt('button.help.active.background')}; + border-color: ${dt('button.help.active.background')}; +} + +.p-button-danger:focus-visible { + background: ${dt('button.danger.active.background')}; + border-color: ${dt('button.danger.active.background')}; +} + +.p-button-contrast:focus-visible { + background: ${dt('button.contrast.active.background')}; + border-color: ${dt('button.contrast.active.background')}; +} + +.p-button-link:focus-visible { + background: color-mix(in srgb, ${dt('primary.color')}, transparent 84%); + border-color: transparent; +} + +.p-button-text:focus-visible { + background: ${dt('button.text.primary.active.background')}; + border-color: transparent; +} + +.p-button-secondary.p-button-text:focus-visible { + background: ${dt('button.text.secondary.active.background')}; + border-color: transparent; +} + +.p-button-success.p-button-text:focus-visible { + background: ${dt('button.text.success.active.background')}; + border-color: transparent; +} + +.p-button-info.p-button-text:focus-visible { + background: ${dt('button.text.info.active.background')}; + border-color: transparent; +} + +.p-button-warn.p-button-text:focus-visible { + background: ${dt('button.text.warn.active.background')}; + border-color: transparent; +} + +.p-button-help.p-button-text:focus-visible { + background: ${dt('button.text.help.active.background')}; + border-color: transparent; +} + +.p-button-danger.p-button-text:focus-visible { + background: ${dt('button.text.danger.active.background')}; + border-color: transparent; +} + +.p-button-contrast.p-button-text:focus-visible { + background: ${dt('button.text.contrast.active.background')}; + border-color: transparent; +} + +.p-button-plain.p-button-text:focus-visible { + background: ${dt('button.text.plain.active.background')}; + border-color: transparent; +} + +.p-button-outlined:focus-visible { + background: ${dt('button.outlined.primary.active.background')}; +} + +.p-button-secondary.p-button-outlined:focus-visible { + background: ${dt('button.outlined.secondary.active.background')}; + border-color: ${dt('button.outlined.secondary.border.color')}; +} + +.p-button-success.p-button-outlined:focus-visible { + background: ${dt('button.outlined.success.active.background')}; +} + +.p-button-info.p-button-outlined:focus-visible { + background: ${dt('button.outlined.info.active.background')}; +} + +.p-button-warn.p-button-outlined:focus-visible { + background: ${dt('button.outlined.warn.active.background')}; +} + +.p-button-help.p-button-outlined:focus-visible { + background: ${dt('button.outlined.help.active.background')}; +} + +.p-button-danger.p-button-outlined:focus-visible { + background: ${dt('button.outlined.danger.active.background')}; +} + +.p-button-contrast.p-button-outlined:focus-visible { + background: ${dt('button.outlined.contrast.active.background')}; +} + +.p-button-plain.p-button-outlined:focus-visible { + background: ${dt('button.outlined.plain.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/card/index.ts b/src/app/components/themes/material/card/index.ts new file mode 100644 index 00000000000..6b60e13e23a --- /dev/null +++ b/src/app/components/themes/material/card/index.ts @@ -0,0 +1,22 @@ +export default { + root: { + background: '{content.background}', + borderRadius: '{content.border.radius}', + color: '{content.color}', + shadow: '0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12)' + }, + body: { + padding: '1.5rem', + gap: '0.75rem' + }, + caption: { + gap: '0.5rem' + }, + title: { + fontSize: '1.25rem', + fontWeight: '500' + }, + subtitle: { + color: '{text.muted.color}' + } +}; diff --git a/src/app/components/themes/material/carousel/index.ts b/src/app/components/themes/material/carousel/index.ts new file mode 100644 index 00000000000..c910fee5f12 --- /dev/null +++ b/src/app/components/themes/material/carousel/index.ts @@ -0,0 +1,57 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + content: { + gap: '0.25rem' + }, + indicatorList: { + padding: '1rem', + gap: '1rem' + }, + indicator: { + width: '1.25rem', + height: '1.25rem', + borderRadius: '50%', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + colorScheme: { + light: { + indicator: { + background: '{surface.200}', + hoverBackground: '{surface.300}', + activeBackground: '{primary.color}' + } + }, + dark: { + indicator: { + background: '{surface.700}', + hoverBackground: '{surface.600}', + activeBackground: '{primary.color}' + } + } + }, + css: ({ dt }) => ` +.p-carousel-indicator-button:hover { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 96%); +} + +.p-carousel-indicator-button:focus-visible { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 96%); +} + +.p-carousel-indicator-active .p-carousel-indicator-button:hover { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('carousel.indicator.active.background')}, transparent 92%); +} + +.p-carousel-indicator-active .p-carousel-indicator-button:focus-visible { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('carousel.indicator.active.background')}, transparent 84%); +} +` +}; diff --git a/src/app/components/themes/material/cascadeselect/index.ts b/src/app/components/themes/material/cascadeselect/index.ts new file mode 100644 index 00000000000..6b6fbcc0961 --- /dev/null +++ b/src/app/components/themes/material/cascadeselect/index.ts @@ -0,0 +1,112 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledHoverBackground: '{form.field.filled.hover.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + dropdown: { + width: '2.5rem', + color: '{form.field.icon.color}' + }, + overlay: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}' + }, + list: { + padding: '{list.padding}', + gap: '{list.gap}', + mobileIndent: '1rem' + }, + option: { + focusBackground: '{list.option.focus.background}', + selectedBackground: '{list.option.selected.background}', + selectedFocusBackground: '{list.option.selected.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + selectedColor: '{list.option.selected.color}', + selectedFocusColor: '{list.option.selected.focus.color}', + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}', + icon: { + color: '{list.option.icon.color}', + focusColor: '{list.option.icon.focus.color}', + size: '0.875rem' + } + }, + css: ({ dt }) => ` +.p-cascadeselect.p-variant-filled { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid transparent; + background: ${dt('cascadeselect.filled.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('cascadeselect.focus.border.color')}, ${dt('cascadeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('cascadeselect.border.color')}, ${dt('cascadeselect.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.p-cascadeselect.p-variant-filled:not(.p-disabled):hover { + background: ${dt('cascadeselect.filled.hover.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('cascadeselect.focus.border.color')}, ${dt('cascadeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('cascadeselect.hover.border.color')}, ${dt('cascadeselect.hover.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-cascadeselect.p-variant-filled:not(.p-disabled).p-focus { + outline: 0 none; + background: ${dt('cascadeselect.filled.focus.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('cascadeselect.focus.border.color')}, ${dt('cascadeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('cascadeselect.border.color')}, ${dt('cascadeselect.border.color')}); + background-size: 100% 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-cascadeselect.p-variant-filled:not(.p-disabled).p-focus:hover { + background-image: linear-gradient(to bottom, ${dt('cascadeselect.focus.border.color')}, ${dt('cascadeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('cascadeselect.hover.border.color')}, ${dt('cascadeselect.hover.border.color')}); +} + +.p-cascadeselect.p-variant-filled.p-invalid { + background-image: linear-gradient(to bottom, ${dt('cascadeselect.invalid.border.color')}, ${dt('cascadeselect.invalid.border.color')}), linear-gradient(to bottom, ${dt('cascadeselect.invalid.border.color')}, ${dt( + 'cascadeselect.invalid.border.color' + )}); +} + +.p-cascadeselect.p-variant-filled.p-invalid:not(.p-disabled).p-focus { + background-image: linear-gradient(to bottom, ${dt('cascadeselect.invalid.border.color')}, ${dt('cascadeselect.invalid.border.color')}), linear-gradient(to bottom, ${dt('cascadeselect.invalid.border.color')}, ${dt( + 'cascadeselect.invalid.border.color' + )}); +} + +.p-cascadeselect-option { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/checkbox/index.ts b/src/app/components/themes/material/checkbox/index.ts new file mode 100644 index 00000000000..0fa1afbaebd --- /dev/null +++ b/src/app/components/themes/material/checkbox/index.ts @@ -0,0 +1,98 @@ +export default { + root: { + borderRadius: '{border.radius.xs}', + width: '18px', + height: '18px', + background: '{form.field.background}', + checkedBackground: '{primary.color}', + checkedHoverBackground: '{primary.color}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + checkedBorderColor: '{primary.color}', + checkedHoverBorderColor: '{primary.color}', + checkedFocusBorderColor: '{primary.color}', + checkedDisabledBorderColor: '{form.field.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + shadow: '{form.field.shadow}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + }, + transitionDuration: '{form.field.transition.duration}' + }, + icon: { + size: '0.875rem', + color: '{form.field.color}', + checkedColor: '{primary.contrast.color}', + checkedHoverColor: '{primary.contrast.color}', + disabledColor: '{form.field.disabled.color}' + }, + css: ({ dt }) => ` +.p-checkbox { + border-radius: 50%; + transition: box-shadow ${dt('checkbox.transition.duration')}; +} + +.p-checkbox-box { + border-width: 2px; +} + +.p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 96%); +} + +.p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 88%); +} + +.p-checkbox-checked:not(.p-disabled):has(.p-checkbox-input:hover) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('checkbox.checked.background')}, transparent 92%); +} + +.p-checkbox-checked:not(.p-disabled):has(.p-checkbox-input:focus-visible) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('checkbox.checked.background')}, transparent 84%); +} + +.p-checkbox-checked .p-checkbox-box:before { + content: ""; + position: absolute; + top: 8px; + left: 2px; + border-right: 2px solid transparent; + border-bottom: 2px solid transparent; + transform: rotate(45deg); + transform-origin: 0% 100%; + animation: p-md-check 125ms 50ms linear forwards; +} + +.p-checkbox-checked .p-checkbox-icon { + display: none; +} + +@keyframes p-md-check { + 0%{ + width: 0; + height: 0; + border-color: ${dt('checkbox.icon.checked.color')}; + transform: translate3d(0,0,0) rotate(45deg); + } + 33%{ + width: 4px; + height: 0; + transform: translate3d(0,0,0) rotate(45deg); + } + 100%{ + width: 4px; + height: 10px; + border-color: ${dt('checkbox.icon.checked.color')}; + transform: translate3d(0,-10px,0) rotate(45deg); + } +} +` +}; diff --git a/src/app/components/themes/material/chip/index.ts b/src/app/components/themes/material/chip/index.ts new file mode 100644 index 00000000000..ed170957836 --- /dev/null +++ b/src/app/components/themes/material/chip/index.ts @@ -0,0 +1,57 @@ +export default { + root: { + borderRadius: '2rem', + paddingX: '0.75rem', + paddingY: '0.75rem', + gap: '0.5rem', + transitionDuration: '{transition.duration}' + }, + image: { + width: '2.25rem', + height: '2.25rem' + }, + icon: { + size: '1rem' + }, + removeIcon: { + size: '1rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}' + } + }, + colorScheme: { + light: { + root: { + background: '{surface.200}', + color: '{surface.900}' + }, + icon: { + color: '{surface.600}' + }, + removeIcon: { + color: '{surface.600}', + focusRing: { + shadow: '0 0 1px 4px {surface.300}' + } + } + }, + dark: { + root: { + background: '{surface.700}', + color: '{surface.0}' + }, + icon: { + color: '{surface.0}' + }, + removeIcon: { + color: '{surface.0}', + focusRing: { + shadow: '0 0 1px 4px {surface.600}' + } + } + } + } +}; diff --git a/src/app/components/themes/material/colorpicker/index.ts b/src/app/components/themes/material/colorpicker/index.ts new file mode 100644 index 00000000000..d048be88f9a --- /dev/null +++ b/src/app/components/themes/material/colorpicker/index.ts @@ -0,0 +1,41 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + preview: { + width: '2rem', + height: '2rem', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + panel: { + shadow: '{overlay.popover.shadow}', + borderRadius: '{overlay.popover.borderRadius}' + }, + colorScheme: { + light: { + panel: { + background: '{surface.800}', + borderColor: '{surface.900}' + }, + handle: { + color: '{surface.0}' + } + }, + dark: { + panel: { + background: '{surface.900}', + borderColor: '{surface.700}' + }, + handle: { + color: '{surface.0}' + } + } + } +}; diff --git a/src/app/components/themes/material/confirmdialog/index.ts b/src/app/components/themes/material/confirmdialog/index.ts new file mode 100644 index 00000000000..1450b9f6eee --- /dev/null +++ b/src/app/components/themes/material/confirmdialog/index.ts @@ -0,0 +1,9 @@ +export default { + icon: { + size: '2rem', + color: '{overlay.modal.color}' + }, + content: { + gap: '1rem' + } +}; diff --git a/src/app/components/themes/material/confirmpopup/index.ts b/src/app/components/themes/material/confirmpopup/index.ts new file mode 100644 index 00000000000..ef19adc8730 --- /dev/null +++ b/src/app/components/themes/material/confirmpopup/index.ts @@ -0,0 +1,23 @@ +export default { + root: { + background: '{overlay.popover.background}', + borderColor: '{overlay.popover.border.color}', + color: '{overlay.popover.color}', + borderRadius: '{overlay.popover.border.radius}', + shadow: '{overlay.popover.shadow}', + gutter: '10px', + arrowOffset: '1.25rem' + }, + content: { + padding: '{overlay.popover.padding}', + gap: '1rem' + }, + icon: { + size: '1.5rem', + color: '{overlay.popover.color}' + }, + footer: { + gap: '0.5rem', + padding: '0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}' + } +}; diff --git a/src/app/components/themes/material/contextmenu/index.ts b/src/app/components/themes/material/contextmenu/index.ts new file mode 100644 index 00000000000..0ba95dcd8d7 --- /dev/null +++ b/src/app/components/themes/material/contextmenu/index.ts @@ -0,0 +1,41 @@ +export default { + root: { + background: '{content.background}', + borderColor: 'transparent', + color: '{content.color}', + borderRadius: '{content.border.radius}', + shadow: '{overlay.navigation.shadow}', + transitionDuration: '{transition.duration}' + }, + list: { + padding: '{navigation.list.padding}', + gap: '{navigation.list.gap}' + }, + item: { + focusBackground: '{navigation.item.focus.background}', + activeBackground: '{navigation.item.active.background}', + color: '{navigation.item.color}', + focusColor: '{navigation.item.focus.color}', + activeColor: '{navigation.item.active.color}', + padding: '{navigation.item.padding}', + borderRadius: '{navigation.item.border.radius}', + gap: '{navigation.item.gap}', + icon: { + color: '{navigation.item.icon.color}', + focusColor: '{navigation.item.icon.focus.color}', + activeColor: '{navigation.item.icon.active.color}' + } + }, + submenu: { + mobileIndent: '1rem' + }, + submenuIcon: { + size: '{navigation.submenu.icon.size}', + color: '{navigation.submenu.icon.color}', + focusColor: '{navigation.submenu.icon.focus.color}', + activeColor: '{navigation.submenu.icon.active.color}' + }, + separator: { + borderColor: '{content.border.color}' + } +}; diff --git a/src/app/components/themes/material/datatable/index.ts b/src/app/components/themes/material/datatable/index.ts new file mode 100644 index 00000000000..de7c4bb2263 --- /dev/null +++ b/src/app/components/themes/material/datatable/index.ts @@ -0,0 +1,178 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + header: { + background: '{content.background}', + borderColor: '{datatable.border.color}', + color: '{content.color}', + borderWidth: '0 0 1px 0', + padding: '0.75rem 1rem' + }, + headerCell: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + borderColor: '{datatable.border.color}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + selectedColor: '{highlight.color}', + gap: '0.5rem', + padding: '0.75rem 1rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '-1px', + shadow: '{focus.ring.shadow}' + } + }, + columnTitle: { + fontWeight: '600' + }, + row: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + selectedColor: '{highlight.color}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '-1px', + shadow: '{focus.ring.shadow}' + } + }, + bodyCell: { + borderColor: '{datatable.border.color}', + padding: '0.75rem 1rem' + }, + footerCell: { + background: '{content.background}', + borderColor: '{datatable.border.color}', + color: '{content.color}', + padding: '0.75rem 1rem' + }, + columnFooter: { + fontWeight: '600' + }, + footer: { + background: '{content.background}', + borderColor: '{datatable.border.color}', + color: '{content.color}', + borderWidth: '0 0 1px 0', + padding: '0.75rem 1rem' + }, + dropPoint: { + color: '{primary.color}' + }, + columnResizerWidth: '0.5rem', + resizeIndicator: { + width: '1px', + color: '{primary.color}' + }, + sortIcon: { + color: '{text.muted.color}', + hoverColor: '{text.hover.muted.color}', + size: '0.875rem' + }, + loadingIcon: { + size: '2rem' + }, + rowToggleButton: { + hoverBackground: '{content.hover.background}', + selectedHoverBackground: '{content.background}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + selectedHoverColor: '{primary.color}', + size: '1.75rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + filter: { + inlineGap: '0.5rem', + overlaySelect: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}' + }, + overlayPopover: { + background: '{overlay.popover.background}', + borderColor: '{overlay.popover.border.color}', + borderRadius: '{overlay.popover.border.radius}', + color: '{overlay.popover.color}', + shadow: '{overlay.popover.shadow}', + padding: '{overlay.popover.padding}', + gap: '0.5rem' + }, + rule: { + borderColor: '{content.border.color}' + }, + constraintList: { + padding: '{list.padding}', + gap: '{list.gap}' + }, + constraint: { + focusBackground: '{list.option.focus.background}', + selectedBackground: '{list.option.selected.background}', + selectedFocusBackground: '{list.option.selected.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + selectedColor: '{list.option.selected.color}', + selectedFocusColor: '{list.option.selected.focus.color}', + separator: { + borderColor: '{content.border.color}' + }, + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}' + } + }, + paginatorTop: { + borderColor: '{datatable.border.color}', + borderWidth: '0 0 1px 0' + }, + paginatorBottom: { + borderColor: '{datatable.border.color}', + borderWidth: '0 0 1px 0' + }, + colorScheme: { + light: { + root: { + borderColor: '{content.border.color}' + }, + row: { + stripedBackground: '{surface.50}' + }, + bodyCell: { + selectedBorderColor: '{primary.100}' + } + }, + dark: { + root: { + borderColor: '{surface.800}' + }, + row: { + stripedBackground: '{surface.950}' + }, + bodyCell: { + selectedBorderColor: '{primary.900}' + } + } + }, + css: ({ dt }) => ` +.p-datatable-header-cell, +.p-datatable-tbody > tr { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/dataview/index.ts b/src/app/components/themes/material/dataview/index.ts new file mode 100644 index 00000000000..3dd89718114 --- /dev/null +++ b/src/app/components/themes/material/dataview/index.ts @@ -0,0 +1,40 @@ +export default { + root: { + borderColor: 'transparent', + borderWidth: '0', + borderRadius: '0', + padding: '0' + }, + header: { + background: '{content.background}', + color: '{content.color}', + borderColor: '{content.border.color}', + borderWidth: '0 0 1px 0', + padding: '0.75rem 1rem', + borderRadius: '0' + }, + content: { + background: '{content.background}', + color: '{content.color}', + borderColor: 'transparent', + borderWidth: '0', + padding: '0', + borderRadius: '0' + }, + footer: { + background: '{content.background}', + color: '{content.color}', + borderColor: '{content.border.color}', + borderWidth: '1px 0 0 0', + padding: '0.75rem 1rem', + borderRadius: '0' + }, + paginatorTop: { + borderColor: '{content.border.color}', + borderWidth: '0 0 1px 0' + }, + paginatorBottom: { + borderColor: '{content.border.color}', + borderWidth: '1px 0 0 0' + } +}; diff --git a/src/app/components/themes/material/datepicker/index.ts b/src/app/components/themes/material/datepicker/index.ts new file mode 100644 index 00000000000..4e4e566b170 --- /dev/null +++ b/src/app/components/themes/material/datepicker/index.ts @@ -0,0 +1,180 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + panel: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + borderRadius: '{content.border.radius}', + shadow: '{overlay.popover.shadow}', + padding: '0.5rem' + }, + header: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + padding: '0 0 0.5rem 0', + fontWeight: '500', + gap: '0.5rem' + }, + title: { + gap: '0.5rem', + fontWeight: '700' + }, + dropdown: { + width: '3rem', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.border.color}', + activeBorderColor: '{form.field.border.color}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'nıne' + } + }, + inputIcon: { + color: '{form.field.icon.color}' + }, + selectMonth: { + hoverBackground: '{content.hover.background}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + padding: '0.5rem 0.75rem', + borderRadius: '{content.border.radius}' + }, + selectYear: { + hoverBackground: '{content.hover.background}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + padding: '0.5rem 0.75rem', + borderRadius: '{content.border.radius}' + }, + group: { + borderColor: '{content.border.color}', + gap: '{overlay.popover.padding}' + }, + dayView: { + margin: '0.5rem 0 0 0' + }, + weekDay: { + padding: '0.5rem', + fontWeight: '700', + color: '{content.color}' + }, + date: { + hoverBackground: '{content.hover.background}', + selectedBackground: '{primary.color}', + rangeSelectedBackground: '{highlight.background}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + selectedColor: '{primary.contrast.color}', + rangeSelectedColor: '{highlight.color}', + width: '2.5rem', + height: '2.5rem', + borderRadius: '50%', + padding: '0.125rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + monthView: { + margin: '0.5rem 0 0 0' + }, + month: { + padding: '0.625rem', + borderRadius: '{content.border.radius}' + }, + yearView: { + margin: '0.5rem 0 0 0' + }, + year: { + padding: '0.625rem', + borderRadius: '{content.border.radius}' + }, + buttonbar: { + padding: '0.5rem 0 0 0', + borderColor: '{content.border.color}' + }, + timePicker: { + padding: '0.5rem 0 0 0', + borderColor: '{content.border.color}', + gap: '0.5rem', + buttonGap: '0.25rem' + }, + colorScheme: { + light: { + dropdown: { + background: '{surface.100}', + hoverBackground: '{surface.200}', + activeBackground: '{surface.300}', + color: '{surface.600}', + hoverColor: '{surface.700}', + activeColor: '{surface.800}' + }, + today: { + background: '{surface.200}', + color: '{surface.900}' + } + }, + dark: { + dropdown: { + background: '{surface.800}', + hoverBackground: '{surface.700}', + activeBackground: '{surface.600}', + color: '{surface.300}', + hoverColor: '{surface.200}', + activeColor: '{surface.100}' + }, + today: { + background: '{surface.700}', + color: '{surface.0}' + } + } + }, + css: ({ dt }) => ` +.p-datepicker-header { + justify-content: start; +} + +.p-datepicker-title { + order: 1; +} + +.p-datepicker-prev-button { + order: 2; + margin-inline-start: auto; +} + +.p-datepicker-next-button { + order: 2; + margin-inline-start: 0.5rem; +} + +.p-datepicker-select-month:focus-visible { + background: ${dt('datepicker.select.month.hover.background')}; + color: ${dt('datepicker.select.month.hover.color')}; + outline: 0 none; +} + +.p-datepicker-select-year:focus-visible { + background: ${dt('datepicker.select.year.hover.background')}; + color: ${dt('datepicker.select.year.hover.color')}; + outline: 0 none; +} + +.p-datepicker-dropdown:focus-visible { + outline: 0 none; + background: ${dt('datepicker.dropdown.hover.background')}; + border-color: ${dt('datepicker.dropdown.hover.border.color')}; + color: ${dt('datepicker.dropdown.hover.color')}; +} +` +}; diff --git a/src/app/components/themes/material/dialog/index.ts b/src/app/components/themes/material/dialog/index.ts new file mode 100644 index 00000000000..235086e72a0 --- /dev/null +++ b/src/app/components/themes/material/dialog/index.ts @@ -0,0 +1,24 @@ +export default { + root: { + background: '{overlay.modal.background}', + borderColor: '{overlay.modal.border.color}', + color: '{overlay.modal.color}', + borderRadius: '{overlay.modal.border.radius}', + shadow: '{overlay.modal.shadow}' + }, + header: { + padding: '{overlay.modal.padding}', + gap: '0.5rem' + }, + title: { + fontSize: '1.25rem', + fontWeight: '600' + }, + content: { + padding: '0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}' + }, + footer: { + padding: '0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}', + gap: '0.5rem' + } +}; diff --git a/src/app/components/themes/material/divider/index.ts b/src/app/components/themes/material/divider/index.ts new file mode 100644 index 00000000000..ed6549b97d2 --- /dev/null +++ b/src/app/components/themes/material/divider/index.ts @@ -0,0 +1,23 @@ +export default { + root: { + borderColor: '{content.border.color}' + }, + content: { + background: '{content.background}', + color: '{text.color}' + }, + horizontal: { + margin: '1rem 0', + padding: '0 1rem', + content: { + padding: '0 0.5rem' + } + }, + vertical: { + margin: '0 1rem', + padding: '0.5rem 0', + content: { + padding: '0.5rem 0' + } + } +}; diff --git a/src/app/components/themes/material/dock/index.ts b/src/app/components/themes/material/dock/index.ts new file mode 100644 index 00000000000..19548ace867 --- /dev/null +++ b/src/app/components/themes/material/dock/index.ts @@ -0,0 +1,20 @@ +export default { + root: { + background: 'rgba(255, 255, 255, 0.1)', + borderColor: 'rgba(255, 255, 255, 0.2)', + padding: '0.5rem', + borderRadius: '{border.radius.xl}' + }, + item: { + borderRadius: '{content.border.radius}', + padding: '0.5rem', + size: '3rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + } +}; diff --git a/src/app/components/themes/material/drawer/index.ts b/src/app/components/themes/material/drawer/index.ts new file mode 100644 index 00000000000..c1b87464252 --- /dev/null +++ b/src/app/components/themes/material/drawer/index.ts @@ -0,0 +1,19 @@ +export default { + root: { + background: '{overlay.modal.background}', + borderColor: '{overlay.modal.border.color}', + color: '{overlay.modal.color}', + borderRadius: '{overlay.modal.border.radius}', + shadow: '{overlay.modal.shadow}' + }, + header: { + padding: '{overlay.modal.padding}' + }, + title: { + fontSize: '1.5rem', + fontWeight: '600' + }, + content: { + padding: '0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}' + } +}; diff --git a/src/app/components/themes/material/editor/index.ts b/src/app/components/themes/material/editor/index.ts new file mode 100644 index 00000000000..61c1ce28ba0 --- /dev/null +++ b/src/app/components/themes/material/editor/index.ts @@ -0,0 +1,38 @@ +export default { + toolbar: { + background: '{content.background}', + borderColor: '{content.border.color}', + borderRadius: '{content.border.radius}' + }, + toolbarItem: { + color: '{text.muted.color}', + hoverColor: '{text.color}', + activeColor: '{primary.color}' + }, + overlay: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}', + padding: '{list.padding}' + }, + overlayOption: { + focusBackground: '{list.option.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}' + }, + content: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + borderRadius: '{content.border.radius}' + }, + css: ({ dt }) => ` +.p-editor .p-editor-toolbar { + padding: 0.75rem +} +` +}; diff --git a/src/app/components/themes/material/fieldset/index.ts b/src/app/components/themes/material/fieldset/index.ts new file mode 100644 index 00000000000..8231ddbebd6 --- /dev/null +++ b/src/app/components/themes/material/fieldset/index.ts @@ -0,0 +1,42 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + borderRadius: '{content.border.radius}', + color: '{content.color}', + padding: '0 1.25rem 1.25rem 1.25rem', + transitionDuration: '{transition.duration}' + }, + legend: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + borderRadius: '{content.border.radius}', + borderWidth: '1px', + borderColor: 'transparent', + padding: '0.75rem 1rem', + gap: '0.5rem', + fontWeight: '600', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + toggleIcon: { + color: '{text.muted.color}', + hoverColor: '{text.hover.muted.color}' + }, + content: { + padding: '0' + }, + css: ({ dt }) => ` +.p-fieldset-toggle-button:focus-visible { + background: ${dt('navigation.item.active.background')}; + +} +` +}; diff --git a/src/app/components/themes/material/fileupload/index.ts b/src/app/components/themes/material/fileupload/index.ts new file mode 100644 index 00000000000..b8596750a69 --- /dev/null +++ b/src/app/components/themes/material/fileupload/index.ts @@ -0,0 +1,35 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + borderRadius: '{content.border.radius}', + transitionDuration: '{transition.duration}' + }, + header: { + background: 'transparent', + color: '{text.color}', + padding: '1.25rem', + borderWidth: '0', + borderRadius: '0', + gap: '0.5rem' + }, + content: { + highlightBorderColor: '{primary.color}', + padding: '0 1.25rem 1.25rem 1.25rem' + }, + file: { + padding: '1rem', + gap: '1rem', + borderColor: '{content.border.color}', + info: { + gap: '0.5rem' + } + }, + progressbar: { + height: '0.25rem' + }, + basic: { + gap: '0.5rem' + } +}; diff --git a/src/app/components/themes/material/floatlabel/index.ts b/src/app/components/themes/material/floatlabel/index.ts new file mode 100644 index 00000000000..a2e111e37f2 --- /dev/null +++ b/src/app/components/themes/material/floatlabel/index.ts @@ -0,0 +1,37 @@ +export default { + root: { + color: '{form.field.float.label.color}', + focusColor: '{form.field.float.label.focus.color}', + activeColor: '{form.field.float.label.active.color}', + invalidColor: '{form.field.float.label.invalid.color}', + transitionDuration: '0.2s', + positionX: '{form.field.padding.x}', + positionY: '{form.field.padding.y}', + fontWeight: '500', + active: { + fontSize: '0.75rem', + fontWeight: '400' + } + }, + over: { + active: { + top: '-1.25rem' + } + }, + in: { + input: { + paddingTop: '1.5rem', + paddingBottom: '0.5rem' + }, + active: { + top: '0.5rem' + } + }, + on: { + borderRadius: '{border.radius.xs}', + active: { + background: '{form.field.background}', + padding: '0 0.125rem' + } + } +}; diff --git a/src/app/components/themes/material/galleria/index.ts b/src/app/components/themes/material/galleria/index.ts new file mode 100644 index 00000000000..cff8f596111 --- /dev/null +++ b/src/app/components/themes/material/galleria/index.ts @@ -0,0 +1,128 @@ +export default { + root: { + borderWidth: '1px', + borderColor: '{content.border.color}', + borderRadius: '{content.border.radius}', + transitionDuration: '{transition.duration}' + }, + navButton: { + background: 'rgba(255, 255, 255, 0.1)', + hoverBackground: 'rgba(255, 255, 255, 0.2)', + color: '{surface.100}', + hoverColor: '{surface.0}', + size: '3rem', + gutter: '0.5rem', + prev: { + borderRadius: '50%' + }, + next: { + borderRadius: '50%' + }, + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + navIcon: { + size: '1.5rem' + }, + thumbnailsContent: { + background: '{content.background}', + padding: '1rem 0.25rem' + }, + thumbnailNavButton: { + size: '2rem', + borderRadius: '50%', + gutter: '0.5rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + thumbnailNavButtonIcon: { + size: '1rem' + }, + caption: { + background: 'rgba(0, 0, 0, 0.5)', + color: '{surface.100}', + padding: '1rem' + }, + indicatorList: { + gap: '0.5rem', + padding: '1rem' + }, + indicatorButton: { + width: '1rem', + height: '1rem', + activeBackground: '{primary.color}', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + insetIndicatorList: { + background: 'rgba(0, 0, 0, 0.5)' + }, + insetIndicatorButton: { + background: 'rgba(255, 255, 255, 0.4)', + hoverBackground: 'rgba(255, 255, 255, 0.6)', + activeBackground: 'rgba(255, 255, 255, 0.9)' + }, + mask: { + background: '{mask.background}', + color: '{mask.color}' + }, + closeButton: { + size: '3rem', + gutter: '0.5rem', + background: 'rgba(255, 255, 255, 0.1)', + hoverBackground: 'rgba(255, 255, 255, 0.2)', + color: '{surface.50}', + hoverColor: '{surface.0}', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + closeButtonIcon: { + size: '1.5rem' + }, + colorScheme: { + light: { + thumbnailNavButton: { + hoverBackground: '{surface.100}', + color: '{surface.600}', + hoverColor: '{surface.700}' + }, + indicatorButton: { + background: '{surface.200}', + hoverBackground: '{surface.300}' + } + }, + dark: { + thumbnailNavButton: { + hoverBackground: '{surface.700}', + color: '{surface.400}', + hoverColor: '{surface.0}' + }, + indicatorButton: { + background: '{surface.700}', + hoverBackground: '{surface.600}' + } + } + } +}; diff --git a/src/app/components/themes/material/iconfield/index.ts b/src/app/components/themes/material/iconfield/index.ts new file mode 100644 index 00000000000..1e0102d5f7f --- /dev/null +++ b/src/app/components/themes/material/iconfield/index.ts @@ -0,0 +1,5 @@ +export default { + icon: { + color: '{form.field.icon.color}' + } +}; diff --git a/src/app/components/themes/material/iftalabel/index.ts b/src/app/components/themes/material/iftalabel/index.ts new file mode 100644 index 00000000000..2db75dc03cd --- /dev/null +++ b/src/app/components/themes/material/iftalabel/index.ts @@ -0,0 +1,16 @@ +export default { + root: { + color: '{form.field.float.label.color}', + focusColor: '{form.field.float.label.focus.color}', + invalidColor: '{form.field.float.label.invalid.color}', + transitionDuration: '0.2s', + positionX: '{form.field.padding.x}', + top: '0.5rem', + fontSize: '0.75rem', + fontWeight: '400' + }, + input: { + paddingTop: '1.5rem', + paddingBottom: '0.5rem' + } +}; diff --git a/src/app/components/themes/material/image/index.ts b/src/app/components/themes/material/image/index.ts new file mode 100644 index 00000000000..ca282590d3f --- /dev/null +++ b/src/app/components/themes/material/image/index.ts @@ -0,0 +1,44 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + preview: { + icon: { + size: '1.5rem' + }, + mask: { + background: '{mask.background}', + color: '{mask.color}' + } + }, + toolbar: { + position: { + left: 'auto', + right: '1rem', + top: '1rem', + bottom: 'auto' + }, + blur: '8px', + background: 'rgba(255,255,255,0.1)', + borderColor: 'rgba(255,255,255,0.2)', + borderWidth: '1px', + borderRadius: '30px', + padding: '.5rem', + gap: '0.5rem' + }, + action: { + hoverBackground: 'rgba(255,255,255,0.1)', + color: '{surface.50}', + hoverColor: '{surface.0}', + size: '3rem', + iconSize: '1.5rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + } +}; diff --git a/src/app/components/themes/material/imagecompare/index.ts b/src/app/components/themes/material/imagecompare/index.ts new file mode 100644 index 00000000000..1c873f85933 --- /dev/null +++ b/src/app/components/themes/material/imagecompare/index.ts @@ -0,0 +1,20 @@ +export default { + handle: { + size: '20px', + hoverSize: '40px', + background: 'rgba(255,255,255,0.4)', + hoverBackground: 'rgba(255,255,255,0.6)', + borderColor: 'unset', + hoverBorderColor: 'unset', + borderWidth: '0', + borderRadius: '50%', + transitionDuration: '{transition.duration}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: 'rgba(255,255,255,0.3)', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + } +}; diff --git a/src/app/components/themes/material/inlinemessage/index.ts b/src/app/components/themes/material/inlinemessage/index.ts new file mode 100644 index 00000000000..526ebf3f6de --- /dev/null +++ b/src/app/components/themes/material/inlinemessage/index.ts @@ -0,0 +1,91 @@ +export default { + root: { + padding: '{form.field.padding.y} {form.field.padding.x}', + borderRadius: '{content.border.radius}', + gap: '0.5rem' + }, + text: { + fontWeight: '500' + }, + icon: { + size: '1rem' + }, + colorScheme: { + light: { + info: { + background: 'color-mix(in srgb, {blue.50}, transparent 5%)', + borderColor: '{blue.200}', + color: '{blue.600}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)' + }, + success: { + background: 'color-mix(in srgb, {green.50}, transparent 5%)', + borderColor: '{green.200}', + color: '{green.600}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)' + }, + warn: { + background: 'color-mix(in srgb,{yellow.50}, transparent 5%)', + borderColor: '{yellow.200}', + color: '{yellow.600}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)' + }, + error: { + background: 'color-mix(in srgb, {red.50}, transparent 5%)', + borderColor: '{red.200}', + color: '{red.600}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)' + }, + secondary: { + background: '{surface.100}', + borderColor: '{surface.200}', + color: '{surface.600}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)' + }, + contrast: { + background: '{surface.900}', + borderColor: '{surface.950}', + color: '{surface.50}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)' + } + }, + dark: { + info: { + background: 'color-mix(in srgb, {blue.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {blue.700}, transparent 64%)', + color: '{blue.500}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)' + }, + success: { + background: 'color-mix(in srgb, {green.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {green.700}, transparent 64%)', + color: '{green.500}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)' + }, + warn: { + background: 'color-mix(in srgb, {yellow.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {yellow.700}, transparent 64%)', + color: '{yellow.500}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)' + }, + error: { + background: 'color-mix(in srgb, {red.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {red.700}, transparent 64%)', + color: '{red.500}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)' + }, + secondary: { + background: '{surface.800}', + borderColor: '{surface.700}', + color: '{surface.300}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)' + }, + contrast: { + background: '{surface.0}', + borderColor: '{surface.100}', + color: '{surface.950}', + shadow: '0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)' + } + } + } +}; diff --git a/src/app/components/themes/material/inplace/index.ts b/src/app/components/themes/material/inplace/index.ts new file mode 100644 index 00000000000..9b7db490017 --- /dev/null +++ b/src/app/components/themes/material/inplace/index.ts @@ -0,0 +1,18 @@ +export default { + root: { + padding: '{form.field.padding.y} {form.field.padding.x}', + borderRadius: '{content.border.radius}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + }, + transitionDuration: '{transition.duration}' + }, + display: { + hoverBackground: '{content.hover.background}', + hoverColor: '{content.hover.color}' + } +}; diff --git a/src/app/components/themes/material/inputchips/index.ts b/src/app/components/themes/material/inputchips/index.ts new file mode 100644 index 00000000000..85548fc9f0a --- /dev/null +++ b/src/app/components/themes/material/inputchips/index.ts @@ -0,0 +1,44 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + chip: { + borderRadius: '{border.radius.sm}' + }, + colorScheme: { + light: { + chip: { + focusBackground: '{surface.200}', + color: '{surface.800}' + } + }, + dark: { + chip: { + focusBackground: '{surface.700}', + color: '{surface.0}' + } + } + } +}; diff --git a/src/app/components/themes/material/inputgroup/index.ts b/src/app/components/themes/material/inputgroup/index.ts new file mode 100644 index 00000000000..27d96c12eb4 --- /dev/null +++ b/src/app/components/themes/material/inputgroup/index.ts @@ -0,0 +1,10 @@ +export default { + addon: { + background: '{form.field.background}', + borderColor: '{form.field.border.color}', + color: '{form.field.icon.color}', + borderRadius: '{form.field.border.radius}', + padding: '0.75rem', + minWidth: '3rem' + } +}; diff --git a/src/app/components/themes/material/inputnumber/index.ts b/src/app/components/themes/material/inputnumber/index.ts new file mode 100644 index 00000000000..ed3d043c208 --- /dev/null +++ b/src/app/components/themes/material/inputnumber/index.ts @@ -0,0 +1,45 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + button: { + width: '3rem', + borderRadius: '{form.field.border.radius}', + verticalPadding: '{form.field.padding.y}' + }, + colorScheme: { + light: { + button: { + background: 'transparent', + hoverBackground: '{surface.100}', + activeBackground: '{surface.200}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.border.color}', + activeBorderColor: '{form.field.border.color}', + color: '{surface.400}', + hoverColor: '{surface.500}', + activeColor: '{surface.600}' + } + }, + dark: { + button: { + background: 'transparent', + hoverBackground: '{surface.800}', + activeBackground: '{surface.700}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.border.color}', + activeBorderColor: '{form.field.border.color}', + color: '{surface.400}', + hoverColor: '{surface.300}', + activeColor: '{surface.200}' + } + } + }, + css: ({ dt }) => ` +.p-inputnumber-stacked .p-inputnumber-button-group { + top: 2px; + right: 2px; + height: calc(100% - 4px); +} +` +}; diff --git a/src/app/components/themes/material/inputtext/index.ts b/src/app/components/themes/material/inputtext/index.ts new file mode 100644 index 00000000000..00b1ff0e17a --- /dev/null +++ b/src/app/components/themes/material/inputtext/index.ts @@ -0,0 +1,82 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledHoverBackground: '{form.field.filled.hover.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}', + sm: { + fontSize: '0.875rem', + paddingX: '0.625rem', + paddingY: '0.625rem' + }, + lg: { + fontSize: '1.125rem', + paddingX: '1rem', + paddingY: '1rem' + } + }, + css: ({ dt }) => ` +.p-inputtext.p-variant-filled { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid transparent; + background: ${dt('inputtext.filled.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('inputtext.focus.border.color')}, ${dt('inputtext.focus.border.color')}), linear-gradient(to bottom, ${dt('inputtext.border.color')}, ${dt('inputtext.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.p-inputtext.p-variant-filled:enabled:hover { + background: ${dt('inputtext.filled.hover.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('inputtext.focus.border.color')}, ${dt('inputtext.focus.border.color')}), linear-gradient(to bottom, ${dt('inputtext.hover.border.color')}, ${dt('inputtext.hover.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-inputtext.p-variant-filled:enabled:focus { + outline: 0 none; + background: ${dt('inputtext.filled.focus.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('inputtext.focus.border.color')}, ${dt('inputtext.focus.border.color')}), linear-gradient(to bottom, ${dt('inputtext.border.color')}, ${dt('inputtext.border.color')}); + background-size: 100% 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-inputtext.p-variant-filled:enabled:hover:focus { + background-image: linear-gradient(to bottom, ${dt('inputtext.focus.border.color')}, ${dt('inputtext.focus.border.color')}), linear-gradient(to bottom, ${dt('inputtext.hover.border.color')}, ${dt('inputtext.hover.border.color')}); +} + +.p-inputtext.p-variant-filled.p-invalid { + background-image: linear-gradient(to bottom, ${dt('inputtext.invalid.border.color')}, ${dt('inputtext.invalid.border.color')}), linear-gradient(to bottom, ${dt('inputtext.invalid.border.color')}, ${dt('inputtext.invalid.border.color')}); +} + +.p-inputtext.p-variant-filled.p-invalid:enabled:focus { + background-image: linear-gradient(to bottom, ${dt('inputtext.invalid.border.color')}, ${dt('inputtext.invalid.border.color')}), linear-gradient(to bottom, ${dt('inputtext.invalid.border.color')}, ${dt('inputtext.invalid.border.color')}); +} +` +}; diff --git a/src/app/components/themes/material/knob/index.ts b/src/app/components/themes/material/knob/index.ts new file mode 100644 index 00000000000..e42b85c7a5c --- /dev/null +++ b/src/app/components/themes/material/knob/index.ts @@ -0,0 +1,21 @@ +export default { + root: { + transitionDuration: '{transition.duration}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + value: { + background: '{primary.color}' + }, + range: { + background: '{content.border.color}' + }, + text: { + color: '{text.muted.color}' + } +}; diff --git a/src/app/components/themes/material/listbox/index.ts b/src/app/components/themes/material/listbox/index.ts new file mode 100644 index 00000000000..f0eacb2f238 --- /dev/null +++ b/src/app/components/themes/material/listbox/index.ts @@ -0,0 +1,71 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + shadow: '{form.field.shadow}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + list: { + padding: '{list.padding}', + gap: '{list.gap}', + header: { + padding: '{list.header.padding}' + } + }, + option: { + focusBackground: '{list.option.focus.background}', + selectedBackground: '{list.option.selected.background}', + selectedFocusBackground: '{list.option.selected.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + selectedColor: '{list.option.selected.color}', + selectedFocusColor: '{list.option.selected.focus.color}', + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}' + }, + optionGroup: { + background: '{list.option.group.background}', + color: '{list.option.group.color}', + fontWeight: '{list.option.group.font.weight}', + padding: '{list.option.group.padding}' + }, + checkmark: { + color: '{list.option.color}', + gutterStart: '-0.375rem', + gutterEnd: '0.375rem' + }, + emptyMessage: { + padding: '{list.option.padding}' + }, + colorScheme: { + light: { + option: { + stripedBackground: '{surface.50}' + } + }, + dark: { + option: { + stripedBackground: '{surface.900}' + } + } + }, + css: ({ dt }) => ` +.p-listbox-option { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/megamenu/index.ts b/src/app/components/themes/material/megamenu/index.ts new file mode 100644 index 00000000000..6cf065496d0 --- /dev/null +++ b/src/app/components/themes/material/megamenu/index.ts @@ -0,0 +1,84 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + borderRadius: '{content.border.radius}', + color: '{content.color}', + gap: '0.5rem', + verticalOrientation: { + padding: '{navigation.list.padding}', + gap: '{navigation.list.gap}' + }, + horizontalOrientation: { + padding: '0.5rem 0.75rem', + gap: '0.5rem' + }, + transitionDuration: '{transition.duration}' + }, + baseItem: { + borderRadius: '{content.border.radius}', + padding: '{navigation.item.padding}' + }, + item: { + focusBackground: '{navigation.item.focus.background}', + activeBackground: '{navigation.item.active.background}', + color: '{navigation.item.color}', + focusColor: '{navigation.item.focus.color}', + activeColor: '{navigation.item.active.color}', + padding: '{navigation.item.padding}', + borderRadius: '{navigation.item.border.radius}', + gap: '{navigation.item.gap}', + icon: { + color: '{navigation.item.icon.color}', + focusColor: '{navigation.item.icon.focus.color}', + activeColor: '{navigation.item.icon.active.color}' + } + }, + overlay: { + padding: '0', + background: '{content.background}', + borderColor: 'transparent', + borderRadius: '{content.border.radius}', + color: '{content.color}', + shadow: '{overlay.navigation.shadow}', + gap: '0.5rem' + }, + submenu: { + padding: '{navigation.list.padding}', + gap: '{navigation.list.gap}' + }, + submenuLabel: { + padding: '{navigation.submenu.label.padding}', + fontWeight: '{navigation.submenu.label.font.weight}', + background: '{navigation.submenu.label.background.}', + color: '{navigation.submenu.label.color}' + }, + submenuIcon: { + size: '{navigation.submenu.icon.size}', + color: '{navigation.submenu.icon.color}', + focusColor: '{navigation.submenu.icon.focus.color}', + activeColor: '{navigation.submenu.icon.active.color}' + }, + separator: { + borderColor: '{content.border.color}' + }, + mobileButton: { + borderRadius: '50%', + size: '2.5rem', + color: '{text.muted.color}', + hoverColor: '{text.muted.hover.color}', + hoverBackground: '{content.hover.background}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + css: ({ dt }) => ` +.p-megamenu-button:focus-visible { + background: ${dt('navigation.item.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/menu/index.ts b/src/app/components/themes/material/menu/index.ts new file mode 100644 index 00000000000..b0449c5e966 --- /dev/null +++ b/src/app/components/themes/material/menu/index.ts @@ -0,0 +1,40 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + borderRadius: '{content.border.radius}', + shadow: '{overlay.navigation.shadow}', + transitionDuration: '{transition.duration}' + }, + list: { + padding: '{navigation.list.padding}', + gap: '{navigation.list.gap}' + }, + item: { + focusBackground: '{navigation.item.focus.background}', + color: '{navigation.item.color}', + focusColor: '{navigation.item.focus.color}', + padding: '{navigation.item.padding}', + borderRadius: '{navigation.item.border.radius}', + gap: '{navigation.item.gap}', + icon: { + color: '{navigation.item.icon.color}', + focusColor: '{navigation.item.icon.focus.color}' + } + }, + submenuLabel: { + padding: '{navigation.submenu.label.padding}', + fontWeight: '{navigation.submenu.label.font.weight}', + background: '{navigation.submenu.label.background}', + color: '{navigation.submenu.label.color}' + }, + separator: { + borderColor: '{content.border.color}' + }, + css: ({ dt }) => ` +.p-menu-overlay { + border-color: transparent; +} +` +}; diff --git a/src/app/components/themes/material/menubar/index.ts b/src/app/components/themes/material/menubar/index.ts new file mode 100644 index 00000000000..2196f0577bc --- /dev/null +++ b/src/app/components/themes/material/menubar/index.ts @@ -0,0 +1,67 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + borderRadius: '{content.border.radius}', + color: '{content.color}', + gap: '0.5rem', + padding: '0.5rem 0.75rem', + transitionDuration: '{transition.duration}' + }, + baseItem: { + borderRadius: '{content.border.radius}', + padding: '{navigation.item.padding}' + }, + item: { + focusBackground: '{navigation.item.focus.background}', + activeBackground: '{navigation.item.active.background}', + color: '{navigation.item.color}', + focusColor: '{navigation.item.focus.color}', + activeColor: '{navigation.item.active.color}', + padding: '{navigation.item.padding}', + borderRadius: '{navigation.item.border.radius}', + gap: '{navigation.item.gap}', + icon: { + color: '{navigation.item.icon.color}', + focusColor: '{navigation.item.icon.focus.color}', + activeColor: '{navigation.item.icon.active.color}' + } + }, + submenu: { + padding: '{navigation.list.padding}', + gap: '{navigation.list.gap}', + background: '{content.background}', + borderColor: 'transparent', + borderRadius: '{content.border.radius}', + shadow: '{overlay.navigation.shadow}', + mobileIndent: '1rem' + }, + submenuIcon: { + size: '{navigation.submenu.icon.size}', + color: '{navigation.submenu.icon.color}', + focusColor: '{navigation.submenu.icon.focus.color}', + activeColor: '{navigation.submenu.icon.active.color}' + }, + separator: { + borderColor: '{content.border.color}' + }, + mobileButton: { + borderRadius: '50%', + size: '2.5rem', + color: '{text.muted.color}', + hoverColor: '{text.muted.hover.color}', + hoverBackground: '{content.hover.background}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + css: ({ dt }) => ` +.p-menubar-button:focus-visible { + background: ${dt('navigation.item.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/message/index.ts b/src/app/components/themes/material/message/index.ts new file mode 100644 index 00000000000..1531ab51ff1 --- /dev/null +++ b/src/app/components/themes/material/message/index.ts @@ -0,0 +1,193 @@ +export default { + root: { + borderRadius: '{content.border.radius}', + borderWidth: '0', + transitionDuration: '{transition.duration}' + }, + content: { + padding: '1rem 1.25rem', + gap: '0.5rem' + }, + text: { + fontSize: '1rem', + fontWeight: '500' + }, + icon: { + size: '1.25rem' + }, + closeButton: { + width: '2rem', + height: '2rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + offset: '{focus.ring.offset}' + } + }, + closeIcon: { + size: '1rem' + }, + colorScheme: { + light: { + info: { + background: 'color-mix(in srgb, {blue.50}, transparent 5%)', + borderColor: '{blue.200}', + color: '{blue.600}', + shadow: 'none', + closeButton: { + hoverBackground: '{blue.100}', + focusRing: { + color: '{blue.600}', + shadow: 'none' + } + } + }, + success: { + background: 'color-mix(in srgb, {green.50}, transparent 5%)', + borderColor: '{green.200}', + color: '{green.600}', + shadow: 'none', + closeButton: { + hoverBackground: '{green.100}', + focusRing: { + color: '{green.600}', + shadow: 'none' + } + } + }, + warn: { + background: 'color-mix(in srgb,{yellow.50}, transparent 5%)', + borderColor: '{yellow.200}', + color: '{yellow.900}', + shadow: 'none', + closeButton: { + hoverBackground: '{yellow.100}', + focusRing: { + color: '{yellow.600}', + shadow: 'none' + } + } + }, + error: { + background: 'color-mix(in srgb, {red.50}, transparent 5%)', + borderColor: '{red.200}', + color: '{red.600}', + shadow: 'none', + closeButton: { + hoverBackground: '{red.100}', + focusRing: { + color: '{red.600}', + shadow: 'none' + } + } + }, + secondary: { + background: '{surface.100}', + borderColor: '{surface.200}', + color: '{surface.600}', + shadow: 'none', + closeButton: { + hoverBackground: '{surface.200}', + focusRing: { + color: '{surface.600}', + shadow: 'none' + } + } + }, + contrast: { + background: '{surface.900}', + borderColor: '{surface.950}', + color: '{surface.50}', + shadow: 'none', + closeButton: { + hoverBackground: '{surface.800}', + focusRing: { + color: '{surface.50}', + shadow: 'none' + } + } + } + }, + dark: { + info: { + background: 'color-mix(in srgb, {blue.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {blue.700}, transparent 64%)', + color: '{blue.500}', + shadow: 'none', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{blue.500}', + shadow: 'none' + } + } + }, + success: { + background: 'color-mix(in srgb, {green.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {green.700}, transparent 64%)', + color: '{green.500}', + shadow: 'none', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{green.500}', + shadow: 'none' + } + } + }, + warn: { + background: 'color-mix(in srgb, {yellow.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {yellow.700}, transparent 64%)', + color: '{yellow.500}', + shadow: 'none', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{yellow.500}', + shadow: 'none' + } + } + }, + error: { + background: 'color-mix(in srgb, {red.500}, transparent 84%)', + borderColor: 'color-mix(in srgb, {red.700}, transparent 64%)', + color: '{red.500}', + shadow: 'none', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{red.500}', + shadow: 'none' + } + } + }, + secondary: { + background: '{surface.800}', + borderColor: '{surface.700}', + color: '{surface.300}', + shadow: 'none', + closeButton: { + hoverBackground: '{surface.700}', + focusRing: { + color: '{surface.300}', + shadow: 'none' + } + } + }, + contrast: { + background: '{surface.0}', + borderColor: '{surface.100}', + color: '{surface.950}', + shadow: 'none', + closeButton: { + hoverBackground: '{surface.100}', + focusRing: { + color: '{surface.950}', + shadow: 'none' + } + } + } + } + } +}; diff --git a/src/app/components/themes/material/metergroup/index.ts b/src/app/components/themes/material/metergroup/index.ts new file mode 100644 index 00000000000..776f870758e --- /dev/null +++ b/src/app/components/themes/material/metergroup/index.ts @@ -0,0 +1,23 @@ +export default { + root: { + borderRadius: '{content.border.radius}', + gap: '1rem' + }, + meters: { + background: '{content.border.color}', + size: '0.5rem' + }, + label: { + gap: '0.5rem' + }, + labelMarker: { + size: '0.5rem' + }, + labelIcon: { + size: '1rem' + }, + labelList: { + verticalGap: '0.5rem', + horizontalGap: '1rem' + } +}; diff --git a/src/app/components/themes/material/multiselect/index.ts b/src/app/components/themes/material/multiselect/index.ts new file mode 100644 index 00000000000..992aee8ce92 --- /dev/null +++ b/src/app/components/themes/material/multiselect/index.ts @@ -0,0 +1,118 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledHoverBackground: '{form.field.filled.hover.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + dropdown: { + width: '2.5rem', + color: '{form.field.icon.color}' + }, + overlay: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}' + }, + list: { + padding: '{list.padding}', + gap: '{list.gap}', + header: { + padding: '{list.header.padding}' + } + }, + option: { + focusBackground: '{list.option.focus.background}', + selectedBackground: '{list.option.selected.background}', + selectedFocusBackground: '{list.option.selected.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + selectedColor: '{list.option.selected.color}', + selectedFocusColor: '{list.option.selected.focus.color}', + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}', + gap: '0.75rem' + }, + optionGroup: { + background: '{list.option.group.background}', + color: '{list.option.group.color}', + fontWeight: '{list.option.group.font.weight}', + padding: '{list.option.group.padding}' + }, + chip: { + borderRadius: '{border.radius.sm}' + }, + emptyMessage: { + padding: '{list.option.padding}' + }, + css: ({ dt }) => ` +.p-multiselect.p-variant-filled { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid transparent; + background: ${dt('multiselect.filled.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('multiselect.focus.border.color')}, ${dt('multiselect.focus.border.color')}), linear-gradient(to bottom, ${dt('multiselect.border.color')}, ${dt('multiselect.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.p-multiselect.p-variant-filled:not(.p-disabled):hover { + background: ${dt('multiselect.filled.hover.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('multiselect.focus.border.color')}, ${dt('multiselect.focus.border.color')}), linear-gradient(to bottom, ${dt('multiselect.hover.border.color')}, ${dt('multiselect.hover.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-multiselect.p-variant-filled:not(.p-disabled).p-focus { + outline: 0 none; + background: ${dt('multiselect.filled.focus.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('multiselect.focus.border.color')}, ${dt('multiselect.focus.border.color')}), linear-gradient(to bottom, ${dt('multiselect.border.color')}, ${dt('multiselect.border.color')}); + background-size: 100% 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-multiselect.p-variant-filled:not(.p-disabled).p-focus:hover { + background-image: linear-gradient(to bottom, ${dt('multiselect.focus.border.color')}, ${dt('multiselect.focus.border.color')}), linear-gradient(to bottom, ${dt('multiselect.hover.border.color')}, ${dt('multiselect.hover.border.color')}); +} + +.p-multiselect.p-variant-filled.p-invalid { + background-image: linear-gradient(to bottom, ${dt('multiselect.invalid.border.color')}, ${dt('multiselect.invalid.border.color')}), linear-gradient(to bottom, ${dt('multiselect.invalid.border.color')}, ${dt('multiselect.invalid.border.color')}); +} + +.p-multiselect.p-variant-filled.p-invalid:not(.p-disabled).p-focus { + background-image: linear-gradient(to bottom, ${dt('multiselect.invalid.border.color')}, ${dt('multiselect.invalid.border.color')}), linear-gradient(to bottom, ${dt('multiselect.invalid.border.color')}, ${dt('multiselect.invalid.border.color')}); +} + +.p-multiselect-option { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/orderlist/index.ts b/src/app/components/themes/material/orderlist/index.ts new file mode 100644 index 00000000000..bf662105509 --- /dev/null +++ b/src/app/components/themes/material/orderlist/index.ts @@ -0,0 +1,8 @@ +export default { + root: { + gap: '1.125rem' + }, + controls: { + gap: '0.5rem' + } +}; diff --git a/src/app/components/themes/material/organizationchart/index.ts b/src/app/components/themes/material/organizationchart/index.ts new file mode 100644 index 00000000000..397a728f4bc --- /dev/null +++ b/src/app/components/themes/material/organizationchart/index.ts @@ -0,0 +1,39 @@ +export default { + root: { + gutter: '0.75rem', + transitionDuration: '{transition.duration}' + }, + node: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + selectedColor: '{highlight.color}', + hoverColor: '{content.hover.color}', + padding: '1rem 1.25rem', + toggleablePadding: '1rem 1.25rem 1.5rem 1.25rem', + borderRadius: '{content.border.radius}' + }, + nodeToggleButton: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + borderColor: '{content.border.color}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + size: '1.75rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + connector: { + color: '{content.border.color}', + borderRadius: '{content.border.radius}', + height: '24px' + } +}; diff --git a/src/app/components/themes/material/overlaybadge/index.ts b/src/app/components/themes/material/overlaybadge/index.ts new file mode 100644 index 00000000000..7099114d446 --- /dev/null +++ b/src/app/components/themes/material/overlaybadge/index.ts @@ -0,0 +1,8 @@ +export default { + root: { + outline: { + width: '2px', + color: '{content.background}' + } + } +}; diff --git a/src/app/components/themes/material/paginator/index.ts b/src/app/components/themes/material/paginator/index.ts new file mode 100644 index 00000000000..cc37a371434 --- /dev/null +++ b/src/app/components/themes/material/paginator/index.ts @@ -0,0 +1,34 @@ +export default { + root: { + padding: '0.5rem 1rem', + gap: '0.25rem', + borderRadius: '{content.border.radius}', + background: '{content.background}', + color: '{content.color}', + transitionDuration: '{transition.duration}' + }, + navButton: { + background: 'transparent', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + color: '{text.muted.color}', + hoverColor: '{text.hover.muted.color}', + selectedColor: '{highlight.color}', + width: '2.5rem', + height: '2.5rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + currentPageReport: { + color: '{text.muted.color}' + }, + jumpToPageInput: { + maxWidth: '2.5rem' + } +}; diff --git a/src/app/components/themes/material/panel/index.ts b/src/app/components/themes/material/panel/index.ts new file mode 100644 index 00000000000..616f60fd63c --- /dev/null +++ b/src/app/components/themes/material/panel/index.ts @@ -0,0 +1,28 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + borderRadius: '{content.border.radius}' + }, + header: { + background: 'transparent', + color: '{text.color}', + padding: '1.25rem', + borderColor: '{content.border.color}', + borderWidth: '0', + borderRadius: '0' + }, + toggleableHeader: { + padding: '0.5rem 1.25rem' + }, + title: { + fontWeight: '600' + }, + content: { + padding: '0 1.25rem 1.25rem 1.25rem' + }, + footer: { + padding: '0 1.25rem 1.25rem 1.25rem' + } +}; diff --git a/src/app/components/themes/material/panelmenu/index.ts b/src/app/components/themes/material/panelmenu/index.ts new file mode 100644 index 00000000000..71f7c413f54 --- /dev/null +++ b/src/app/components/themes/material/panelmenu/index.ts @@ -0,0 +1,67 @@ +export default { + root: { + gap: '0', + transitionDuration: '{transition.duration}' + }, + panel: { + background: '{content.background}', + borderColor: '{content.border.color}', + borderWidth: '0', + color: '{content.color}', + padding: '0', + borderRadius: '0', + first: { + borderWidth: '0', + topBorderRadius: '{content.border.radius}' + }, + last: { + borderWidth: '0', + bottomBorderRadius: '{content.border.radius}' + } + }, + item: { + focusBackground: '{navigation.item.focus.background}', + color: '{navigation.item.color}', + focusColor: '{navigation.item.focus.color}', + gap: '0.5rem', + padding: '{navigation.item.padding}', + borderRadius: '{content.border.radius}', + icon: { + color: '{navigation.item.icon.color}', + focusColor: '{navigation.item.icon.focus.color}' + } + }, + submenu: { + indent: '1rem' + }, + submenuIcon: { + color: '{navigation.submenu.icon.color}', + focusColor: '{navigation.submenu.icon.focus.color}' + }, + css: ({ dt }) => ` +.p-panelmenu-panel { + box-shadow: 0 0 0 1px ${dt('panelmenu.panel.border.color')}; + transition: margin ${dt('panelmenu.transition.duration')}; +} + +.p-panelmenu-panel:has(.p-panelmenu-header-active) { + margin: 1rem 0; +} + +.p-panelmenu-panel:first-child { + border-top-left-radius: ${dt('content.border.radius')}; + border-top-right-radius: ${dt('content.border.radius')}; + margin-top: 0; +} + +.p-panelmenu-panel:last-child { + border-bottom-left-radius: ${dt('content.border.radius')}; + border-bottom-right-radius: ${dt('content.border.radius')}; + margin-bottom: 0; +} + +.p-accordionpanel:not(.p-disabled) .p-accordionheader:focus-visible { + background: ${dt('navigation.item.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/password/index.ts b/src/app/components/themes/material/password/index.ts new file mode 100644 index 00000000000..cd04fee76b4 --- /dev/null +++ b/src/app/components/themes/material/password/index.ts @@ -0,0 +1,37 @@ +export default { + meter: { + background: '{content.border.color}', + borderRadius: '{content.border.radius}', + height: '.75rem' + }, + icon: { + color: '{form.field.icon.color}' + }, + overlay: { + background: '{overlay.popover.background}', + borderColor: '{overlay.popover.border.color}', + borderRadius: '{overlay.popover.border.radius}', + color: '{overlay.popover.color}', + padding: '{overlay.popover.padding}', + shadow: '{overlay.popover.shadow}' + }, + content: { + gap: '0.5rem' + }, + colorScheme: { + light: { + strength: { + weakBackground: '{red.500}', + mediumBackground: '{amber.500}', + strongBackground: '{green.500}' + } + }, + dark: { + strength: { + weakBackground: '{red.400}', + mediumBackground: '{amber.400}', + strongBackground: '{green.400}' + } + } + } +}; diff --git a/src/app/components/themes/material/picklist/index.ts b/src/app/components/themes/material/picklist/index.ts new file mode 100644 index 00000000000..bf662105509 --- /dev/null +++ b/src/app/components/themes/material/picklist/index.ts @@ -0,0 +1,8 @@ +export default { + root: { + gap: '1.125rem' + }, + controls: { + gap: '0.5rem' + } +}; diff --git a/src/app/components/themes/material/popover/index.ts b/src/app/components/themes/material/popover/index.ts new file mode 100644 index 00000000000..855d2ec357b --- /dev/null +++ b/src/app/components/themes/material/popover/index.ts @@ -0,0 +1,14 @@ +export default { + root: { + background: '{overlay.popover.background}', + borderColor: '{overlay.popover.border.color}', + color: '{overlay.popover.color}', + borderRadius: '{overlay.popover.border.radius}', + shadow: '{overlay.popover.shadow}', + gutter: '10px', + arrowOffset: '1.25rem' + }, + content: { + padding: '{overlay.popover.padding}' + } +}; diff --git a/src/app/components/themes/material/progressbar/index.ts b/src/app/components/themes/material/progressbar/index.ts new file mode 100644 index 00000000000..2fc85e25ee7 --- /dev/null +++ b/src/app/components/themes/material/progressbar/index.ts @@ -0,0 +1,15 @@ +export default { + root: { + background: '{content.border.color}', + borderRadius: '{content.border.radius}', + height: '1rem' + }, + value: { + background: '{primary.color}' + }, + label: { + color: '{primary.contrast.color}', + fontSize: '0.75rem', + fontWeight: '600' + } +}; diff --git a/src/app/components/themes/material/progressspinner/index.ts b/src/app/components/themes/material/progressspinner/index.ts new file mode 100644 index 00000000000..30c1c417512 --- /dev/null +++ b/src/app/components/themes/material/progressspinner/index.ts @@ -0,0 +1,20 @@ +export default { + colorScheme: { + light: { + root: { + 'color.1': '{red.500}', + 'color.2': '{blue.500}', + 'color.3': '{green.500}', + 'color.4': '{yellow.500}' + } + }, + dark: { + root: { + 'color.1': '{red.400}', + 'color.2': '{blue.400}', + 'color.3': '{green.400}', + 'color.4': '{yellow.400}' + } + } + } +}; diff --git a/src/app/components/themes/material/radiobutton/index.ts b/src/app/components/themes/material/radiobutton/index.ts new file mode 100644 index 00000000000..98569410509 --- /dev/null +++ b/src/app/components/themes/material/radiobutton/index.ts @@ -0,0 +1,60 @@ +export default { + root: { + width: '20px', + height: '20px', + background: '{form.field.background}', + checkedBackground: '{primary.contrast.color}', + checkedHoverBackground: '{primary.contrast.color}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + checkedBorderColor: '{primary.color}', + checkedHoverBorderColor: '{primary.color}', + checkedFocusBorderColor: '{primary.color}', + checkedDisabledBorderColor: '{form.field.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + shadow: '{form.field.shadow}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + }, + transitionDuration: '{form.field.transition.duration}' + }, + icon: { + size: '10px', + checkedColor: '{primary.color}', + checkedHoverColor: '{primary.color}', + disabledColor: '{form.field.disabled.color}' + }, + css: ({ dt }) => ` +.p-radiobutton { + border-radius: 50%; + transition: box-shadow ${dt('radiobutton.transition.duration')}; +} + +.p-radiobutton-box { + border-width: 2px; +} + +.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 96%); +} + +.p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 88%); +} + +.p-radiobutton-checked:not(.p-disabled):has(.p-radiobutton-input:hover) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('radiobutton.checked.border.color')}, transparent 92%); +} + +.p-radiobutton-checked:not(.p-disabled):has(.p-radiobutton-input:focus-visible) { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('radiobutton.checked.border.color')}, transparent 84%); +} +` +}; diff --git a/src/app/components/themes/material/rating/index.ts b/src/app/components/themes/material/rating/index.ts new file mode 100644 index 00000000000..f741d3e41d8 --- /dev/null +++ b/src/app/components/themes/material/rating/index.ts @@ -0,0 +1,35 @@ +export default { + root: { + gap: '0.5rem', + transitionDuration: '{transition.duration}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + icon: { + size: '1.125rem', + color: '{text.muted.color}', + hoverColor: '{primary.color}', + activeColor: '{primary.color}' + }, + css: ({ dt }) => ` +.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-option:hover { + background: color-mix(in srgb, ${dt('rating.icon.color')}, transparent 96%); + box-shadow: 0 0 1px 8px color-mix(in srgb, ${dt('rating.icon.color')}, transparent 96%); +} + +.p-rating:not(.p-disabled):not(.p-readonly) .p-rating-option-active:hover { + background: color-mix(in srgb, ${dt('rating.icon.active.color')}, transparent 92%); + box-shadow: 0 0 1px 8px color-mix(in srgb, ${dt('rating.icon.active.color')}, transparent 92%); +} + +.p-rating-option.p-focus-visible { + background: color-mix(in srgb, ${dt('rating.icon.active.color')}, transparent 84%); + box-shadow: 0 0 1px 8px color-mix(in srgb, ${dt('rating.icon.active.color')}, transparent 84%); +} +` +}; diff --git a/src/app/components/themes/material/ripple/index.ts b/src/app/components/themes/material/ripple/index.ts new file mode 100644 index 00000000000..024905a6416 --- /dev/null +++ b/src/app/components/themes/material/ripple/index.ts @@ -0,0 +1,14 @@ +export default { + colorScheme: { + light: { + root: { + background: 'rgba(0,0,0,0.1)' + } + }, + dark: { + root: { + background: 'rgba(255,255,255,0.3)' + } + } + } +}; diff --git a/src/app/components/themes/material/scrollpanel/index.ts b/src/app/components/themes/material/scrollpanel/index.ts new file mode 100644 index 00000000000..16c0de14286 --- /dev/null +++ b/src/app/components/themes/material/scrollpanel/index.ts @@ -0,0 +1,28 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + bar: { + size: '9px', + borderRadius: '{border.radius.sm}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + colorScheme: { + light: { + bar: { + background: '{surface.200}' + } + }, + dark: { + bar: { + background: '{surface.700}' + } + } + } +}; diff --git a/src/app/components/themes/material/select/index.ts b/src/app/components/themes/material/select/index.ts new file mode 100644 index 00000000000..31d6dac3880 --- /dev/null +++ b/src/app/components/themes/material/select/index.ts @@ -0,0 +1,122 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledHoverBackground: '{form.field.filled.hover.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + dropdown: { + width: '2.5rem', + color: '{form.field.icon.color}' + }, + overlay: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}' + }, + list: { + padding: '{list.padding}', + gap: '{list.gap}', + header: { + padding: '{list.header.padding}' + } + }, + option: { + focusBackground: '{list.option.focus.background}', + selectedBackground: '{list.option.selected.background}', + selectedFocusBackground: '{list.option.selected.focus.background}', + color: '{list.option.color}', + focusColor: '{list.option.focus.color}', + selectedColor: '{list.option.selected.color}', + selectedFocusColor: '{list.option.selected.focus.color}', + padding: '{list.option.padding}', + borderRadius: '{list.option.border.radius}' + }, + optionGroup: { + background: '{list.option.group.background}', + color: '{list.option.group.color}', + fontWeight: '{list.option.group.font.weight}', + padding: '{list.option.group.padding}' + }, + clearIcon: { + color: '{form.field.icon.color}' + }, + checkmark: { + color: '{list.option.color}', + gutterStart: '-0.375rem', + gutterEnd: '0.375rem' + }, + emptyMessage: { + padding: '{list.option.padding}' + }, + css: ({ dt }) => ` +.p-select.p-variant-filled { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid transparent; + background: ${dt('select.filled.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('select.focus.border.color')}, ${dt('select.focus.border.color')}), linear-gradient(to bottom, ${dt('select.border.color')}, ${dt('select.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.p-select.p-variant-filled:not(.p-disabled):hover { + background: ${dt('select.filled.hover.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('select.focus.border.color')}, ${dt('select.focus.border.color')}), linear-gradient(to bottom, ${dt('select.hover.border.color')}, ${dt('select.hover.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-select.p-variant-filled:not(.p-disabled).p-focus { + outline: 0 none; + background: ${dt('select.filled.focus.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('select.focus.border.color')}, ${dt('select.focus.border.color')}), linear-gradient(to bottom, ${dt('select.border.color')}, ${dt('select.border.color')}); + background-size: 100% 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-select.p-variant-filled:not(.p-disabled).p-focus:hover { + background-image: linear-gradient(to bottom, ${dt('select.focus.border.color')}, ${dt('select.focus.border.color')}), linear-gradient(to bottom, ${dt('select.hover.border.color')}, ${dt('select.hover.border.color')}); +} + +.p-select.p-variant-filled.p-invalid { + background-image: linear-gradient(to bottom, ${dt('select.invalid.border.color')}, ${dt('select.invalid.border.color')}), linear-gradient(to bottom, ${dt('select.invalid.border.color')}, ${dt('select.invalid.border.color')}); +} + +.p-select.p-variant-filled.p-invalid:not(.p-disabled).p-focus { + background-image: linear-gradient(to bottom, ${dt('select.invalid.border.color')}, ${dt('select.invalid.border.color')}), linear-gradient(to bottom, ${dt('select.invalid.border.color')}, ${dt('select.invalid.border.color')}); +} + +.p-select-option { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/selectbutton/index.ts b/src/app/components/themes/material/selectbutton/index.ts new file mode 100644 index 00000000000..dacd8eb5218 --- /dev/null +++ b/src/app/components/themes/material/selectbutton/index.ts @@ -0,0 +1,17 @@ +export default { + root: { + borderRadius: '{form.field.border.radius}' + }, + colorScheme: { + light: { + root: { + invalidBorderColor: '{form.field.invalid.border.color}' + } + }, + dark: { + root: { + invalidBorderColor: '{form.field.invalid.border.color}' + } + } + } +}; diff --git a/src/app/components/themes/material/skeleton/index.ts b/src/app/components/themes/material/skeleton/index.ts new file mode 100644 index 00000000000..07fc58365d5 --- /dev/null +++ b/src/app/components/themes/material/skeleton/index.ts @@ -0,0 +1,19 @@ +export default { + root: { + borderRadius: '{content.border.radius}' + }, + colorScheme: { + light: { + root: { + background: '{surface.200}', + animationBackground: 'rgba(255,255,255,0.4)' + } + }, + dark: { + root: { + background: 'rgba(255, 255, 255, 0.06)', + animationBackground: 'rgba(255, 255, 255, 0.04)' + } + } + } +}; diff --git a/src/app/components/themes/material/slider/index.ts b/src/app/components/themes/material/slider/index.ts new file mode 100644 index 00000000000..de879f6ba6b --- /dev/null +++ b/src/app/components/themes/material/slider/index.ts @@ -0,0 +1,49 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + track: { + background: '{content.border.color}', + borderRadius: '{border.radius.xs}', + size: '2px' + }, + range: { + background: '{primary.color}' + }, + handle: { + width: '18px', + height: '18px', + borderRadius: '50%', + background: '{primary.color}', + hoverBackground: '{primary.color}', + content: { + borderRadius: '50%', + contentBackground: '{primary.color}', + hoverBackground: '{primary.color}', + width: '18px', + height: '18px', + shadow: '0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12)' + }, + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + css: ({ dt }) => ` +.p-slider-handle { + transition: box-shadow ${dt('slider.transition.duration')}; +} + +.p-slider:not(.p-disabled) .p-slider-handle:hover { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('slider.handle.background')}, transparent 92%); +} + +.p-slider-handle:focus-visible, +.p-slider:not(.p-disabled) .p-slider-handle:focus:hover { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('slider.handle.background')}, transparent 84%); +} +` +}; diff --git a/src/app/components/themes/material/speeddial/index.ts b/src/app/components/themes/material/speeddial/index.ts new file mode 100644 index 00000000000..0566594d973 --- /dev/null +++ b/src/app/components/themes/material/speeddial/index.ts @@ -0,0 +1,6 @@ +export default { + root: { + gap: '0.5rem', + transitionDuration: '{transition.duration}' + } +}; diff --git a/src/app/components/themes/material/splitbutton/index.ts b/src/app/components/themes/material/splitbutton/index.ts new file mode 100644 index 00000000000..bb8405946d2 --- /dev/null +++ b/src/app/components/themes/material/splitbutton/index.ts @@ -0,0 +1,7 @@ +export default { + root: { + borderRadius: '{form.field.border.radius}', + roundedBorderRadius: '2rem', + raisedShadow: '0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)' + } +}; diff --git a/src/app/components/themes/material/splitter/index.ts b/src/app/components/themes/material/splitter/index.ts new file mode 100644 index 00000000000..97d78adf066 --- /dev/null +++ b/src/app/components/themes/material/splitter/index.ts @@ -0,0 +1,23 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + transitionDuration: '{transition.duration}' + }, + gutter: { + background: '{content.border.color}' + }, + handle: { + size: '24px', + background: 'transparent', + borderRadius: '{content.border.radius}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + } +}; diff --git a/src/app/components/themes/material/stepper/index.ts b/src/app/components/themes/material/stepper/index.ts new file mode 100644 index 00000000000..f9a1f9eb892 --- /dev/null +++ b/src/app/components/themes/material/stepper/index.ts @@ -0,0 +1,71 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + separator: { + background: '{content.border.color}', + activeBackground: '{primary.color}', + margin: '0 0 0 1.625rem', + size: '2px' + }, + step: { + padding: '0.5rem', + gap: '1rem' + }, + stepHeader: { + padding: '0.75rem 1rem', + borderRadius: '{content.border.radius}', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + }, + gap: '0.5rem' + }, + stepTitle: { + color: '{text.muted.color}', + activeColor: '{text.color}', + fontWeight: '500' + }, + stepNumber: { + activeBackground: '{primary.color}', + activeBorderColor: '{primary.color}', + activeColor: '{primary.contrast.color}', + size: '2rem', + fontSize: '1.143rem', + fontWeight: '500', + borderRadius: '50%', + shadow: 'none' + }, + steppanels: { + padding: '0.875rem 0.5rem 1.125rem 0.5rem' + }, + steppanel: { + background: '{content.background}', + color: '{content.color}', + padding: '0 0 0 1rem' + }, + colorScheme: { + light: { + stepNumber: { + background: '{surface.400}', + borderColor: '{surface.400}', + color: '{surface.0}' + } + }, + dark: { + stepNumber: { + background: '{surface.200}', + borderColor: '{surface.200}', + color: '{surface.900}' + } + } + }, + css: ({ dt }) => ` +.p-step-header:focus-visible { + background: ${dt('navigation.item.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/steps/index.ts b/src/app/components/themes/material/steps/index.ts new file mode 100644 index 00000000000..95c6c9dd2f5 --- /dev/null +++ b/src/app/components/themes/material/steps/index.ts @@ -0,0 +1,37 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + separator: { + background: '{content.border.color}' + }, + itemLink: { + borderRadius: '{content.border.radius}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + }, + gap: '0.5rem' + }, + itemLabel: { + color: '{text.muted.color}', + activeColor: '{primary.color}', + fontWeight: '500' + }, + itemNumber: { + background: '{content.background}', + activeBackground: '{content.background}', + borderColor: '{content.border.color}', + activeBorderColor: '{content.border.color}', + color: '{text.muted.color}', + activeColor: '{primary.color}', + size: '2rem', + fontSize: '1.143rem', + fontWeight: '500', + borderRadius: '50%', + shadow: '0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)' + } +}; diff --git a/src/app/components/themes/material/tabmenu/index.ts b/src/app/components/themes/material/tabmenu/index.ts new file mode 100644 index 00000000000..9b6fc81f9a9 --- /dev/null +++ b/src/app/components/themes/material/tabmenu/index.ts @@ -0,0 +1,43 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + tablist: { + borderWidth: '0 0 1px 0', + background: '{content.background}', + borderColor: '{content.border.color}' + }, + item: { + background: 'transparent', + hoverBackground: 'transparent', + activeBackground: 'transparent', + borderWidth: '0 0 1px 0', + borderColor: '{content.border.color}', + hoverBorderColor: '{content.border.color}', + activeBorderColor: '{primary.color}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + activeColor: '{primary.color}', + padding: '1rem 1.125rem', + fontWeight: '600', + margin: '0 0 -1px 0', + gap: '0.5rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + itemIcon: { + color: '{text.muted.color}', + hoverColor: '{text.color}', + activeColor: '{primary.color}' + }, + activeBar: { + height: '1px', + bottom: '-1px', + background: '{primary.color}' + } +}; diff --git a/src/app/components/themes/material/tabs/index.ts b/src/app/components/themes/material/tabs/index.ts new file mode 100644 index 00000000000..acca02a11a0 --- /dev/null +++ b/src/app/components/themes/material/tabs/index.ts @@ -0,0 +1,83 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + tablist: { + borderWidth: '0 0 1px 0', + background: '{content.background}', + borderColor: '{content.border.color}' + }, + tab: { + background: 'transparent', + hoverBackground: '{content.hover.background}', + activeBackground: 'transparent', + borderWidth: '0 0 1px 0', + borderColor: '{content.border.color}', + hoverBorderColor: '{content.border.color}', + activeBorderColor: '{primary.color}', + color: '{text.color}', + hoverColor: '{text.color}', + activeColor: '{primary.color}', + padding: '1rem 1.25rem', + fontWeight: '600', + margin: '0 0 -1px 0', + gap: '0.5rem', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + tabpanel: { + background: '{content.background}', + color: '{content.color}', + padding: '1.25rem 1.25rem 1.25rem 1.25rem', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + navButton: { + background: '{content.background}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + width: '3rem', + shadow: 'none', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + } + }, + activeBar: { + height: '2px', + bottom: '-1px', + background: '{primary.color}' + }, + css: ({ dt }) => ` + + +.p-tabs-scrollable .p-tab { + flex-grow: 0 +} + +.p-tab-active { + --p-ripple-background: color-mix(in srgb, ${dt('primary.color')}, transparent 90%); +} + +.p-tab:not(.p-disabled):focus-visible { + background: ${dt('navigation.item.active.background')}; +} + +.p-tablist-nav-button:focus-visible { + background: ${dt('navigation.item.active.background')}; +} +` +}; diff --git a/src/app/components/themes/material/tabview/index.ts b/src/app/components/themes/material/tabview/index.ts new file mode 100644 index 00000000000..47883472726 --- /dev/null +++ b/src/app/components/themes/material/tabview/index.ts @@ -0,0 +1,37 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + tabList: { + background: '{content.background}', + borderColor: '{content.border.color}' + }, + tab: { + borderColor: '{content.border.color}', + activeBorderColor: '{primary.color}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + activeColor: '{primary.color}' + }, + tabPanel: { + background: '{content.background}', + color: '{content.color}' + }, + navButton: { + background: '{content.background}', + color: '{text.muted.color}', + hoverColor: '{text.color}' + }, + colorScheme: { + light: { + navButton: { + shadow: '0px 0px 10px 50px rgba(255, 255, 255, 0.6)' + } + }, + dark: { + navButton: { + shadow: '0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)' + } + } + } +}; diff --git a/src/app/components/themes/material/tag/index.ts b/src/app/components/themes/material/tag/index.ts new file mode 100644 index 00000000000..6c5243e4548 --- /dev/null +++ b/src/app/components/themes/material/tag/index.ts @@ -0,0 +1,75 @@ +export default { + root: { + fontSize: '0.875rem', + fontWeight: '700', + padding: '0.25rem 0.5rem', + gap: '0.25rem', + borderRadius: '{content.border.radius}', + roundedBorderRadius: '{border.radius.xl}' + }, + icon: { + size: '0.75rem' + }, + colorScheme: { + light: { + primary: { + background: '{primary.color}', + color: '{primary.contrast.color}' + }, + secondary: { + background: '{surface.100}', + color: '{surface.600}' + }, + success: { + background: '{green.500}', + color: '{surface.0}' + }, + info: { + background: '{sky.500}', + color: '{surface.0}' + }, + warn: { + background: '{orange.500}', + color: '{surface.0}' + }, + danger: { + background: '{red.500}', + color: '{surface.0}' + }, + contrast: { + background: '{surface.950}', + color: '{surface.0}' + } + }, + dark: { + primary: { + background: '{primary.color}', + color: '{primary.contrast.color}' + }, + secondary: { + background: '{surface.800}', + color: '{surface.300}' + }, + success: { + background: '{green.400}', + color: '{green.950}' + }, + info: { + background: '{sky.400}', + color: '{sky.950}' + }, + warn: { + background: '{orange.400}', + color: '{orange.950}' + }, + danger: { + background: '{red.400}', + color: '{red.950}' + }, + contrast: { + background: '{surface.0}', + color: '{surface.950}' + } + } + } +}; diff --git a/src/app/components/themes/material/terminal/index.ts b/src/app/components/themes/material/terminal/index.ts new file mode 100644 index 00000000000..b657e5c4d14 --- /dev/null +++ b/src/app/components/themes/material/terminal/index.ts @@ -0,0 +1,16 @@ +export default { + root: { + background: '{form.field.background}', + borderColor: '{form.field.border.color}', + color: '{form.field.color}', + height: '18rem', + padding: '{form.field.padding.y} {form.field.padding.x}', + borderRadius: '{form.field.border.radius}' + }, + prompt: { + gap: '0.25rem' + }, + commandResponse: { + margin: '2px 0' + } +}; diff --git a/src/app/components/themes/material/textarea/index.ts b/src/app/components/themes/material/textarea/index.ts new file mode 100644 index 00000000000..f22994ab1db --- /dev/null +++ b/src/app/components/themes/material/textarea/index.ts @@ -0,0 +1,27 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + } +}; diff --git a/src/app/components/themes/material/tieredmenu/index.ts b/src/app/components/themes/material/tieredmenu/index.ts new file mode 100644 index 00000000000..576f2be1021 --- /dev/null +++ b/src/app/components/themes/material/tieredmenu/index.ts @@ -0,0 +1,52 @@ +export default { + root: { + background: '{content.background}', + borderColor: '{content.border.color}', + color: '{content.color}', + borderRadius: '{content.border.radius}', + shadow: '{overlay.navigation.shadow}', + transitionDuration: '{transition.duration}' + }, + list: { + padding: '{navigation.list.padding}', + gap: '{navigation.list.gap}' + }, + item: { + focusBackground: '{navigation.item.focus.background}', + activeBackground: '{navigation.item.active.background}', + color: '{navigation.item.color}', + focusColor: '{navigation.item.focus.color}', + activeColor: '{navigation.item.active.color}', + padding: '{navigation.item.padding}', + borderRadius: '{navigation.item.border.radius}', + gap: '{navigation.item.gap}', + icon: { + color: '{navigation.item.icon.color}', + focusColor: '{navigation.item.icon.focus.color}', + activeColor: '{navigation.item.icon.active.color}' + } + }, + submenu: { + mobileIndent: '1rem' + }, + submenuLabel: { + padding: '{navigation.submenu.label.padding}', + fontWeight: '{navigation.submenu.label.font.weight}', + background: '{navigation.submenu.label.background.}', + color: '{navigation.submenu.label.color}' + }, + submenuIcon: { + size: '{navigation.submenu.icon.size}', + color: '{navigation.submenu.icon.color}', + focusColor: '{navigation.submenu.icon.focus.color}', + activeColor: '{navigation.submenu.icon.active.color}' + }, + separator: { + borderColor: '{content.border.color}' + }, + css: ({ dt }) => ` +.p-tieredmenu-overlay { + border-color: transparent; +} +` +}; diff --git a/src/app/components/themes/material/timeline/index.ts b/src/app/components/themes/material/timeline/index.ts new file mode 100644 index 00000000000..4359a724c85 --- /dev/null +++ b/src/app/components/themes/material/timeline/index.ts @@ -0,0 +1,43 @@ +export default { + event: { + minHeight: '5rem' + }, + horizontal: { + eventContent: { + padding: '1rem 0' + } + }, + vertical: { + eventContent: { + padding: '0 1rem' + } + }, + eventMarker: { + size: '1.5rem', + borderRadius: '50%', + borderWidth: '2px', + background: '{primary.color}', + content: { + borderRadius: '50%', + size: '0', + background: '{primary.color}', + insetShadow: 'none' + } + }, + eventConnector: { + color: '{content.border.color}', + size: '2px' + }, + colorScheme: { + light: { + eventMarker: { + borderColor: '{surface.0}' + } + }, + dark: { + eventMarker: { + borderColor: '{surface.900}' + } + } + } +}; diff --git a/src/app/components/themes/material/toast/index.ts b/src/app/components/themes/material/toast/index.ts new file mode 100644 index 00000000000..90867dcf748 --- /dev/null +++ b/src/app/components/themes/material/toast/index.ts @@ -0,0 +1,215 @@ +export default { + root: { + width: '25rem', + borderRadius: '{content.border.radius}', + borderWidth: '0', + transitionDuration: '{transition.duration}' + }, + icon: { + size: '1.25rem' + }, + content: { + padding: '{overlay.popover.padding}', + gap: '0.5rem' + }, + text: { + gap: '0.5rem' + }, + summary: { + fontWeight: '500', + fontSize: '1rem' + }, + detail: { + fontWeight: '500', + fontSize: '0.875rem' + }, + closeButton: { + width: '2rem', + height: '2rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + offset: '{focus.ring.offset}' + } + }, + closeIcon: { + size: '1rem' + }, + colorScheme: { + light: { + blur: '0', + info: { + background: '{blue.50}', + borderColor: '{blue.200}', + color: '{blue.600}', + detailColor: '{surface.700}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{blue.100}', + focusRing: { + color: '{blue.600}', + shadow: 'none' + } + } + }, + success: { + background: '{green.50}', + borderColor: '{green.200}', + color: '{green.600}', + detailColor: '{surface.700}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{green.100}', + focusRing: { + color: '{green.600}', + shadow: 'none' + } + } + }, + warn: { + background: '{yellow.50}', + borderColor: '{yellow.200}', + color: '{yellow.900}', + detailColor: '{surface.700}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{yellow.100}', + focusRing: { + color: '{yellow.600}', + shadow: 'none' + } + } + }, + error: { + background: '{red.50}', + borderColor: '{red.200}', + color: '{red.600}', + detailColor: '{surface.700}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{red.100}', + focusRing: { + color: '{red.600}', + shadow: 'none' + } + } + }, + secondary: { + background: '{surface.100}', + borderColor: '{surface.200}', + color: '{surface.600}', + detailColor: '{surface.700}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{surface.200}', + focusRing: { + color: '{surface.600}', + shadow: 'none' + } + } + }, + contrast: { + background: '{surface.900}', + borderColor: '{surface.950}', + color: '{surface.50}', + detailColor: '{surface.0}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{surface.800}', + focusRing: { + color: '{surface.50}', + shadow: 'none' + } + } + } + }, + dark: { + blur: '10px', + info: { + background: 'color-mix(in srgb, {blue.500}, transparent 36%)', + borderColor: 'color-mix(in srgb, {blue.700}, transparent 64%)', + color: '{surface.0}', + detailColor: '{blue.100}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{blue.500}', + shadow: 'none' + } + } + }, + success: { + background: 'color-mix(in srgb, {green.500}, transparent 36%)', + borderColor: 'color-mix(in srgb, {green.700}, transparent 64%)', + color: '{surface.0}', + detailColor: '{green.100}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{green.500}', + shadow: 'none' + } + } + }, + warn: { + background: 'color-mix(in srgb, {yellow.500}, transparent 36%)', + borderColor: 'color-mix(in srgb, {yellow.700}, transparent 64%)', + color: '{surface.0}', + detailColor: '{yellow.50}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{yellow.500}', + shadow: 'none' + } + } + }, + error: { + background: 'color-mix(in srgb, {red.500}, transparent 36%)', + borderColor: 'color-mix(in srgb, {red.700}, transparent 64%)', + color: '{surface.0}', + detailColor: '{red.100}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: 'rgba(255, 255, 255, 0.05)', + focusRing: { + color: '{red.500}', + shadow: 'none' + } + } + }, + secondary: { + background: '{surface.800}', + borderColor: '{surface.700}', + color: '{surface.300}', + detailColor: '{surface.0}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{surface.700}', + focusRing: { + color: '{surface.300}', + shadow: 'none' + } + } + }, + contrast: { + background: '{surface.0}', + borderColor: '{surface.100}', + color: '{surface.950}', + detailColor: '{surface.950}', + shadow: '0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)', + closeButton: { + hoverBackground: '{surface.100}', + focusRing: { + color: '{surface.950}', + shadow: 'none' + } + } + } + } + } +}; diff --git a/src/app/components/themes/material/togglebutton/index.ts b/src/app/components/themes/material/togglebutton/index.ts new file mode 100644 index 00000000000..49754066fa1 --- /dev/null +++ b/src/app/components/themes/material/togglebutton/index.ts @@ -0,0 +1,57 @@ +export default { + root: { + padding: '0.75rem 1rem', + borderRadius: '{form.field.border.radius}', + gap: '0.5rem', + fontWeight: '500', + background: '{form.field.background}', + borderColor: '{form.field.border.color}', + color: '{form.field.color}', + hoverColor: '{form.field.color}', + checkedColor: '{form.field.color}', + checkedBorderColor: '{form.field.border.color}', + disabledBackground: '{form.field.disabled.background}', + disabledBorderColor: '{form.field.disabled.background}', + disabledColor: '{form.field.disabled.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + focusRing: { + width: '0', + style: 'none', + offset: '0', + color: 'unset', + shadow: 'none' + }, + transitionDuration: '{form.field.transition.duration}' + }, + icon: { + color: '{text.muted.color}', + hoverColor: '{text.muted.color}', + checkedColor: '{text.muted.color}', + disabledColor: '{form.field.disabled.color}' + }, + content: { + left: '0.25rem', + top: '0.25rem', + checkedBackground: 'transparent', + checkedShadow: 'none' + }, + colorScheme: { + light: { + root: { + hoverBackground: '{surface.100}', + checkedBackground: '{surface.200}' + } + }, + dark: { + root: { + hoverBackground: '{surface.800}', + checkedBackground: '{surface.700}' + } + } + }, + css: ({ dt }) => ` +.p-togglebutton:focus-visible { + background: ${dt('togglebutton.hover.background')}; +} +` +}; diff --git a/src/app/components/themes/material/toggleswitch/index.ts b/src/app/components/themes/material/toggleswitch/index.ts new file mode 100644 index 00000000000..da0cd7cb57d --- /dev/null +++ b/src/app/components/themes/material/toggleswitch/index.ts @@ -0,0 +1,91 @@ +export default { + root: { + width: '2.75rem', + height: '1rem', + borderRadius: '30px', + gap: '0', + shadow: 'none', + focusRing: { + width: '0', + style: 'none', + color: 'unset', + offset: '0', + shadow: 'none' + }, + borderWidth: '1px', + borderColor: 'transparent', + hoverBorderColor: 'transparent', + checkedBorderColor: 'transparent', + checkedHoverBorderColor: 'transparent', + invalidBorderColor: '{form.field.invalid.border.color}', + transitionDuration: '{form.field.transition.duration}', + slideDuration: '0.2s' + }, + handle: { + borderRadius: '50%', + size: '1.5rem' + }, + colorScheme: { + light: { + root: { + background: '{surface.300}', + disabledBackground: '{surface.400}', + hoverBackground: '{surface.300}', + checkedBackground: '{primary.200}', + checkedHoverBackground: '{primary.200}' + }, + handle: { + background: '{surface.0}', + disabledBackground: '{surface.200}', + hoverBackground: '{surface.0}', + checkedBackground: '{primary.color}', + checkedHoverBackground: '{primary.color}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + checkedColor: '{primary.contrast.color}', + checkedHoverColor: '{primary.contrast.color}' + } + }, + dark: { + root: { + background: '{surface.700}', + disabledBackground: '{surface.600}', + hoverBackground: '{surface.700}', + checkedBackground: '{primary.color}', + checkedHoverBackground: '{primary.color}' + }, + handle: { + background: '{surface.400}', + disabledBackground: '{surface.500}', + hoverBackground: '{surface.300}', + checkedBackground: '{primary.200}', + checkedHoverBackground: '{primary.200}', + color: '{surface.800}', + hoverColor: '{surface.900}', + checkedColor: '{primary.contrast.color}', + checkedHoverColor: '{primary.contrast.color}' + } + } + }, + css: ({ dt }) => ` +.p-toggleswitch-handle { + box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); +} + +.p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:hover) .p-toggleswitch-handle { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 96%), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); +} + +.p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:focus-visible) .p-toggleswitch-handle { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('text.color')}, transparent 88%), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); +} + +.p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:hover).p-toggleswitch-checked .p-toggleswitch-handle { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('toggleswitch.handle.checked.background')}, transparent 92%), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); +} + +.p-toggleswitch:not(.p-disabled):has(.p-toggleswitch-input:focus-visible).p-toggleswitch-checked .p-toggleswitch-handle { + box-shadow: 0 0 1px 10px color-mix(in srgb, ${dt('toggleswitch.handle.checked.background')}, transparent 84%), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); +} +` +}; diff --git a/src/app/components/themes/material/toolbar/index.ts b/src/app/components/themes/material/toolbar/index.ts new file mode 100644 index 00000000000..9d4a965332f --- /dev/null +++ b/src/app/components/themes/material/toolbar/index.ts @@ -0,0 +1,24 @@ +export default { + root: { + color: '{content.color}', + borderRadius: '{content.border.radius}', + gap: '0.5rem', + padding: '1rem' + }, + colorScheme: { + light: { + root: { + background: '{surface.100}', + borderColor: '{surface.100}' + } + }, + dark: { + root: { + root: { + background: '{surface.800}', + borderColor: '{surface.800}' + } + } + } + } +}; diff --git a/src/app/components/themes/material/tooltip/index.ts b/src/app/components/themes/material/tooltip/index.ts new file mode 100644 index 00000000000..4963e7567f4 --- /dev/null +++ b/src/app/components/themes/material/tooltip/index.ts @@ -0,0 +1,11 @@ +export default { + root: { + background: '{surface.600}', + color: '{surface.0}', + maxWidth: '12.5rem', + gutter: '0.25rem', + shadow: '{overlay.popover.shadow}', + padding: '0.5rem 0.75rem', + borderRadius: '{overlay.popover.border.radius}' + } +}; diff --git a/src/app/components/themes/material/tree/index.ts b/src/app/components/themes/material/tree/index.ts new file mode 100644 index 00000000000..0280ce71acc --- /dev/null +++ b/src/app/components/themes/material/tree/index.ts @@ -0,0 +1,59 @@ +export default { + root: { + background: '{content.background}', + color: '{content.color}', + padding: '1rem', + gap: '2px', + indent: '2rem', + transitionDuration: '{transition.duration}' + }, + node: { + padding: '0.5rem 0.75rem', + borderRadius: '{border.radius.xs}', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + color: '{text.color}', + hoverColor: '{text.hover.color}', + selectedColor: '{highlight.color}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '-1px', + shadow: '{focus.ring.shadow}' + }, + gap: '0.5rem' + }, + nodeIcon: { + color: '{text.muted.color}', + hoverColor: '{text.hover.muted.color}', + selectedColor: '{highlight.color}' + }, + nodeToggleButton: { + borderRadius: '50%', + size: '2rem', + hoverBackground: '{content.hover.background}', + selectedHoverBackground: '{content.background}', + color: '{text.muted.color}', + hoverColor: '{text.hover.muted.color}', + selectedHoverColor: '{primary.color}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + loadingIcon: { + size: '2rem' + }, + filter: { + margin: '0 0 0.75rem 0' + }, + css: ({ dt }) => ` +.p-tree-node-content { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/treeselect/index.ts b/src/app/components/themes/material/treeselect/index.ts new file mode 100644 index 00000000000..79b78a46f3a --- /dev/null +++ b/src/app/components/themes/material/treeselect/index.ts @@ -0,0 +1,92 @@ +export default { + root: { + background: '{form.field.background}', + disabledBackground: '{form.field.disabled.background}', + filledBackground: '{form.field.filled.background}', + filledHoverBackground: '{form.field.filled.hover.background}', + filledFocusBackground: '{form.field.filled.focus.background}', + borderColor: '{form.field.border.color}', + hoverBorderColor: '{form.field.hover.border.color}', + focusBorderColor: '{form.field.focus.border.color}', + invalidBorderColor: '{form.field.invalid.border.color}', + color: '{form.field.color}', + disabledColor: '{form.field.disabled.color}', + placeholderColor: '{form.field.placeholder.color}', + shadow: '{form.field.shadow}', + paddingX: '{form.field.padding.x}', + paddingY: '{form.field.padding.y}', + borderRadius: '{form.field.border.radius}', + focusRing: { + width: '{form.field.focus.ring.width}', + style: '{form.field.focus.ring.style}', + color: '{form.field.focus.ring.color}', + offset: '{form.field.focus.ring.offset}', + shadow: '{form.field.focus.ring.shadow}' + }, + transitionDuration: '{form.field.transition.duration}' + }, + dropdown: { + width: '2.5rem', + color: '{form.field.icon.color}' + }, + overlay: { + background: '{overlay.select.background}', + borderColor: '{overlay.select.border.color}', + borderRadius: '{overlay.select.border.radius}', + color: '{overlay.select.color}', + shadow: '{overlay.select.shadow}' + }, + tree: { + padding: '{list.padding}' + }, + emptyMessage: { + padding: '{list.option.padding}' + }, + chip: { + borderRadius: '{border.radius.sm}' + }, + css: ({ dt }) => ` +.p-treeselect.p-variant-filled { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + border: 1px solid transparent; + background: ${dt('treeselect.filled.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('treeselect.focus.border.color')}, ${dt('treeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('treeselect.border.color')}, ${dt('treeselect.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.p-treeselect.p-variant-filled:not(.p-disabled):hover { + background: ${dt('treeselect.filled.hover.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('treeselect.focus.border.color')}, ${dt('treeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('treeselect.hover.border.color')}, ${dt('treeselect.hover.border.color')}); + background-size: 0 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-treeselect.p-variant-filled:not(.p-disabled).p-focus { + outline: 0 none; + background: ${dt('treeselect.filled.focus.background')} no-repeat; + background-image: linear-gradient(to bottom, ${dt('treeselect.focus.border.color')}, ${dt('treeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('treeselect.border.color')}, ${dt('treeselect.border.color')}); + background-size: 100% 2px, 100% 1px; + background-position: 50% 100%, 50% 100%; + background-origin: border-box; + border-color: transparent; +} + +.p-treeselect.p-variant-filled:not(.p-disabled).p-focus:hover { + background-image: linear-gradient(to bottom, ${dt('treeselect.focus.border.color')}, ${dt('treeselect.focus.border.color')}), linear-gradient(to bottom, ${dt('treeselect.hover.border.color')}, ${dt('treeselect.hover.border.color')}); +} + +.p-treeselect.p-variant-filled.p-invalid { + background-image: linear-gradient(to bottom, ${dt('treeselect.invalid.border.color')}, ${dt('treeselect.invalid.border.color')}), linear-gradient(to bottom, ${dt('treeselect.invalid.border.color')}, ${dt('treeselect.invalid.border.color')}); +} + +.p-treeselect.p-variant-filled.p-invalid:not(.p-disabled).p-focus { + background-image: linear-gradient(to bottom, ${dt('treeselect.invalid.border.color')}, ${dt('treeselect.invalid.border.color')}), linear-gradient(to bottom, ${dt('treeselect.invalid.border.color')}, ${dt('treeselect.invalid.border.color')}); +} +` +}; diff --git a/src/app/components/themes/material/treetable/index.ts b/src/app/components/themes/material/treetable/index.ts new file mode 100644 index 00000000000..bb2da05b38e --- /dev/null +++ b/src/app/components/themes/material/treetable/index.ts @@ -0,0 +1,130 @@ +export default { + root: { + transitionDuration: '{transition.duration}' + }, + header: { + background: '{content.background}', + borderColor: '{treetable.border.color}', + color: '{content.color}', + borderWidth: '0 0 1px 0', + padding: '0.75rem 1rem' + }, + headerCell: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + borderColor: '{treetable.border.color}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + selectedColor: '{highlight.color}', + gap: '0.5rem', + padding: '0.75rem 1rem', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '-1px', + shadow: '{focus.ring.shadow}' + } + }, + columnTitle: { + fontWeight: '600' + }, + row: { + background: '{content.background}', + hoverBackground: '{content.hover.background}', + selectedBackground: '{highlight.background}', + color: '{content.color}', + hoverColor: '{content.hover.color}', + selectedColor: '{highlight.color}', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '-1px', + shadow: '{focus.ring.shadow}' + } + }, + bodyCell: { + borderColor: '{treetable.border.color}', + padding: '0.75rem 1rem', + gap: '0.5rem' + }, + footerCell: { + background: '{content.background}', + borderColor: '{treetable.border.color}', + color: '{content.color}', + padding: '0.75rem 1rem' + }, + columnFooter: { + fontWeight: '600' + }, + footer: { + background: '{content.background}', + borderColor: '{treetable.border.color}', + color: '{content.color}', + borderWidth: '0 0 1px 0', + padding: '0.75rem 1rem' + }, + columnResizerWidth: '0.5rem', + resizeIndicator: { + width: '1px', + color: '{primary.color}' + }, + sortIcon: { + color: '{text.muted.color}', + hoverColor: '{text.hover.muted.color}', + size: '0.875rem' + }, + loadingIcon: { + size: '2rem' + }, + nodeToggleButton: { + hoverBackground: '{content.hover.background}', + selectedHoverBackground: '{content.background}', + color: '{text.muted.color}', + hoverColor: '{text.color}', + selectedHoverColor: '{primary.color}', + size: '1.75rem', + borderRadius: '50%', + focusRing: { + width: '{focus.ring.width}', + style: '{focus.ring.style}', + color: '{focus.ring.color}', + offset: '{focus.ring.offset}', + shadow: '{focus.ring.shadow}' + } + }, + paginatorTop: { + borderColor: '{content.border.color}', + borderWidth: '0 0 1px 0' + }, + paginatorBottom: { + borderColor: '{content.border.color}', + borderWidth: '0 0 1px 0' + }, + colorScheme: { + light: { + root: { + borderColor: '{content.border.color}' + }, + bodyCell: { + selectedBorderColor: '{primary.100}' + } + }, + dark: { + root: { + borderColor: '{surface.800}' + }, + bodyCell: { + selectedBorderColor: '{primary.900}' + } + } + }, + css: ({ dt }) => ` +.p-treetable-header-cell, +.p-treetable-tbody > tr { + transition: none; +} +` +}; diff --git a/src/app/components/themes/material/virtualscroller/index.ts b/src/app/components/themes/material/virtualscroller/index.ts new file mode 100644 index 00000000000..38f68efca44 --- /dev/null +++ b/src/app/components/themes/material/virtualscroller/index.ts @@ -0,0 +1,11 @@ +export default { + loader: { + mask: { + background: '{content.background}', + color: '{text.muted.color}' + }, + icon: { + size: '2rem' + } + } +}; From 2c08b874285359cc5f3f7237ba2ae2e416f4f4c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Sun, 20 Oct 2024 17:05:59 +0300 Subject: [PATCH 47/49] Refactor tooltip & convert to standalone --- src/app/components/tooltip/tooltip.ts | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/app/components/tooltip/tooltip.ts b/src/app/components/tooltip/tooltip.ts index 1402f172b1c..0f6ce63d977 100755 --- a/src/app/components/tooltip/tooltip.ts +++ b/src/app/components/tooltip/tooltip.ts @@ -1,22 +1,19 @@ -import { CommonModule, isPlatformBrowser } from '@angular/common'; +import { isPlatformBrowser } from '@angular/common'; import { AfterViewInit, + booleanAttribute, Directive, ElementRef, HostListener, - Inject, + inject, Input, NgModule, NgZone, + numberAttribute, OnDestroy, - PLATFORM_ID, - Renderer2, SimpleChanges, TemplateRef, ViewContainerRef, - booleanAttribute, - inject, - numberAttribute, } from '@angular/core'; import { TooltipOptions } from 'primeng/api'; import { ConnectedOverlayScrollHandler, DomHandler } from 'primeng/dom'; @@ -32,6 +29,7 @@ import { BaseComponent } from 'primeng/basecomponent'; @Directive({ selector: '[pTooltip]', providers: [TooltipStyle], + standalone: true, }) export class Tooltip extends BaseComponent implements AfterViewInit, OnDestroy { /** @@ -764,8 +762,7 @@ export class Tooltip extends BaseComponent implements AfterViewInit, OnDestroy { } @NgModule({ - imports: [CommonModule], + imports: [Tooltip], exports: [Tooltip], - declarations: [Tooltip], }) export class TooltipModule {} From 5b4a7317dd08fa413f93a1a8b287db3480050e99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Sun, 20 Oct 2024 17:11:03 +0300 Subject: [PATCH 48/49] Enhance templating & improve documentation, add standalone support. --- angular.json | 2 +- api-generator/themedoc.json | 7600 +++++------ src/app/components/accordion/accordion.ts | 61 +- .../animateonscroll/animateonscroll.ts | 67 +- .../components/autocomplete/autocomplete.ts | 128 +- src/app/components/autofocus/autofocus.ts | 8 +- src/app/components/avatar/avatar.ts | 7 +- src/app/components/avatargroup/avatargroup.ts | 16 +- src/app/components/blockui/blockui.ts | 42 +- src/app/components/breadcrumb/breadcrumb.ts | 26 +- src/app/components/button/button.ts | 47 +- src/app/components/calendar/calendar.ts | 207 +- src/app/components/card/card.ts | 63 +- src/app/components/carousel/carousel.ts | 117 +- .../components/cascadeselect/cascadeselect.ts | 114 +- src/app/components/checkbox/checkbox.ts | 32 +- src/app/components/chip/chip.ts | 43 +- src/app/components/colorpicker/colorpicker.ts | 15 +- .../components/confirmdialog/confirmdialog.ts | 82 +- src/app/components/contextmenu/contextmenu.ts | 70 +- src/app/components/dataview/dataview.ts | 333 +- src/app/components/datepicker/datepicker.ts | 183 +- src/app/components/defer/defer.ts | 35 +- src/app/components/dialog/dialog.ts | 143 +- src/app/components/dock/dock.ts | 38 +- src/app/components/dragdrop/dragdrop.ts | 11 +- src/app/components/drawer/drawer.ts | 95 +- src/app/components/dropdown/dropdown.ts | 27 +- .../dynamicdialog/dynamicdialog.spec.ts | 4 +- .../components/dynamicdialog/dynamicdialog.ts | 17 +- .../dynamicdialog/dynamicdialogcontent.ts | 1 + src/app/components/editor/editor.ts | 9 +- src/app/components/fieldset/fieldset.ts | 71 +- src/app/components/fileupload/fileupload.ts | 156 +- src/app/components/floatlabel/floatlabel.ts | 6 +- src/app/components/fluid/fluid.ts | 9 +- src/app/components/focustrap/focustrap.ts | 23 +- src/app/components/galleria/galleria.ts | 19 +- src/app/components/iconfield/iconfield.ts | 37 +- src/app/components/image/image.ts | 61 +- src/app/components/inplace/inplace.ts | 66 +- src/app/components/inputgroup/inputgroup.ts | 10 +- src/app/components/inputicon/inputicon.ts | 22 +- src/app/components/inputmask/inputmask.ts | 44 +- src/app/components/inputnumber/inputnumber.ts | 97 +- src/app/components/inputotp/inputotp.ts | 46 +- src/app/components/inputswitch/inputswitch.ts | 11 +- src/app/components/inputtext/inputtext.ts | 17 +- .../components/inputtextarea/inputtextarea.ts | 26 +- .../inputtextarea/style/textareastyle.ts | 2 +- src/app/components/keyfilter/keyfilter.ts | 10 +- src/app/components/knob/knob.ts | 13 +- src/app/components/listbox/listbox.ts | 176 +- src/app/components/megamenu/megamenu.ts | 106 +- src/app/components/menu/menu.ts | 60 +- src/app/components/menubar/menubar.ts | 105 +- src/app/components/message/message.ts | 67 +- src/app/components/messages/messages.ts | 13 +- src/app/components/metergroup/metergroup.ts | 64 +- src/app/components/multiselect/multiselect.ts | 100 +- src/app/components/orderlist/orderlist.ts | 135 +- src/app/components/overlay/overlay.ts | 47 +- .../components/overlaypanel/overlaypanel.ts | 11 +- src/app/components/paginator/paginator.ts | 118 +- src/app/components/panel/panel.ts | 91 +- src/app/components/panelmenu/panelmenu.ts | 40 +- src/app/components/password/password.ts | 73 +- src/app/components/picklist/picklist.ts | 227 +- src/app/components/popover/popover.ts | 16 +- src/app/components/progressbar/progressbar.ts | 38 +- .../progressspinner/progressspinner.ts | 6 +- src/app/components/radiobutton/radiobutton.ts | 17 +- src/app/components/rating/rating.ts | 56 +- src/app/components/scroller/scroller.ts | 44 +- src/app/components/scrollpanel/scrollpanel.ts | 48 +- src/app/components/scrolltop/scrolltop.ts | 24 +- src/app/components/select/select.ts | 158 +- .../components/selectbutton/selectbutton.ts | 48 +- src/app/components/sidebar/sidebar.ts | 10 +- src/app/components/skeleton/skeleton.ts | 6 +- src/app/components/slider/slider.ts | 21 +- src/app/components/speeddial/speeddial.ts | 50 +- src/app/components/splitbutton/splitbutton.ts | 69 +- src/app/components/splitter/splitter.ts | 36 +- src/app/components/styleclass/styleclass.ts | 18 +- src/app/components/table/table.ts | 11028 ++++++++-------- src/app/components/tabmenu/tabmenu.ts | 34 +- src/app/components/tabs/tablist.ts | 18 +- src/app/components/tabview/tabview.ts | 14 +- src/app/components/tag/tag.ts | 17 +- src/app/components/terminal/terminal.ts | 6 +- .../textarea/style/textareastyle.ts | 2 +- src/app/components/textarea/textarea.ts | 5 +- src/app/components/tieredmenu/tieredmenu.ts | 60 +- src/app/components/timeline/timeline.ts | 37 +- src/app/components/toast/toast.ts | 54 +- .../components/togglebutton/togglebutton.ts | 42 +- .../components/toggleswitch/toggleswitch.ts | 7 +- src/app/components/toolbar/toolbar.ts | 50 +- src/app/components/tooltip/tooltip.ts | 1 + src/app/components/tree/tree.ts | 243 +- src/app/components/treeselect/treeselect.ts | 167 +- src/app/components/treetable/treetable.ts | 18 +- .../virtualscroller/virtualscroller.ts | 10 +- src/app/showcase/doc/Image/basicdoc.ts | 4 +- src/app/showcase/doc/Image/imagedoc.module.ts | 4 +- src/app/showcase/doc/Image/importdoc.ts | 2 +- src/app/showcase/doc/Image/previewdoc.ts | 4 +- .../doc/Image/previewimagesourcedoc.ts | 4 +- src/app/showcase/doc/accordion/importdoc.ts | 2 +- .../animateonscrolldoc.module.ts | 4 +- .../showcase/doc/animateonscroll/basicdoc.ts | 4 +- .../showcase/doc/animateonscroll/importdoc.ts | 2 +- src/app/showcase/doc/apidoc/index.json | 1933 ++- src/app/showcase/doc/autocomplete/basicdoc.ts | 13 +- .../showcase/doc/autocomplete/disableddoc.ts | 4 +- .../showcase/doc/autocomplete/dropdowndoc.ts | 15 +- .../showcase/doc/autocomplete/filleddoc.ts | 4 +- .../doc/autocomplete/floatlabeldoc.ts | 15 +- .../doc/autocomplete/forceselectiondoc.ts | 4 +- src/app/showcase/doc/autocomplete/groupdoc.ts | 10 +- .../showcase/doc/autocomplete/iftalabeldoc.ts | 11 +- .../showcase/doc/autocomplete/importdoc.ts | 2 +- .../showcase/doc/autocomplete/invaliddoc.ts | 4 +- .../showcase/doc/autocomplete/multipledoc.ts | 4 +- .../showcase/doc/autocomplete/objectsdoc.ts | 4 +- .../doc/autocomplete/reactiveformsdoc.ts | 13 +- .../doc/autocomplete/virtualscrolldoc.ts | 4 +- .../doc/autofocus/autofocusdoc.module.ts | 4 +- src/app/showcase/doc/autofocus/basicdoc.ts | 4 +- src/app/showcase/doc/autofocus/importdoc.ts | 2 +- src/app/showcase/doc/avatar/avatargroupdoc.ts | 6 +- src/app/showcase/doc/avatar/badgedoc.ts | 4 +- src/app/showcase/doc/avatar/importdoc.ts | 4 +- src/app/showcase/doc/avatar/shapedoc.ts | 4 +- src/app/showcase/doc/avatar/sizedoc.ts | 4 +- src/app/showcase/doc/avatar/templatedoc.ts | 4 +- src/app/showcase/doc/blockui/basicdoc.ts | 18 +- .../showcase/doc/blockui/blockuidoc.module.ts | 4 +- src/app/showcase/doc/blockui/documentdoc.ts | 12 +- src/app/showcase/doc/blockui/importdoc.ts | 2 +- src/app/showcase/doc/breadcrumb/basicdoc.ts | 4 +- .../doc/breadcrumb/breadcrumbdoc.module.ts | 4 +- src/app/showcase/doc/breadcrumb/importdoc.ts | 2 +- src/app/showcase/doc/breadcrumb/routerdoc.ts | 10 +- .../showcase/doc/breadcrumb/templatedoc.ts | 16 +- src/app/showcase/doc/card/carddoc.module.ts | 4 +- src/app/showcase/doc/card/importdoc.ts | 2 +- src/app/showcase/doc/carousel/basicdoc.ts | 128 +- .../doc/carousel/carouseldoc.module.ts | 8 +- src/app/showcase/doc/carousel/circulardoc.ts | 62 +- src/app/showcase/doc/carousel/importdoc.ts | 2 +- src/app/showcase/doc/carousel/numscrolldoc.ts | 54 +- .../showcase/doc/carousel/responsivedoc.ts | 141 +- src/app/showcase/doc/carousel/templatedoc.ts | 66 +- src/app/showcase/doc/carousel/verticaldoc.ts | 62 +- .../showcase/doc/cascadeselect/basicdoc.ts | 4 +- .../showcase/doc/cascadeselect/disableddoc.ts | 4 +- .../showcase/doc/cascadeselect/filleddoc.ts | 4 +- .../doc/cascadeselect/floatlabeldoc.ts | 6 +- .../doc/cascadeselect/iftalabeldoc.ts | 147 +- .../showcase/doc/cascadeselect/importdoc.ts | 2 +- .../showcase/doc/cascadeselect/invaliddoc.ts | 4 +- .../showcase/doc/cascadeselect/loadingdoc.ts | 4 +- .../doc/cascadeselect/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/checkbox/basicdoc.ts | 4 +- src/app/showcase/doc/checkbox/disableddoc.ts | 4 +- src/app/showcase/doc/checkbox/dynamicdoc.ts | 8 +- src/app/showcase/doc/checkbox/filleddoc.ts | 4 +- src/app/showcase/doc/checkbox/importdoc.ts | 2 +- .../showcase/doc/checkbox/indeterminatedoc.ts | 4 +- src/app/showcase/doc/checkbox/invaliddoc.ts | 4 +- src/app/showcase/doc/checkbox/multipledoc.ts | 4 +- .../showcase/doc/checkbox/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/chip/basicdoc.ts | 4 +- src/app/showcase/doc/chip/chipdoc.module.ts | 4 +- src/app/showcase/doc/chip/icondoc.ts | 4 +- src/app/showcase/doc/chip/imagedoc.ts | 4 +- src/app/showcase/doc/chip/importdoc.ts | 2 +- src/app/showcase/doc/chip/templatedoc.ts | 4 +- src/app/showcase/doc/colorpicker/basicdoc.ts | 4 +- .../doc/colorpicker/colorpickerdoc.module.ts | 4 +- .../showcase/doc/colorpicker/disableddoc.ts | 4 +- src/app/showcase/doc/colorpicker/formatdoc.ts | 4 +- src/app/showcase/doc/colorpicker/importdoc.ts | 2 +- src/app/showcase/doc/colorpicker/inlinedoc.ts | 4 +- .../doc/colorpicker/reactiveformsdoc.ts | 4 +- .../showcase/doc/confirmdialog/basicdoc.ts | 4 +- .../confirmdialog/confirmdialogdoc.module.ts | 4 +- .../showcase/doc/confirmdialog/headlessdoc.ts | 22 +- .../showcase/doc/confirmdialog/importdoc.ts | 2 +- .../showcase/doc/confirmdialog/positiondoc.ts | 4 +- .../showcase/doc/confirmdialog/templatedoc.ts | 22 +- .../showcase/doc/confirmpopup/templatedoc.ts | 24 +- src/app/showcase/doc/contextmenu/basicdoc.ts | 4 +- .../showcase/doc/contextmenu/commanddoc.ts | 6 +- .../doc/contextmenu/contextmenudoc.module.ts | 6 +- .../showcase/doc/contextmenu/documentdoc.ts | 8 +- src/app/showcase/doc/contextmenu/importdoc.ts | 2 +- src/app/showcase/doc/contextmenu/routerdoc.ts | 66 +- .../showcase/doc/contextmenu/templatedoc.ts | 24 +- .../doc/customicons/fontawesomedoc.ts | 6 +- src/app/showcase/doc/customicons/imagedoc.ts | 6 +- .../showcase/doc/customicons/materialdoc.ts | 6 +- src/app/showcase/doc/customicons/svgdoc.ts | 6 +- src/app/showcase/doc/dataview/basicdoc.ts | 92 +- .../doc/dataview/dataviewdoc.module.ts | 20 +- src/app/showcase/doc/dataview/importdoc.ts | 2 +- src/app/showcase/doc/dataview/layoutdoc.ts | 156 +- src/app/showcase/doc/dataview/loadingdoc.ts | 90 +- .../showcase/doc/dataview/paginationdoc.ts | 80 +- src/app/showcase/doc/dataview/sortingdoc.ts | 116 +- src/app/showcase/doc/datepicker/basicdoc.ts | 4 +- .../showcase/doc/datepicker/buttonbardoc.ts | 4 +- .../showcase/doc/datepicker/disableddoc.ts | 4 +- src/app/showcase/doc/datepicker/filleddoc.ts | 4 +- .../showcase/doc/datepicker/floatlabeldoc.ts | 6 +- src/app/showcase/doc/datepicker/formatdoc.ts | 4 +- src/app/showcase/doc/datepicker/importdoc.ts | 2 +- src/app/showcase/doc/datepicker/inlinedoc.ts | 4 +- src/app/showcase/doc/datepicker/invaliddoc.ts | 4 +- src/app/showcase/doc/datepicker/minmaxdox.ts | 4 +- src/app/showcase/doc/datepicker/monthdoc.ts | 4 +- .../showcase/doc/datepicker/multipledoc.ts | 4 +- .../doc/datepicker/multiplemonths.doc.ts | 4 +- src/app/showcase/doc/datepicker/rangedoc.ts | 4 +- .../doc/datepicker/reactiveformsdoc.ts | 4 +- .../showcase/doc/datepicker/templatedoc.ts | 34 +- src/app/showcase/doc/datepicker/timedoc.ts | 6 +- src/app/showcase/doc/datepicker/touchuidoc.ts | 4 +- src/app/showcase/doc/datepicker/yeardoc.ts | 4 +- src/app/showcase/doc/defer/basicdoc.ts | 4 +- src/app/showcase/doc/defer/datatabledoc.ts | 4 +- src/app/showcase/doc/defer/deferdoc.module.ts | 4 +- src/app/showcase/doc/defer/importdoc.ts | 2 +- src/app/showcase/doc/dialog/basicdoc.ts | 4 +- .../showcase/doc/dialog/dialogdoc.module.ts | 4 +- src/app/showcase/doc/dialog/headlessdoc.ts | 10 +- src/app/showcase/doc/dialog/importdoc.ts | 2 +- src/app/showcase/doc/dialog/longcontentdoc.ts | 4 +- src/app/showcase/doc/dialog/maximizabledoc.ts | 4 +- src/app/showcase/doc/dialog/positiondoc.ts | 4 +- src/app/showcase/doc/dialog/responsivedoc.ts | 4 +- src/app/showcase/doc/dialog/templatedoc.ts | 16 +- .../showcase/doc/dialog/withoutmodaldoc.ts | 4 +- src/app/showcase/doc/dock/basicdoc.ts | 12 +- src/app/showcase/doc/dock/dockdoc.module.ts | 24 +- src/app/showcase/doc/dock/importdoc.ts | 2 +- src/app/showcase/doc/dragdrop/datatabledoc.ts | 4 +- .../doc/dragdrop/dragdropdoc.module.ts | 4 +- .../showcase/doc/drawer/drawerdoc.module.ts | 12 +- src/app/showcase/doc/drawer/headlessdoc.ts | 12 +- src/app/showcase/doc/drawer/templatedoc.ts | 14 +- .../dynamicdialog/dynamicdialogdoc.module.ts | 18 +- .../showcase/doc/dynamicdialog/exampledoc.ts | 4 +- .../showcase/doc/dynamicdialog/importdoc.ts | 2 +- src/app/showcase/doc/editor/basicdoc.ts | 4 +- .../showcase/doc/editor/customtoolbardoc.ts | 6 +- .../showcase/doc/editor/editordoc.module.ts | 4 +- src/app/showcase/doc/editor/importdoc.ts | 2 +- .../showcase/doc/editor/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/editor/readonlydoc.ts | 4 +- src/app/showcase/doc/fieldset/importdoc.ts | 2 +- src/app/showcase/doc/fieldset/templatedoc.ts | 6 +- .../showcase/doc/fileupload/advanceddoc.ts | 16 +- src/app/showcase/doc/fileupload/autodoc.ts | 36 +- src/app/showcase/doc/fileupload/basicdoc.ts | 4 +- .../doc/fileupload/fileuploaddoc.module.ts | 12 +- src/app/showcase/doc/fileupload/importdoc.ts | 2 +- .../showcase/doc/fileupload/templatedoc.ts | 30 +- src/app/showcase/doc/floatlabel/importdoc.ts | 2 +- src/app/showcase/doc/fluid/basicdoc.ts | 4 +- src/app/showcase/doc/fluid/fluiddoc.module.ts | 4 +- src/app/showcase/doc/fluid/importdoc.ts | 2 +- src/app/showcase/doc/focustrap/importdoc.ts | 2 +- src/app/showcase/doc/galleria/basicdoc.ts | 30 +- .../doc/galleria/galleriadoc.module.ts | 16 +- .../doc/galleria/indicator/positioneddoc.ts | 6 +- src/app/showcase/doc/galleria/thumbnaildoc.ts | 4 +- .../showcase/doc/guides/guidesdoc.module.ts | 4 +- .../guides/migration/renamedcomponentsdoc.ts | 2 +- src/app/showcase/doc/iconfield/basicdoc.ts | 6 +- src/app/showcase/doc/iconfield/importdoc.ts | 4 +- src/app/showcase/doc/iconfield/templatedoc.ts | 6 +- src/app/showcase/doc/inplace/datadoc.ts | 10 +- src/app/showcase/doc/inplace/lazydoc.ts | 22 +- src/app/showcase/doc/inputgroup/buttondoc.ts | 4 +- .../showcase/doc/inputgroup/checkboxdoc.ts | 8 +- src/app/showcase/doc/inputgroup/importdoc.ts | 2 +- .../showcase/doc/inputgroup/multipledoc.ts | 4 +- src/app/showcase/doc/inputmask/basicdoc.ts | 4 +- src/app/showcase/doc/inputmask/disableddoc.ts | 4 +- src/app/showcase/doc/inputmask/filleddoc.ts | 4 +- .../showcase/doc/inputmask/floatlabeldoc.ts | 6 +- src/app/showcase/doc/inputmask/importdoc.ts | 2 +- src/app/showcase/doc/inputmask/invaliddoc.ts | 4 +- src/app/showcase/doc/inputmask/maskdoc.ts | 6 +- src/app/showcase/doc/inputmask/optionaldoc.ts | 4 +- .../doc/inputmask/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/inputmask/slotchardoc.ts | 4 +- .../showcase/doc/inputnumber/buttonsdoc.ts | 6 +- .../showcase/doc/inputnumber/currencydoc.ts | 6 +- .../showcase/doc/inputnumber/disableddoc.ts | 4 +- src/app/showcase/doc/inputnumber/filleddoc.ts | 4 +- .../showcase/doc/inputnumber/floatlabeldoc.ts | 6 +- src/app/showcase/doc/inputnumber/importdoc.ts | 2 +- .../showcase/doc/inputnumber/invaliddoc.ts | 4 +- src/app/showcase/doc/inputnumber/localedoc.ts | 6 +- .../showcase/doc/inputnumber/numeralsdoc.ts | 6 +- .../doc/inputnumber/prefixsuffixdoc.ts | 6 +- .../doc/inputnumber/reactiveformsdoc.ts | 4 +- .../showcase/doc/inputnumber/verticaldoc.ts | 4 +- src/app/showcase/doc/inputotp/basicdoc.ts | 4 +- src/app/showcase/doc/inputotp/importdoc.ts | 2 +- .../doc/inputotp/inputotpdoc.module.ts | 4 +- .../showcase/doc/inputotp/integeronlydoc.ts | 4 +- src/app/showcase/doc/inputotp/maskdoc.ts | 4 +- .../showcase/doc/inputtext/floatlabeldoc.ts | 4 +- src/app/showcase/doc/keyfilter/importdoc.ts | 2 +- .../doc/keyfilter/keyfilterdoc.module.ts | 4 +- src/app/showcase/doc/knob/basicdoc.ts | 4 +- src/app/showcase/doc/knob/colordoc.ts | 4 +- src/app/showcase/doc/knob/disableddoc.ts | 4 +- src/app/showcase/doc/knob/importdoc.ts | 2 +- src/app/showcase/doc/knob/knobdoc.module.ts | 4 +- src/app/showcase/doc/knob/minmaxdoc.ts | 4 +- src/app/showcase/doc/knob/reactivedoc.ts | 4 +- src/app/showcase/doc/knob/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/knob/readonlydoc.ts | 4 +- src/app/showcase/doc/knob/sizedoc.ts | 4 +- src/app/showcase/doc/knob/stepdoc.ts | 4 +- src/app/showcase/doc/knob/strokedoc.ts | 4 +- src/app/showcase/doc/knob/templatedoc.ts | 4 +- src/app/showcase/doc/listbox/basicdoc.ts | 4 +- src/app/showcase/doc/listbox/checkmarkdoc.ts | 23 +- src/app/showcase/doc/listbox/disableddoc.ts | 4 +- src/app/showcase/doc/listbox/filterdoc.ts | 4 +- src/app/showcase/doc/listbox/importdoc.ts | 2 +- src/app/showcase/doc/listbox/invaliddoc.ts | 4 +- .../showcase/doc/listbox/listboxdoc.module.ts | 4 +- src/app/showcase/doc/listbox/multipledoc.ts | 4 +- .../showcase/doc/listbox/reactiveformsdoc.ts | 4 +- .../showcase/doc/listbox/virtualscrolldoc.ts | 4 +- src/app/showcase/doc/megamenu/basicdoc.ts | 4 +- src/app/showcase/doc/megamenu/importdoc.ts | 2 +- .../doc/megamenu/megamenudoc.module.ts | 4 +- src/app/showcase/doc/megamenu/routerdoc.ts | 9 +- src/app/showcase/doc/megamenu/templatedoc.ts | 134 +- src/app/showcase/doc/megamenu/verticaldoc.ts | 4 +- src/app/showcase/doc/menu/basicdoc.ts | 4 +- src/app/showcase/doc/menu/commanddoc.ts | 4 +- src/app/showcase/doc/menu/groupdoc.ts | 4 +- src/app/showcase/doc/menu/importdoc.ts | 2 +- src/app/showcase/doc/menu/menudoc.module.ts | 17 +- src/app/showcase/doc/menu/popupdoc.ts | 4 +- src/app/showcase/doc/menu/routerdoc.ts | 10 +- src/app/showcase/doc/menubar/basicdoc.ts | 4 +- src/app/showcase/doc/menubar/commanddoc.ts | 4 +- src/app/showcase/doc/menubar/importdoc.ts | 2 +- .../showcase/doc/menubar/menubardoc.module.ts | 8 +- src/app/showcase/doc/menubar/routerdoc.ts | 10 +- src/app/showcase/doc/menubar/templatedoc.ts | 45 +- src/app/showcase/doc/message/basicdoc.ts | 4 +- src/app/showcase/doc/message/closabledoc.ts | 6 +- src/app/showcase/doc/message/dynamicdoc.ts | 28 +- src/app/showcase/doc/message/formdoc.ts | 6 +- src/app/showcase/doc/message/importdoc.ts | 2 +- src/app/showcase/doc/message/lifedoc.ts | 4 +- src/app/showcase/doc/metergroup/basicdoc.ts | 4 +- src/app/showcase/doc/metergroup/icondoc.ts | 4 +- src/app/showcase/doc/metergroup/importdoc.ts | 2 +- src/app/showcase/doc/metergroup/labeldoc.ts | 4 +- .../doc/metergroup/metergroupdoc.module.ts | 5 +- src/app/showcase/doc/metergroup/minmaxdoc.ts | 4 +- .../showcase/doc/metergroup/multipledoc.ts | 4 +- .../showcase/doc/metergroup/templatedoc.ts | 40 +- .../showcase/doc/metergroup/verticaldoc.ts | 4 +- .../showcase/doc/multiselect/floatlabeldoc.ts | 4 +- .../showcase/doc/multiselect/iftalabeldoc.ts | 21 +- src/app/showcase/doc/orderlist/dragdropdoc.ts | 22 +- src/app/showcase/doc/orderlist/importdoc.ts | 2 +- src/app/showcase/doc/orderlist/templatedoc.ts | 58 +- src/app/showcase/doc/overlay/templatedoc.ts | 10 +- .../doc/paginator/paginatordoc.module.ts | 14 +- src/app/showcase/doc/paginator/templatedoc.ts | 4 +- src/app/showcase/doc/panel/importdoc.ts | 2 +- src/app/showcase/doc/panel/paneldoc.module.ts | 4 +- src/app/showcase/doc/panelmenu/basicdoc.ts | 4 +- src/app/showcase/doc/panelmenu/commanddoc.ts | 4 +- .../showcase/doc/panelmenu/controlleddoc.ts | 4 +- src/app/showcase/doc/panelmenu/importdoc.ts | 2 +- src/app/showcase/doc/panelmenu/multipledoc.ts | 4 +- .../doc/panelmenu/panelmenudoc.module.ts | 4 +- src/app/showcase/doc/panelmenu/routerdoc.ts | 22 +- src/app/showcase/doc/panelmenu/templatedoc.ts | 24 +- src/app/showcase/doc/picklist/importdoc.ts | 2 +- .../doc/picklist/picklistdoc.module.ts | 4 +- src/app/showcase/doc/picklist/templatedoc.ts | 30 +- src/app/showcase/doc/popover/basicdoc.ts | 6 +- src/app/showcase/doc/popover/datatabledoc.ts | 69 +- src/app/showcase/doc/popover/importdoc.ts | 2 +- src/app/showcase/doc/popover/templatedoc.ts | 6 +- src/app/showcase/doc/progressbar/basicdoc.ts | 4 +- .../showcase/doc/progressbar/dynamicdoc.ts | 6 +- src/app/showcase/doc/progressbar/importdoc.ts | 2 +- .../doc/progressbar/indeterminatedoc.ts | 4 +- .../doc/progressbar/progressbardoc.module.ts | 4 +- .../showcase/doc/progressbar/templatedoc.ts | 4 +- .../showcase/doc/progressspinner/basicdoc.ts | 4 +- .../showcase/doc/progressspinner/customdoc.ts | 4 +- .../showcase/doc/progressspinner/importdoc.ts | 2 +- .../progressspinnerdoc.module.ts | 4 +- .../showcase/doc/radiobutton/disableddoc.ts | 4 +- .../showcase/doc/radiobutton/dynamicdoc.ts | 4 +- src/app/showcase/doc/radiobutton/filleddoc.ts | 4 +- src/app/showcase/doc/radiobutton/groupdoc.ts | 4 +- src/app/showcase/doc/radiobutton/importdoc.ts | 2 +- .../showcase/doc/radiobutton/invaliddoc.ts | 4 +- .../doc/radiobutton/radiobuttondoc.module.ts | 4 +- .../doc/radiobutton/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/rating/basicdoc.ts | 4 +- src/app/showcase/doc/rating/disableddoc.ts | 4 +- src/app/showcase/doc/rating/importdoc.ts | 2 +- .../showcase/doc/rating/numberofstarsdoc.ts | 4 +- .../showcase/doc/rating/ratingdoc.module.ts | 4 +- .../showcase/doc/rating/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/rating/readonlydoc.ts | 4 +- src/app/showcase/doc/rating/templatedoc.ts | 4 +- .../showcase/doc/rating/withoutcanceldoc.ts | 4 +- src/app/showcase/doc/ripple/customdoc.ts | 4 +- src/app/showcase/doc/ripple/defaultdoc.ts | 4 +- src/app/showcase/doc/ripple/importdoc.ts | 2 +- .../showcase/doc/ripple/rippledoc.module.ts | 5 +- src/app/showcase/doc/scroller/importdoc.ts | 2 +- .../doc/scroller/scrollerdoc.module.ts | 6 +- .../showcase/doc/scroller/scrolloptionsdoc.ts | 6 +- src/app/showcase/doc/scroller/templatedoc.ts | 18 +- src/app/showcase/doc/scrollpanel/importdoc.ts | 2 +- .../doc/scrollpanel/scrollpaneldoc.module.ts | 4 +- src/app/showcase/doc/scrolltop/basicdoc.ts | 4 +- src/app/showcase/doc/scrolltop/elementdoc.ts | 4 +- src/app/showcase/doc/scrolltop/importdoc.ts | 2 +- .../doc/scrolltop/scrolltopdoc.module.ts | 4 +- src/app/showcase/doc/select/basicdoc.ts | 4 +- src/app/showcase/doc/select/checkmarkdoc.ts | 4 +- src/app/showcase/doc/select/clearicondoc.ts | 4 +- src/app/showcase/doc/select/disableddoc.ts | 4 +- src/app/showcase/doc/select/editabledoc.ts | 4 +- src/app/showcase/doc/select/filleddoc.ts | 4 +- src/app/showcase/doc/select/floatlabeldoc.ts | 6 +- src/app/showcase/doc/select/iftalabeldoc.ts | 21 +- src/app/showcase/doc/select/importdoc.ts | 2 +- src/app/showcase/doc/select/invaliddoc.ts | 4 +- .../doc/select/lazyvirtualscrolldoc.ts | 4 +- .../showcase/doc/select/loadingstatedoc.ts | 4 +- .../showcase/doc/select/reactiveformsdoc.ts | 4 +- .../showcase/doc/select/virtualscrolldoc.ts | 4 +- src/app/showcase/doc/selectbutton/basicdoc.ts | 4 +- .../showcase/doc/selectbutton/disableddoc.ts | 4 +- .../showcase/doc/selectbutton/importdoc.ts | 2 +- .../showcase/doc/selectbutton/invaliddoc.ts | 4 +- .../showcase/doc/selectbutton/multipledoc.ts | 4 +- .../doc/selectbutton/reactiveformsdoc.ts | 4 +- .../selectbutton/selectbuttondoc.module.ts | 4 +- src/app/showcase/doc/skeleton/carddoc.ts | 4 +- src/app/showcase/doc/skeleton/datatabledoc.ts | 4 +- src/app/showcase/doc/skeleton/importdoc.ts | 2 +- src/app/showcase/doc/skeleton/listdoc.ts | 4 +- src/app/showcase/doc/skeleton/shapesdoc.ts | 4 +- .../doc/skeleton/skeletondoc.module.ts | 4 +- src/app/showcase/doc/slider/basicdoc.ts | 4 +- src/app/showcase/doc/slider/filterdoc.ts | 15 +- src/app/showcase/doc/slider/importdoc.ts | 2 +- src/app/showcase/doc/slider/inputdoc.ts | 4 +- src/app/showcase/doc/slider/rangedoc.ts | 4 +- .../showcase/doc/slider/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/slider/stepdoc.ts | 4 +- src/app/showcase/doc/slider/verticaldoc.ts | 4 +- src/app/showcase/doc/speeddial/circledoc.ts | 4 +- src/app/showcase/doc/speeddial/importdoc.ts | 2 +- src/app/showcase/doc/speeddial/lineardoc.ts | 4 +- src/app/showcase/doc/speeddial/maskdoc.ts | 4 +- .../doc/speeddial/quartercircledoc.ts | 4 +- .../showcase/doc/speeddial/semicircledoc.ts | 4 +- .../doc/speeddial/speeddialdoc.module.ts | 17 +- src/app/showcase/doc/speeddial/styledoc.ts | 46 - src/app/showcase/doc/speeddial/templatedoc.ts | 91 +- src/app/showcase/doc/speeddial/tooltipdoc.ts | 59 +- src/app/showcase/doc/splitbutton/basicdoc.ts | 4 +- .../showcase/doc/splitbutton/disableddoc.ts | 4 +- src/app/showcase/doc/splitbutton/iconsdoc.ts | 49 +- src/app/showcase/doc/splitbutton/importdoc.ts | 2 +- src/app/showcase/doc/splitbutton/nesteddoc.ts | 4 +- .../showcase/doc/splitbutton/outlineddoc.ts | 4 +- src/app/showcase/doc/splitbutton/raiseddoc.ts | 4 +- .../showcase/doc/splitbutton/raisedtextdoc.ts | 4 +- .../showcase/doc/splitbutton/roundeddoc.ts | 4 +- .../showcase/doc/splitbutton/severitydoc.ts | 4 +- src/app/showcase/doc/splitbutton/sizesdoc.ts | 4 +- .../doc/splitbutton/splitbuttondoc.module.ts | 3 +- .../showcase/doc/splitbutton/templatedoc.ts | 32 +- src/app/showcase/doc/splitbutton/textdoc.ts | 4 +- src/app/showcase/doc/splitter/importdoc.ts | 2 +- src/app/showcase/doc/splitter/nesteddoc.ts | 12 +- .../doc/splitter/splitterdoc.module.ts | 4 +- .../showcase/doc/stepper/stepperdoc.module.ts | 12 +- src/app/showcase/doc/stepper/templatedoc.ts | 12 +- src/app/showcase/doc/steps/stepsdoc.module.ts | 8 +- src/app/showcase/doc/styleclass/importdoc.ts | 2 +- .../doc/styleclass/styleclassdoc.module.ts | 4 +- .../showcase/doc/styleclass/toggleclassdoc.ts | 4 +- src/app/showcase/doc/table/basicdoc.ts | 13 +- src/app/showcase/doc/table/celleditdoc.ts | 112 +- .../doc/table/checkboxselectiondoc.ts | 30 +- src/app/showcase/doc/table/columngroupdoc.ts | 148 +- .../doc/table/columnresizeexpandmodedoc.ts | 32 +- .../doc/table/columnresizefitmodedoc.ts | 30 +- .../table/columnresizescrollablemodedoc.ts | 36 +- src/app/showcase/doc/table/columntoggledoc.ts | 55 +- src/app/showcase/doc/table/contextmenudoc.ts | 32 +- src/app/showcase/doc/table/customersdoc.ts | 222 +- src/app/showcase/doc/table/dynamicdoc.ts | 13 +- .../doc/table/expandablerowgroupdoc.ts | 110 +- .../showcase/doc/table/filteradvanceddoc.ts | 341 +- src/app/showcase/doc/table/filterbasic.ts | 42 +- .../showcase/doc/table/filtersorteditdoc.ts | 80 +- .../showcase/doc/table/frozencolumnsdoc.ts | 36 +- src/app/showcase/doc/table/gridlinesdoc.ts | 24 +- .../showcase/doc/table/horizontalscrolldoc.ts | 20 +- .../doc/table/multiplecolumnssortdoc.ts | 32 +- .../doc/table/multipleselectiondoc.ts | 42 +- .../showcase/doc/table/paginatorbasicdoc.ts | 15 +- .../doc/table/paginatorprogrammaticdoc.ts | 74 +- src/app/showcase/doc/table/presortdoc.ts | 37 +- src/app/showcase/doc/table/productsdoc.ts | 778 +- .../doc/table/radiobuttonselectiondoc.ts | 28 +- .../showcase/doc/table/removablesortdoc.ts | 35 +- src/app/showcase/doc/table/reorderdoc.ts | 40 +- src/app/showcase/doc/table/roweditdoc.ts | 78 +- src/app/showcase/doc/table/rowexpansiondoc.ts | 119 +- .../showcase/doc/table/rowspangroupingdoc.ts | 80 +- .../showcase/doc/table/selectioneventsdoc.ts | 38 +- .../showcase/doc/table/singlecolumnsortdoc.ts | 36 +- .../showcase/doc/table/singleselectiondoc.ts | 24 +- src/app/showcase/doc/table/sizedoc.ts | 38 +- src/app/showcase/doc/table/statefuldoc.ts | 108 +- src/app/showcase/doc/table/stripeddoc.ts | 26 +- src/app/showcase/doc/table/styledoc.ts | 48 +- .../doc/table/subheadergroupingdoc.ts | 86 +- src/app/showcase/doc/table/tabledoc.module.ts | 2 + .../showcase/doc/table/verticalscrolldoc.ts | 28 +- .../showcase/doc/table/virtualscrolldoc.ts | 34 +- .../doc/table/virtualscrolllazydoc.ts | 54 +- src/app/showcase/doc/tag/basicdoc.ts | 4 +- src/app/showcase/doc/tag/icondoc.ts | 4 +- src/app/showcase/doc/tag/importdoc.ts | 2 +- src/app/showcase/doc/tag/pilldoc.ts | 4 +- src/app/showcase/doc/tag/severitydoc.ts | 4 +- src/app/showcase/doc/tag/tagdoc.module.ts | 4 +- src/app/showcase/doc/tag/templatedoc.ts | 4 +- .../doc/tailwind/tailwinddoc.module.ts | 28 +- src/app/showcase/doc/terminal/basicdoc.ts | 4 +- src/app/showcase/doc/terminal/importdoc.ts | 2 +- .../doc/terminal/terminaldoc.module.ts | 4 +- .../showcase/doc/textarea/autoresizedoc.ts | 4 +- src/app/showcase/doc/textarea/basicdoc.ts | 4 +- src/app/showcase/doc/textarea/disableddoc.ts | 4 +- src/app/showcase/doc/textarea/filleddoc.ts | 4 +- .../showcase/doc/textarea/floatlabeldoc.ts | 6 +- src/app/showcase/doc/textarea/importdoc.ts | 2 +- src/app/showcase/doc/textarea/invaliddoc.ts | 4 +- src/app/showcase/doc/textarea/keyfilterdoc.ts | 4 +- .../showcase/doc/textarea/reactiveformsdoc.ts | 4 +- .../showcase/doc/theming/scopedtokensdoc.ts | 4 +- src/app/showcase/doc/theming/specifitydoc.ts | 4 +- .../showcase/doc/theming/themingdoc.module.ts | 14 +- src/app/showcase/doc/tieredmenu/basicdoc.ts | 4 +- src/app/showcase/doc/tieredmenu/commanddoc.ts | 11 +- src/app/showcase/doc/tieredmenu/importdoc.ts | 2 +- src/app/showcase/doc/tieredmenu/popupdoc.ts | 4 +- src/app/showcase/doc/tieredmenu/routerdoc.ts | 22 +- .../showcase/doc/tieredmenu/templatedoc.ts | 24 +- .../doc/tieredmenu/tieredmenudoc.module.ts | 16 +- src/app/showcase/doc/timeline/alignmentdoc.ts | 4 +- src/app/showcase/doc/timeline/basicdoc.ts | 4 +- .../showcase/doc/timeline/horizontaldoc.ts | 4 +- src/app/showcase/doc/timeline/importdoc.ts | 2 +- src/app/showcase/doc/timeline/oppositedoc.ts | 4 +- src/app/showcase/doc/timeline/templatedoc.ts | 4 +- .../doc/timeline/timelinedoc.module.ts | 4 +- src/app/showcase/doc/toast/basicdoc.ts | 6 +- src/app/showcase/doc/toast/cleardoc.ts | 32 +- src/app/showcase/doc/toast/headlessdoc.ts | 22 +- src/app/showcase/doc/toast/importdoc.ts | 2 +- src/app/showcase/doc/toast/lifedoc.ts | 26 +- src/app/showcase/doc/toast/responsivedoc.ts | 18 +- src/app/showcase/doc/toast/severitydoc.ts | 6 +- src/app/showcase/doc/toast/targetdoc.ts | 38 +- src/app/showcase/doc/toast/templatedoc.ts | 81 +- src/app/showcase/doc/toast/toastdoc.module.ts | 18 +- src/app/showcase/doc/togglebutton/basicdoc.ts | 4 +- .../doc/togglebutton/customizeddoc.ts | 4 +- .../showcase/doc/togglebutton/disableddoc.ts | 4 +- .../showcase/doc/togglebutton/importdoc.ts | 2 +- .../doc/togglebutton/reactiveformsdoc.ts | 4 +- .../togglebutton/togglebuttondoc.module.ts | 4 +- src/app/showcase/doc/toggleswitch/basicdoc.ts | 4 +- .../showcase/doc/toggleswitch/disableddoc.ts | 4 +- .../showcase/doc/toggleswitch/importdoc.ts | 2 +- .../doc/toggleswitch/inputswitchdoc.module.ts | 6 +- .../showcase/doc/toggleswitch/invaliddoc.ts | 4 +- .../doc/toggleswitch/preselectiondoc.ts | 4 +- .../doc/toggleswitch/reactiveformsdoc.ts | 4 +- src/app/showcase/doc/toolbar/basicdoc.ts | 10 +- src/app/showcase/doc/toolbar/customdoc.ts | 16 +- src/app/showcase/doc/toolbar/importdoc.ts | 2 +- src/app/showcase/doc/tooltip/autohidedoc.ts | 4 +- src/app/showcase/doc/tooltip/customdoc.ts | 4 +- src/app/showcase/doc/tooltip/delaydoc.ts | 4 +- src/app/showcase/doc/tooltip/eventdoc.ts | 4 +- src/app/showcase/doc/tooltip/importdoc.ts | 2 +- src/app/showcase/doc/tooltip/optionsdoc.ts | 4 +- src/app/showcase/doc/tooltip/positiondoc.ts | 4 +- .../showcase/doc/tooltip/tooltipdoc.module.ts | 4 +- src/app/showcase/doc/tree/basicdoc.ts | 4 +- src/app/showcase/doc/tree/checkboxdoc.ts | 4 +- src/app/showcase/doc/tree/contextmenudoc.ts | 4 +- src/app/showcase/doc/tree/controlleddoc.ts | 2 +- src/app/showcase/doc/tree/dragdropdoc.ts | 4 +- src/app/showcase/doc/tree/eventdoc.ts | 4 +- src/app/showcase/doc/tree/filterdoc.ts | 4 +- src/app/showcase/doc/tree/importdoc.ts | 2 +- src/app/showcase/doc/tree/lazydoc.ts | 6 +- src/app/showcase/doc/tree/multipledoc.ts | 12 +- src/app/showcase/doc/tree/singledoc.ts | 4 +- src/app/showcase/doc/tree/styledoc.ts | 62 - src/app/showcase/doc/tree/treedoc.module.ts | 2 - src/app/showcase/doc/tree/virtualscrolldoc.ts | 4 +- .../showcase/doc/tree/virtualscrolllazydoc.ts | 4 +- src/app/showcase/doc/treeselect/basicdoc.ts | 4 +- .../showcase/doc/treeselect/checkboxdoc.ts | 4 +- .../showcase/doc/treeselect/disableddoc.ts | 4 +- src/app/showcase/doc/treeselect/filleddoc.ts | 4 +- src/app/showcase/doc/treeselect/filterdoc.ts | 4 +- .../showcase/doc/treeselect/floatlabeldoc.ts | 6 +- .../showcase/doc/treeselect/iftalabeldoc.ts | 9 +- src/app/showcase/doc/treeselect/importdoc.ts | 2 +- src/app/showcase/doc/treeselect/invaliddoc.ts | 4 +- src/app/showcase/doc/treeselect/lazydoc.ts | 4 +- .../showcase/doc/treeselect/multipledoc.ts | 4 +- .../doc/treeselect/reactiveformsdoc.ts | 2 +- .../doc/treeselect/virtualscrolldoc.ts | 4 +- src/app/showcase/doc/treetable/filterdoc.ts | 38 +- .../doc/treetable/flexiblescrolldoc.ts | 4 +- src/app/showcase/doc/treetable/sizedoc.ts | 42 +- .../doc/treetable/treetabledoc.module.ts | 8 +- .../app.configurator.component.ts | 1 - .../layout/doc/codeeditor/templates.ts | 302 +- .../layout/menu/app.menu.component.ts | 8 +- .../layout/menu/app.menuitem.component.ts | 8 +- .../layout/news/app.news.component.ts | 10 +- .../layout/templates/templateyoutube.ts | 4 +- .../layout/topbar/app.topbar.component.ts | 6 +- src/app/showcase/pages/blockui/index.ts | 15 +- .../pages/checkbox/checkboxdemo.module.ts | 0 src/app/showcase/pages/defer/index.ts | 11 +- .../pages/landing/herosection.component.ts | 22 +- .../landing/samples/cardsapp.component.ts | 62 +- .../landing/samples/chatapp.component.ts | 38 +- .../landing/samples/customersapp.component.ts | 39 +- .../landing/samples/inboxapp.component.ts | 32 +- .../landing/samples/moviesapp.component.ts | 26 +- .../landing/samples/overviewapp.component.ts | 8 +- .../pages/landing/themesection.component.ts | 22 +- src/app/showcase/pages/lts/lts.module.ts | 0 .../pages/select/selectdemo.module.ts | 0 src/app/showcase/pages/stepper/index.ts | 2 +- src/app/showcase/pages/table/index.ts | 62 +- src/app/showcase/pages/toast/toastdemo.html | 0 679 files changed, 18487 insertions(+), 16625 deletions(-) delete mode 100644 src/app/showcase/doc/speeddial/styledoc.ts delete mode 100644 src/app/showcase/doc/tree/styledoc.ts create mode 100755 src/app/showcase/pages/checkbox/checkboxdemo.module.ts create mode 100755 src/app/showcase/pages/lts/lts.module.ts create mode 100755 src/app/showcase/pages/select/selectdemo.module.ts create mode 100755 src/app/showcase/pages/toast/toastdemo.html diff --git a/angular.json b/angular.json index c67b15de71b..724cf6ef891 100644 --- a/angular.json +++ b/angular.json @@ -78,7 +78,7 @@ "development": { "optimization": false, "extractLicenses": false, - "sourceMap": true + "sourceMap": false } }, "defaultConfiguration": "production" diff --git a/api-generator/themedoc.json b/api-generator/themedoc.json index 68b28e881e5..42139119105 100644 --- a/api-generator/themedoc.json +++ b/api-generator/themedoc.json @@ -48,7 +48,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L17" } ], "type": { @@ -92,7 +92,7 @@ "fileName": "accordion/index.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L23" } ], "type": { @@ -114,7 +114,7 @@ "fileName": "accordion/index.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L17" } ] } @@ -141,7 +141,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L28" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "accordion/index.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L34" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "accordion/index.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L40" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "accordion/index.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L28" } ] } @@ -275,7 +275,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L45" } ], "type": { @@ -319,7 +319,7 @@ "fileName": "accordion/index.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L51" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "accordion/index.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L57" } ], "type": { @@ -399,7 +399,7 @@ "fileName": "accordion/index.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L63" } ], "type": { @@ -439,7 +439,7 @@ "fileName": "accordion/index.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L69" } ], "type": { @@ -479,7 +479,7 @@ "fileName": "accordion/index.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L75" } ], "type": { @@ -519,7 +519,7 @@ "fileName": "accordion/index.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L81" } ], "type": { @@ -559,7 +559,7 @@ "fileName": "accordion/index.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L87" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "accordion/index.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L93" } ], "type": { @@ -639,7 +639,7 @@ "fileName": "accordion/index.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L99" } ], "type": { @@ -679,7 +679,7 @@ "fileName": "accordion/index.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L105" } ], "type": { @@ -719,7 +719,7 @@ "fileName": "accordion/index.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L111" } ], "type": { @@ -759,7 +759,7 @@ "fileName": "accordion/index.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L117" } ], "type": { @@ -788,7 +788,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L121" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "accordion/index.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L127" } ], "type": { @@ -872,7 +872,7 @@ "fileName": "accordion/index.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L133" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "accordion/index.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L139" } ], "type": { @@ -952,7 +952,7 @@ "fileName": "accordion/index.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L145" } ], "type": { @@ -992,7 +992,7 @@ "fileName": "accordion/index.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L151" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "accordion/index.ts", "line": 121, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L121" } ] } @@ -1045,7 +1045,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L156" } ], "type": { @@ -1089,7 +1089,7 @@ "fileName": "accordion/index.ts", "line": 162, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L162" } ], "type": { @@ -1129,7 +1129,7 @@ "fileName": "accordion/index.ts", "line": 168, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L168" } ], "type": { @@ -1169,7 +1169,7 @@ "fileName": "accordion/index.ts", "line": 174, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L174" } ], "type": { @@ -1209,7 +1209,7 @@ "fileName": "accordion/index.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L180" } ], "type": { @@ -1234,7 +1234,7 @@ "fileName": "accordion/index.ts", "line": 156, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L156" } ] } @@ -1261,7 +1261,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L185" } ], "type": { @@ -1305,7 +1305,7 @@ "fileName": "accordion/index.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L191" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "accordion/index.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L197" } ], "type": { @@ -1368,7 +1368,7 @@ "fileName": "accordion/index.ts", "line": 185, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L185" } ] } @@ -1395,7 +1395,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L202" } ], "type": { @@ -1439,7 +1439,7 @@ "fileName": "accordion/index.ts", "line": 208, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L208" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L208" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "accordion/index.ts", "line": 214, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L214" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "accordion/index.ts", "line": 202, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L202" } ] } @@ -1537,7 +1537,7 @@ "fileName": "accordion/index.ts", "line": 45, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L45" } ] } @@ -1564,7 +1564,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L220" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "accordion/index.ts", "line": 226, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L226" } ], "type": { @@ -1648,7 +1648,7 @@ "fileName": "accordion/index.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L232" } ], "type": { @@ -1688,7 +1688,7 @@ "fileName": "accordion/index.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L238" } ], "type": { @@ -1728,7 +1728,7 @@ "fileName": "accordion/index.ts", "line": 244, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L244" } ], "type": { @@ -1768,7 +1768,7 @@ "fileName": "accordion/index.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L250" } ], "type": { @@ -1794,7 +1794,7 @@ "fileName": "accordion/index.ts", "line": 220, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L220" } ] } @@ -1813,7 +1813,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -1838,7 +1838,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -1876,7 +1876,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -1916,7 +1916,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -1945,7 +1945,7 @@ "fileName": "accordion/index.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L13" } ], "extendedTypes": [ @@ -1979,7 +1979,7 @@ "fileName": "accordion/index.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/accordion/index.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/accordion/index.ts#L1" } ] }, @@ -2026,7 +2026,7 @@ "fileName": "autocomplete/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L17" } ], "type": { @@ -2070,7 +2070,7 @@ "fileName": "autocomplete/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L23" } ], "type": { @@ -2110,7 +2110,7 @@ "fileName": "autocomplete/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L29" } ], "type": { @@ -2150,7 +2150,7 @@ "fileName": "autocomplete/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L35" } ], "type": { @@ -2190,7 +2190,7 @@ "fileName": "autocomplete/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L41" } ], "type": { @@ -2230,7 +2230,7 @@ "fileName": "autocomplete/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L47" } ], "type": { @@ -2270,7 +2270,7 @@ "fileName": "autocomplete/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L53" } ], "type": { @@ -2310,7 +2310,7 @@ "fileName": "autocomplete/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L59" } ], "type": { @@ -2350,7 +2350,7 @@ "fileName": "autocomplete/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L65" } ], "type": { @@ -2390,7 +2390,7 @@ "fileName": "autocomplete/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L71" } ], "type": { @@ -2430,7 +2430,7 @@ "fileName": "autocomplete/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L77" } ], "type": { @@ -2470,7 +2470,7 @@ "fileName": "autocomplete/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L83" } ], "type": { @@ -2510,7 +2510,7 @@ "fileName": "autocomplete/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L89" } ], "type": { @@ -2550,7 +2550,7 @@ "fileName": "autocomplete/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L95" } ], "type": { @@ -2590,7 +2590,7 @@ "fileName": "autocomplete/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L101" } ], "type": { @@ -2630,7 +2630,7 @@ "fileName": "autocomplete/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L107" } ], "type": { @@ -2659,7 +2659,7 @@ "fileName": "autocomplete/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L111" } ], "type": { @@ -2703,7 +2703,7 @@ "fileName": "autocomplete/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L117" } ], "type": { @@ -2743,7 +2743,7 @@ "fileName": "autocomplete/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L123" } ], "type": { @@ -2783,7 +2783,7 @@ "fileName": "autocomplete/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L129" } ], "type": { @@ -2823,7 +2823,7 @@ "fileName": "autocomplete/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L135" } ], "type": { @@ -2863,7 +2863,7 @@ "fileName": "autocomplete/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L141" } ], "type": { @@ -2889,7 +2889,7 @@ "fileName": "autocomplete/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L111" } ] } @@ -2927,7 +2927,7 @@ "fileName": "autocomplete/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L148" } ], "type": { @@ -2965,7 +2965,7 @@ "fileName": "autocomplete/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L17" } ] } @@ -2992,7 +2992,7 @@ "fileName": "autocomplete/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L153" } ], "type": { @@ -3036,7 +3036,7 @@ "fileName": "autocomplete/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L159" } ], "type": { @@ -3076,7 +3076,7 @@ "fileName": "autocomplete/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L165" } ], "type": { @@ -3116,7 +3116,7 @@ "fileName": "autocomplete/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L171" } ], "type": { @@ -3156,7 +3156,7 @@ "fileName": "autocomplete/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L177" } ], "type": { @@ -3196,7 +3196,7 @@ "fileName": "autocomplete/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L183" } ], "type": { @@ -3222,7 +3222,7 @@ "fileName": "autocomplete/index.d.ts", "line": 153, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L153" } ] } @@ -3249,7 +3249,7 @@ "fileName": "autocomplete/index.d.ts", "line": 188, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L188" } ], "type": { @@ -3293,7 +3293,7 @@ "fileName": "autocomplete/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L194" } ], "type": { @@ -3333,7 +3333,7 @@ "fileName": "autocomplete/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L200" } ], "type": { @@ -3356,7 +3356,7 @@ "fileName": "autocomplete/index.d.ts", "line": 188, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L188" } ] } @@ -3383,7 +3383,7 @@ "fileName": "autocomplete/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L205" } ], "type": { @@ -3427,7 +3427,7 @@ "fileName": "autocomplete/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L211" } ], "type": { @@ -3467,7 +3467,7 @@ "fileName": "autocomplete/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L217" } ], "type": { @@ -3507,7 +3507,7 @@ "fileName": "autocomplete/index.d.ts", "line": 223, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L223" } ], "type": { @@ -3547,7 +3547,7 @@ "fileName": "autocomplete/index.d.ts", "line": 229, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L229" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L229" } ], "type": { @@ -3587,7 +3587,7 @@ "fileName": "autocomplete/index.d.ts", "line": 235, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L235" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L235" } ], "type": { @@ -3627,7 +3627,7 @@ "fileName": "autocomplete/index.d.ts", "line": 241, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L241" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L241" } ], "type": { @@ -3667,7 +3667,7 @@ "fileName": "autocomplete/index.d.ts", "line": 247, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L247" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L247" } ], "type": { @@ -3707,7 +3707,7 @@ "fileName": "autocomplete/index.d.ts", "line": 253, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L253" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L253" } ], "type": { @@ -3747,7 +3747,7 @@ "fileName": "autocomplete/index.d.ts", "line": 259, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L259" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L259" } ], "type": { @@ -3777,7 +3777,7 @@ "fileName": "autocomplete/index.d.ts", "line": 205, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L205" } ] } @@ -3804,7 +3804,7 @@ "fileName": "autocomplete/index.d.ts", "line": 264, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L264" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L264" } ], "type": { @@ -3848,7 +3848,7 @@ "fileName": "autocomplete/index.d.ts", "line": 270, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L270" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L270" } ], "type": { @@ -3888,7 +3888,7 @@ "fileName": "autocomplete/index.d.ts", "line": 276, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L276" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L276" } ], "type": { @@ -3928,7 +3928,7 @@ "fileName": "autocomplete/index.d.ts", "line": 282, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L282" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L282" } ], "type": { @@ -3968,7 +3968,7 @@ "fileName": "autocomplete/index.d.ts", "line": 288, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L288" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L288" } ], "type": { @@ -3993,7 +3993,7 @@ "fileName": "autocomplete/index.d.ts", "line": 264, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L264" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L264" } ] } @@ -4020,7 +4020,7 @@ "fileName": "autocomplete/index.d.ts", "line": 293, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L293" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L293" } ], "type": { @@ -4064,7 +4064,7 @@ "fileName": "autocomplete/index.d.ts", "line": 299, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L299" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L299" } ], "type": { @@ -4104,7 +4104,7 @@ "fileName": "autocomplete/index.d.ts", "line": 305, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L305" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L305" } ], "type": { @@ -4144,7 +4144,7 @@ "fileName": "autocomplete/index.d.ts", "line": 311, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L311" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L311" } ], "type": { @@ -4184,7 +4184,7 @@ "fileName": "autocomplete/index.d.ts", "line": 317, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L317" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L317" } ], "type": { @@ -4224,7 +4224,7 @@ "fileName": "autocomplete/index.d.ts", "line": 323, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L323" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L323" } ], "type": { @@ -4253,7 +4253,7 @@ "fileName": "autocomplete/index.d.ts", "line": 327, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L327" } ], "type": { @@ -4297,7 +4297,7 @@ "fileName": "autocomplete/index.d.ts", "line": 333, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L333" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L333" } ], "type": { @@ -4337,7 +4337,7 @@ "fileName": "autocomplete/index.d.ts", "line": 339, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L339" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L339" } ], "type": { @@ -4377,7 +4377,7 @@ "fileName": "autocomplete/index.d.ts", "line": 345, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L345" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L345" } ], "type": { @@ -4417,7 +4417,7 @@ "fileName": "autocomplete/index.d.ts", "line": 351, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L351" } ], "type": { @@ -4457,7 +4457,7 @@ "fileName": "autocomplete/index.d.ts", "line": 357, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L357" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L357" } ], "type": { @@ -4483,7 +4483,7 @@ "fileName": "autocomplete/index.d.ts", "line": 327, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L327" } ] } @@ -4521,7 +4521,7 @@ "fileName": "autocomplete/index.d.ts", "line": 364, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L364" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L364" } ], "type": { @@ -4561,7 +4561,7 @@ "fileName": "autocomplete/index.d.ts", "line": 370, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L370" } ], "type": { @@ -4601,7 +4601,7 @@ "fileName": "autocomplete/index.d.ts", "line": 376, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L376" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L376" } ], "type": { @@ -4641,7 +4641,7 @@ "fileName": "autocomplete/index.d.ts", "line": 382, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L382" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L382" } ], "type": { @@ -4681,7 +4681,7 @@ "fileName": "autocomplete/index.d.ts", "line": 388, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L388" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L388" } ], "type": { @@ -4721,7 +4721,7 @@ "fileName": "autocomplete/index.d.ts", "line": 394, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L394" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L394" } ], "type": { @@ -4754,7 +4754,7 @@ "fileName": "autocomplete/index.d.ts", "line": 293, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L293" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L293" } ] } @@ -4781,7 +4781,7 @@ "fileName": "autocomplete/index.d.ts", "line": 399, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L399" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L399" } ], "type": { @@ -4825,7 +4825,7 @@ "fileName": "autocomplete/index.d.ts", "line": 405, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L405" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L405" } ], "type": { @@ -4847,7 +4847,7 @@ "fileName": "autocomplete/index.d.ts", "line": 399, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L399" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L399" } ] } @@ -4874,7 +4874,7 @@ "fileName": "autocomplete/index.d.ts", "line": 410, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L410" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L410" } ], "type": { @@ -4918,7 +4918,7 @@ "fileName": "autocomplete/index.d.ts", "line": 416, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L416" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L416" } ], "type": { @@ -4940,7 +4940,7 @@ "fileName": "autocomplete/index.d.ts", "line": 410, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L410" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L410" } ] } @@ -4959,7 +4959,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -4984,7 +4984,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -5022,7 +5022,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -5062,7 +5062,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -5095,7 +5095,7 @@ "fileName": "autocomplete/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L13" } ], "extendedTypes": [ @@ -5129,7 +5129,7 @@ "fileName": "autocomplete/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/autocomplete/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/autocomplete/index.d.ts#L1" } ] }, @@ -5176,7 +5176,7 @@ "fileName": "avatar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L17" } ], "type": { @@ -5220,7 +5220,7 @@ "fileName": "avatar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L23" } ], "type": { @@ -5260,7 +5260,7 @@ "fileName": "avatar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L29" } ], "type": { @@ -5300,7 +5300,7 @@ "fileName": "avatar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L35" } ], "type": { @@ -5340,7 +5340,7 @@ "fileName": "avatar/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L41" } ], "type": { @@ -5380,7 +5380,7 @@ "fileName": "avatar/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L47" } ], "type": { @@ -5406,7 +5406,7 @@ "fileName": "avatar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L17" } ] } @@ -5433,7 +5433,7 @@ "fileName": "avatar/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L52" } ], "type": { @@ -5477,7 +5477,7 @@ "fileName": "avatar/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L58" } ], "type": { @@ -5517,7 +5517,7 @@ "fileName": "avatar/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L64" } ], "type": { @@ -5540,7 +5540,7 @@ "fileName": "avatar/index.d.ts", "line": 52, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L52" } ] } @@ -5567,7 +5567,7 @@ "fileName": "avatar/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L69" } ], "type": { @@ -5611,7 +5611,7 @@ "fileName": "avatar/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L75" } ], "type": { @@ -5651,7 +5651,7 @@ "fileName": "avatar/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L81" } ], "type": { @@ -5691,7 +5691,7 @@ "fileName": "avatar/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L87" } ], "type": { @@ -5715,7 +5715,7 @@ "fileName": "avatar/index.d.ts", "line": 69, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L69" } ] } @@ -5742,7 +5742,7 @@ "fileName": "avatar/index.d.ts", "line": 92, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L92" } ], "type": { @@ -5786,7 +5786,7 @@ "fileName": "avatar/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L98" } ], "type": { @@ -5826,7 +5826,7 @@ "fileName": "avatar/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L104" } ], "type": { @@ -5866,7 +5866,7 @@ "fileName": "avatar/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L110" } ], "type": { @@ -5890,7 +5890,7 @@ "fileName": "avatar/index.d.ts", "line": 92, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L92" } ] } @@ -5909,7 +5909,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -5934,7 +5934,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -5972,7 +5972,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -6012,7 +6012,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -6041,7 +6041,7 @@ "fileName": "avatar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L13" } ], "extendedTypes": [ @@ -6075,7 +6075,7 @@ "fileName": "avatar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/avatar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/avatar/index.d.ts#L1" } ] }, @@ -6122,7 +6122,7 @@ "fileName": "badge/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L17" } ], "type": { @@ -6166,7 +6166,7 @@ "fileName": "badge/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L23" } ], "type": { @@ -6206,7 +6206,7 @@ "fileName": "badge/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L29" } ], "type": { @@ -6246,7 +6246,7 @@ "fileName": "badge/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L35" } ], "type": { @@ -6286,7 +6286,7 @@ "fileName": "badge/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L41" } ], "type": { @@ -6326,7 +6326,7 @@ "fileName": "badge/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L47" } ], "type": { @@ -6366,7 +6366,7 @@ "fileName": "badge/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L53" } ], "type": { @@ -6393,7 +6393,7 @@ "fileName": "badge/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L17" } ] } @@ -6420,7 +6420,7 @@ "fileName": "badge/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L58" } ], "type": { @@ -6464,7 +6464,7 @@ "fileName": "badge/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L64" } ], "type": { @@ -6486,7 +6486,7 @@ "fileName": "badge/index.d.ts", "line": 58, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L58" } ] } @@ -6513,7 +6513,7 @@ "fileName": "badge/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L69" } ], "type": { @@ -6557,7 +6557,7 @@ "fileName": "badge/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L75" } ], "type": { @@ -6597,7 +6597,7 @@ "fileName": "badge/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L81" } ], "type": { @@ -6637,7 +6637,7 @@ "fileName": "badge/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L87" } ], "type": { @@ -6661,7 +6661,7 @@ "fileName": "badge/index.d.ts", "line": 69, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L69" } ] } @@ -6688,7 +6688,7 @@ "fileName": "badge/index.d.ts", "line": 92, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L92" } ], "type": { @@ -6732,7 +6732,7 @@ "fileName": "badge/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L98" } ], "type": { @@ -6772,7 +6772,7 @@ "fileName": "badge/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L104" } ], "type": { @@ -6812,7 +6812,7 @@ "fileName": "badge/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L110" } ], "type": { @@ -6836,7 +6836,7 @@ "fileName": "badge/index.d.ts", "line": 92, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L92" } ] } @@ -6863,7 +6863,7 @@ "fileName": "badge/index.d.ts", "line": 115, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L115" } ], "type": { @@ -6907,7 +6907,7 @@ "fileName": "badge/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L121" } ], "type": { @@ -6947,7 +6947,7 @@ "fileName": "badge/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L127" } ], "type": { @@ -6987,7 +6987,7 @@ "fileName": "badge/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L133" } ], "type": { @@ -7011,7 +7011,7 @@ "fileName": "badge/index.d.ts", "line": 115, "character": 9, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L115" } ] } @@ -7038,7 +7038,7 @@ "fileName": "badge/index.d.ts", "line": 138, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L138" } ], "type": { @@ -7082,7 +7082,7 @@ "fileName": "badge/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L144" } ], "type": { @@ -7122,7 +7122,7 @@ "fileName": "badge/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L150" } ], "type": { @@ -7145,7 +7145,7 @@ "fileName": "badge/index.d.ts", "line": 138, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L138" } ] } @@ -7172,7 +7172,7 @@ "fileName": "badge/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L155" } ], "type": { @@ -7216,7 +7216,7 @@ "fileName": "badge/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L161" } ], "type": { @@ -7256,7 +7256,7 @@ "fileName": "badge/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L167" } ], "type": { @@ -7279,7 +7279,7 @@ "fileName": "badge/index.d.ts", "line": 155, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L155" } ] } @@ -7306,7 +7306,7 @@ "fileName": "badge/index.d.ts", "line": 172, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L172" } ], "type": { @@ -7350,7 +7350,7 @@ "fileName": "badge/index.d.ts", "line": 178, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L178" } ], "type": { @@ -7390,7 +7390,7 @@ "fileName": "badge/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L184" } ], "type": { @@ -7413,7 +7413,7 @@ "fileName": "badge/index.d.ts", "line": 172, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L172" } ] } @@ -7440,7 +7440,7 @@ "fileName": "badge/index.d.ts", "line": 189, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L189" } ], "type": { @@ -7484,7 +7484,7 @@ "fileName": "badge/index.d.ts", "line": 195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L195" } ], "type": { @@ -7524,7 +7524,7 @@ "fileName": "badge/index.d.ts", "line": 201, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L201" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L201" } ], "type": { @@ -7547,7 +7547,7 @@ "fileName": "badge/index.d.ts", "line": 189, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L189" } ] } @@ -7574,7 +7574,7 @@ "fileName": "badge/index.d.ts", "line": 206, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L206" } ], "type": { @@ -7618,7 +7618,7 @@ "fileName": "badge/index.d.ts", "line": 212, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L212" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L212" } ], "type": { @@ -7658,7 +7658,7 @@ "fileName": "badge/index.d.ts", "line": 218, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L218" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L218" } ], "type": { @@ -7681,7 +7681,7 @@ "fileName": "badge/index.d.ts", "line": 206, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L206" } ] } @@ -7708,7 +7708,7 @@ "fileName": "badge/index.d.ts", "line": 223, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L223" } ], "type": { @@ -7752,7 +7752,7 @@ "fileName": "badge/index.d.ts", "line": 229, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L229" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L229" } ], "type": { @@ -7792,7 +7792,7 @@ "fileName": "badge/index.d.ts", "line": 235, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L235" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L235" } ], "type": { @@ -7815,7 +7815,7 @@ "fileName": "badge/index.d.ts", "line": 223, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L223" } ] } @@ -7842,7 +7842,7 @@ "fileName": "badge/index.d.ts", "line": 240, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L240" } ], "type": { @@ -7886,7 +7886,7 @@ "fileName": "badge/index.d.ts", "line": 246, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L246" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L246" } ], "type": { @@ -7926,7 +7926,7 @@ "fileName": "badge/index.d.ts", "line": 252, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L252" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L252" } ], "type": { @@ -7949,7 +7949,7 @@ "fileName": "badge/index.d.ts", "line": 240, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L240" } ] } @@ -7968,7 +7968,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -7993,7 +7993,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -8031,7 +8031,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -8071,7 +8071,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -8108,7 +8108,7 @@ "fileName": "badge/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L13" } ], "extendedTypes": [ @@ -8142,7 +8142,7 @@ "fileName": "badge/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/badge/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/badge/index.d.ts#L1" } ] }, @@ -8189,7 +8189,7 @@ "fileName": "blockui/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/blockui/index.d.ts#L17" } ], "type": { @@ -8233,7 +8233,7 @@ "fileName": "blockui/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/blockui/index.d.ts#L23" } ], "type": { @@ -8255,7 +8255,7 @@ "fileName": "blockui/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/blockui/index.d.ts#L17" } ] } @@ -8274,7 +8274,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -8299,7 +8299,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -8337,7 +8337,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -8377,7 +8377,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -8403,7 +8403,7 @@ "fileName": "blockui/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/blockui/index.d.ts#L13" } ], "extendedTypes": [ @@ -8437,7 +8437,7 @@ "fileName": "blockui/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/blockui/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/blockui/index.d.ts#L1" } ] }, @@ -8484,7 +8484,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" } ], "type": { @@ -8528,7 +8528,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L23" } ], "type": { @@ -8568,7 +8568,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L29" } ], "type": { @@ -8608,7 +8608,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L35" } ], "type": { @@ -8648,7 +8648,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L41" } ], "type": { @@ -8673,7 +8673,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L17" } ] } @@ -8700,7 +8700,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" } ], "type": { @@ -8744,7 +8744,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L52" } ], "type": { @@ -8784,7 +8784,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L58" } ], "type": { @@ -8824,7 +8824,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L64" } ], "type": { @@ -8864,7 +8864,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L70" } ], "type": { @@ -8893,7 +8893,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" } ], "type": { @@ -8937,7 +8937,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L80" } ], "type": { @@ -8977,7 +8977,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L86" } ], "type": { @@ -9000,7 +9000,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 74, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L74" } ] } @@ -9027,7 +9027,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" } ], "type": { @@ -9071,7 +9071,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 97, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L97" } ], "type": { @@ -9111,7 +9111,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L103" } ], "type": { @@ -9151,7 +9151,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L109" } ], "type": { @@ -9191,7 +9191,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 115, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L115" } ], "type": { @@ -9231,7 +9231,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 121, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L121" } ], "type": { @@ -9257,7 +9257,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 91, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L91" } ] } @@ -9282,7 +9282,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L46" } ] } @@ -9309,7 +9309,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 127, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" } ], "type": { @@ -9353,7 +9353,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L133" } ], "type": { @@ -9375,7 +9375,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 127, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L127" } ] } @@ -9394,7 +9394,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -9419,7 +9419,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -9457,7 +9457,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -9497,7 +9497,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -9525,7 +9525,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L13" } ], "extendedTypes": [ @@ -9559,7 +9559,7 @@ "fileName": "breadcrumb/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/breadcrumb/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/breadcrumb/index.d.ts#L1" } ] }, @@ -9606,7 +9606,7 @@ "fileName": "button/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L17" } ], "type": { @@ -9650,7 +9650,7 @@ "fileName": "button/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L23" } ], "type": { @@ -9690,7 +9690,7 @@ "fileName": "button/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L29" } ], "type": { @@ -9730,7 +9730,7 @@ "fileName": "button/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L35" } ], "type": { @@ -9770,7 +9770,7 @@ "fileName": "button/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L41" } ], "type": { @@ -9810,7 +9810,7 @@ "fileName": "button/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L47" } ], "type": { @@ -9850,7 +9850,7 @@ "fileName": "button/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L53" } ], "type": { @@ -9879,7 +9879,7 @@ "fileName": "button/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L57" } ], "type": { @@ -9923,7 +9923,7 @@ "fileName": "button/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L63" } ], "type": { @@ -9963,7 +9963,7 @@ "fileName": "button/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L69" } ], "type": { @@ -10003,7 +10003,7 @@ "fileName": "button/index.d.ts", "line": 75, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L75" } ], "type": { @@ -10027,7 +10027,7 @@ "fileName": "button/index.d.ts", "line": 57, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L57" } ] } @@ -10054,7 +10054,7 @@ "fileName": "button/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L80" } ], "type": { @@ -10098,7 +10098,7 @@ "fileName": "button/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L86" } ], "type": { @@ -10138,7 +10138,7 @@ "fileName": "button/index.d.ts", "line": 92, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L92" } ], "type": { @@ -10178,7 +10178,7 @@ "fileName": "button/index.d.ts", "line": 98, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L98" } ], "type": { @@ -10202,7 +10202,7 @@ "fileName": "button/index.d.ts", "line": 80, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L80" } ] } @@ -10229,7 +10229,7 @@ "fileName": "button/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L103" } ], "type": { @@ -10273,7 +10273,7 @@ "fileName": "button/index.d.ts", "line": 109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L109" } ], "type": { @@ -10295,7 +10295,7 @@ "fileName": "button/index.d.ts", "line": 103, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L103" } ] } @@ -10333,7 +10333,7 @@ "fileName": "button/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L116" } ], "type": { @@ -10362,7 +10362,7 @@ "fileName": "button/index.d.ts", "line": 120, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L120" } ], "type": { @@ -10406,7 +10406,7 @@ "fileName": "button/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L126" } ], "type": { @@ -10446,7 +10446,7 @@ "fileName": "button/index.d.ts", "line": 132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L132" } ], "type": { @@ -10486,7 +10486,7 @@ "fileName": "button/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L138" } ], "type": { @@ -10510,7 +10510,7 @@ "fileName": "button/index.d.ts", "line": 120, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L120" } ] } @@ -10548,7 +10548,7 @@ "fileName": "button/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L145" } ], "type": { @@ -10588,7 +10588,7 @@ "fileName": "button/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L151" } ], "type": { @@ -10617,7 +10617,7 @@ "fileName": "button/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L155" } ], "type": { @@ -10661,7 +10661,7 @@ "fileName": "button/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L161" } ], "type": { @@ -10701,7 +10701,7 @@ "fileName": "button/index.d.ts", "line": 167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L167" } ], "type": { @@ -10741,7 +10741,7 @@ "fileName": "button/index.d.ts", "line": 173, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L173" } ], "type": { @@ -10781,7 +10781,7 @@ "fileName": "button/index.d.ts", "line": 179, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L179" } ], "type": { @@ -10821,7 +10821,7 @@ "fileName": "button/index.d.ts", "line": 185, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L185" } ], "type": { @@ -10861,7 +10861,7 @@ "fileName": "button/index.d.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L191" } ], "type": { @@ -10901,7 +10901,7 @@ "fileName": "button/index.d.ts", "line": 197, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L197" } ], "type": { @@ -10941,7 +10941,7 @@ "fileName": "button/index.d.ts", "line": 203, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L203" } ], "type": { @@ -10981,7 +10981,7 @@ "fileName": "button/index.d.ts", "line": 209, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L209" } ], "type": { @@ -11010,7 +11010,7 @@ "fileName": "button/index.d.ts", "line": 213, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L213" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L213" } ], "type": { @@ -11054,7 +11054,7 @@ "fileName": "button/index.d.ts", "line": 219, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L219" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L219" } ], "type": { @@ -11094,7 +11094,7 @@ "fileName": "button/index.d.ts", "line": 225, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L225" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L225" } ], "type": { @@ -11117,7 +11117,7 @@ "fileName": "button/index.d.ts", "line": 213, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L213" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L213" } ] } @@ -11146,7 +11146,7 @@ "fileName": "button/index.d.ts", "line": 155, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L155" } ] } @@ -11173,7 +11173,7 @@ "fileName": "button/index.d.ts", "line": 231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L231" } ], "type": { @@ -11217,7 +11217,7 @@ "fileName": "button/index.d.ts", "line": 237, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L237" } ], "type": { @@ -11257,7 +11257,7 @@ "fileName": "button/index.d.ts", "line": 243, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L243" } ], "type": { @@ -11297,7 +11297,7 @@ "fileName": "button/index.d.ts", "line": 249, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L249" } ], "type": { @@ -11337,7 +11337,7 @@ "fileName": "button/index.d.ts", "line": 255, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L255" } ], "type": { @@ -11377,7 +11377,7 @@ "fileName": "button/index.d.ts", "line": 261, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L261" } ], "type": { @@ -11417,7 +11417,7 @@ "fileName": "button/index.d.ts", "line": 267, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L267" } ], "type": { @@ -11457,7 +11457,7 @@ "fileName": "button/index.d.ts", "line": 273, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L273" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L273" } ], "type": { @@ -11497,7 +11497,7 @@ "fileName": "button/index.d.ts", "line": 279, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L279" } ], "type": { @@ -11537,7 +11537,7 @@ "fileName": "button/index.d.ts", "line": 285, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L285" } ], "type": { @@ -11566,7 +11566,7 @@ "fileName": "button/index.d.ts", "line": 289, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L289" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L289" } ], "type": { @@ -11610,7 +11610,7 @@ "fileName": "button/index.d.ts", "line": 295, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L295" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L295" } ], "type": { @@ -11650,7 +11650,7 @@ "fileName": "button/index.d.ts", "line": 301, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L301" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L301" } ], "type": { @@ -11673,7 +11673,7 @@ "fileName": "button/index.d.ts", "line": 289, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L289" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L289" } ] } @@ -11702,7 +11702,7 @@ "fileName": "button/index.d.ts", "line": 231, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L231" } ] } @@ -11729,7 +11729,7 @@ "fileName": "button/index.d.ts", "line": 307, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L307" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L307" } ], "type": { @@ -11773,7 +11773,7 @@ "fileName": "button/index.d.ts", "line": 313, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L313" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L313" } ], "type": { @@ -11813,7 +11813,7 @@ "fileName": "button/index.d.ts", "line": 319, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L319" } ], "type": { @@ -11853,7 +11853,7 @@ "fileName": "button/index.d.ts", "line": 325, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L325" } ], "type": { @@ -11893,7 +11893,7 @@ "fileName": "button/index.d.ts", "line": 331, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L331" } ], "type": { @@ -11933,7 +11933,7 @@ "fileName": "button/index.d.ts", "line": 337, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L337" } ], "type": { @@ -11973,7 +11973,7 @@ "fileName": "button/index.d.ts", "line": 343, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L343" } ], "type": { @@ -12013,7 +12013,7 @@ "fileName": "button/index.d.ts", "line": 349, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L349" } ], "type": { @@ -12053,7 +12053,7 @@ "fileName": "button/index.d.ts", "line": 355, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L355" } ], "type": { @@ -12093,7 +12093,7 @@ "fileName": "button/index.d.ts", "line": 361, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L361" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L361" } ], "type": { @@ -12122,7 +12122,7 @@ "fileName": "button/index.d.ts", "line": 365, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L365" } ], "type": { @@ -12166,7 +12166,7 @@ "fileName": "button/index.d.ts", "line": 371, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L371" } ], "type": { @@ -12206,7 +12206,7 @@ "fileName": "button/index.d.ts", "line": 377, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L377" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L377" } ], "type": { @@ -12229,7 +12229,7 @@ "fileName": "button/index.d.ts", "line": 365, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L365" } ] } @@ -12258,7 +12258,7 @@ "fileName": "button/index.d.ts", "line": 307, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L307" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L307" } ] } @@ -12285,7 +12285,7 @@ "fileName": "button/index.d.ts", "line": 383, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L383" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L383" } ], "type": { @@ -12329,7 +12329,7 @@ "fileName": "button/index.d.ts", "line": 389, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L389" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L389" } ], "type": { @@ -12369,7 +12369,7 @@ "fileName": "button/index.d.ts", "line": 395, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L395" } ], "type": { @@ -12409,7 +12409,7 @@ "fileName": "button/index.d.ts", "line": 401, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L401" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L401" } ], "type": { @@ -12449,7 +12449,7 @@ "fileName": "button/index.d.ts", "line": 407, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L407" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L407" } ], "type": { @@ -12489,7 +12489,7 @@ "fileName": "button/index.d.ts", "line": 413, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L413" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L413" } ], "type": { @@ -12529,7 +12529,7 @@ "fileName": "button/index.d.ts", "line": 419, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L419" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L419" } ], "type": { @@ -12569,7 +12569,7 @@ "fileName": "button/index.d.ts", "line": 425, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L425" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L425" } ], "type": { @@ -12609,7 +12609,7 @@ "fileName": "button/index.d.ts", "line": 431, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L431" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L431" } ], "type": { @@ -12649,7 +12649,7 @@ "fileName": "button/index.d.ts", "line": 437, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L437" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L437" } ], "type": { @@ -12678,7 +12678,7 @@ "fileName": "button/index.d.ts", "line": 441, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L441" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L441" } ], "type": { @@ -12722,7 +12722,7 @@ "fileName": "button/index.d.ts", "line": 447, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L447" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L447" } ], "type": { @@ -12762,7 +12762,7 @@ "fileName": "button/index.d.ts", "line": 453, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L453" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L453" } ], "type": { @@ -12785,7 +12785,7 @@ "fileName": "button/index.d.ts", "line": 441, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L441" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L441" } ] } @@ -12814,7 +12814,7 @@ "fileName": "button/index.d.ts", "line": 383, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L383" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L383" } ] } @@ -12841,7 +12841,7 @@ "fileName": "button/index.d.ts", "line": 459, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L459" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L459" } ], "type": { @@ -12885,7 +12885,7 @@ "fileName": "button/index.d.ts", "line": 465, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L465" } ], "type": { @@ -12925,7 +12925,7 @@ "fileName": "button/index.d.ts", "line": 471, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L471" } ], "type": { @@ -12965,7 +12965,7 @@ "fileName": "button/index.d.ts", "line": 477, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L477" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L477" } ], "type": { @@ -13005,7 +13005,7 @@ "fileName": "button/index.d.ts", "line": 483, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L483" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L483" } ], "type": { @@ -13045,7 +13045,7 @@ "fileName": "button/index.d.ts", "line": 489, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L489" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L489" } ], "type": { @@ -13085,7 +13085,7 @@ "fileName": "button/index.d.ts", "line": 495, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L495" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L495" } ], "type": { @@ -13125,7 +13125,7 @@ "fileName": "button/index.d.ts", "line": 501, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L501" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L501" } ], "type": { @@ -13165,7 +13165,7 @@ "fileName": "button/index.d.ts", "line": 507, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L507" } ], "type": { @@ -13205,7 +13205,7 @@ "fileName": "button/index.d.ts", "line": 513, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L513" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L513" } ], "type": { @@ -13234,7 +13234,7 @@ "fileName": "button/index.d.ts", "line": 517, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L517" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L517" } ], "type": { @@ -13278,7 +13278,7 @@ "fileName": "button/index.d.ts", "line": 523, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L523" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L523" } ], "type": { @@ -13318,7 +13318,7 @@ "fileName": "button/index.d.ts", "line": 529, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L529" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L529" } ], "type": { @@ -13341,7 +13341,7 @@ "fileName": "button/index.d.ts", "line": 517, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L517" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L517" } ] } @@ -13370,7 +13370,7 @@ "fileName": "button/index.d.ts", "line": 459, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L459" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L459" } ] } @@ -13397,7 +13397,7 @@ "fileName": "button/index.d.ts", "line": 535, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L535" } ], "type": { @@ -13441,7 +13441,7 @@ "fileName": "button/index.d.ts", "line": 541, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L541" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L541" } ], "type": { @@ -13481,7 +13481,7 @@ "fileName": "button/index.d.ts", "line": 547, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L547" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L547" } ], "type": { @@ -13521,7 +13521,7 @@ "fileName": "button/index.d.ts", "line": 553, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L553" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L553" } ], "type": { @@ -13561,7 +13561,7 @@ "fileName": "button/index.d.ts", "line": 559, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L559" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L559" } ], "type": { @@ -13601,7 +13601,7 @@ "fileName": "button/index.d.ts", "line": 565, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L565" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L565" } ], "type": { @@ -13641,7 +13641,7 @@ "fileName": "button/index.d.ts", "line": 571, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L571" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L571" } ], "type": { @@ -13681,7 +13681,7 @@ "fileName": "button/index.d.ts", "line": 577, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L577" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L577" } ], "type": { @@ -13721,7 +13721,7 @@ "fileName": "button/index.d.ts", "line": 583, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L583" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L583" } ], "type": { @@ -13761,7 +13761,7 @@ "fileName": "button/index.d.ts", "line": 589, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L589" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L589" } ], "type": { @@ -13790,7 +13790,7 @@ "fileName": "button/index.d.ts", "line": 593, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L593" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L593" } ], "type": { @@ -13834,7 +13834,7 @@ "fileName": "button/index.d.ts", "line": 599, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L599" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L599" } ], "type": { @@ -13874,7 +13874,7 @@ "fileName": "button/index.d.ts", "line": 605, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L605" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L605" } ], "type": { @@ -13897,7 +13897,7 @@ "fileName": "button/index.d.ts", "line": 593, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L593" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L593" } ] } @@ -13926,7 +13926,7 @@ "fileName": "button/index.d.ts", "line": 535, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L535" } ] } @@ -13953,7 +13953,7 @@ "fileName": "button/index.d.ts", "line": 611, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L611" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L611" } ], "type": { @@ -13997,7 +13997,7 @@ "fileName": "button/index.d.ts", "line": 617, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L617" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L617" } ], "type": { @@ -14037,7 +14037,7 @@ "fileName": "button/index.d.ts", "line": 623, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L623" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L623" } ], "type": { @@ -14077,7 +14077,7 @@ "fileName": "button/index.d.ts", "line": 629, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L629" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L629" } ], "type": { @@ -14117,7 +14117,7 @@ "fileName": "button/index.d.ts", "line": 635, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L635" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L635" } ], "type": { @@ -14157,7 +14157,7 @@ "fileName": "button/index.d.ts", "line": 641, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L641" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L641" } ], "type": { @@ -14197,7 +14197,7 @@ "fileName": "button/index.d.ts", "line": 647, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L647" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L647" } ], "type": { @@ -14237,7 +14237,7 @@ "fileName": "button/index.d.ts", "line": 653, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L653" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L653" } ], "type": { @@ -14277,7 +14277,7 @@ "fileName": "button/index.d.ts", "line": 659, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L659" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L659" } ], "type": { @@ -14317,7 +14317,7 @@ "fileName": "button/index.d.ts", "line": 665, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L665" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L665" } ], "type": { @@ -14346,7 +14346,7 @@ "fileName": "button/index.d.ts", "line": 669, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L669" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L669" } ], "type": { @@ -14390,7 +14390,7 @@ "fileName": "button/index.d.ts", "line": 675, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L675" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L675" } ], "type": { @@ -14430,7 +14430,7 @@ "fileName": "button/index.d.ts", "line": 681, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L681" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L681" } ], "type": { @@ -14453,7 +14453,7 @@ "fileName": "button/index.d.ts", "line": 669, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L669" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L669" } ] } @@ -14482,7 +14482,7 @@ "fileName": "button/index.d.ts", "line": 611, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L611" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L611" } ] } @@ -14509,7 +14509,7 @@ "fileName": "button/index.d.ts", "line": 687, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L687" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L687" } ], "type": { @@ -14553,7 +14553,7 @@ "fileName": "button/index.d.ts", "line": 693, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L693" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L693" } ], "type": { @@ -14593,7 +14593,7 @@ "fileName": "button/index.d.ts", "line": 699, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L699" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L699" } ], "type": { @@ -14633,7 +14633,7 @@ "fileName": "button/index.d.ts", "line": 705, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L705" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L705" } ], "type": { @@ -14673,7 +14673,7 @@ "fileName": "button/index.d.ts", "line": 711, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L711" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L711" } ], "type": { @@ -14713,7 +14713,7 @@ "fileName": "button/index.d.ts", "line": 717, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L717" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L717" } ], "type": { @@ -14753,7 +14753,7 @@ "fileName": "button/index.d.ts", "line": 723, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L723" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L723" } ], "type": { @@ -14793,7 +14793,7 @@ "fileName": "button/index.d.ts", "line": 729, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L729" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L729" } ], "type": { @@ -14833,7 +14833,7 @@ "fileName": "button/index.d.ts", "line": 735, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L735" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L735" } ], "type": { @@ -14873,7 +14873,7 @@ "fileName": "button/index.d.ts", "line": 741, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L741" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L741" } ], "type": { @@ -14902,7 +14902,7 @@ "fileName": "button/index.d.ts", "line": 745, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L745" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L745" } ], "type": { @@ -14946,7 +14946,7 @@ "fileName": "button/index.d.ts", "line": 751, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L751" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L751" } ], "type": { @@ -14986,7 +14986,7 @@ "fileName": "button/index.d.ts", "line": 757, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L757" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L757" } ], "type": { @@ -15009,7 +15009,7 @@ "fileName": "button/index.d.ts", "line": 745, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L745" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L745" } ] } @@ -15038,7 +15038,7 @@ "fileName": "button/index.d.ts", "line": 687, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L687" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L687" } ] } @@ -15078,7 +15078,7 @@ "fileName": "button/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L17" } ] } @@ -15105,7 +15105,7 @@ "fileName": "button/index.d.ts", "line": 764, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L764" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L764" } ], "type": { @@ -15138,7 +15138,7 @@ "fileName": "button/index.d.ts", "line": 768, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L768" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L768" } ], "type": { @@ -15182,7 +15182,7 @@ "fileName": "button/index.d.ts", "line": 774, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L774" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L774" } ], "type": { @@ -15222,7 +15222,7 @@ "fileName": "button/index.d.ts", "line": 780, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L780" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L780" } ], "type": { @@ -15262,7 +15262,7 @@ "fileName": "button/index.d.ts", "line": 786, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L786" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L786" } ], "type": { @@ -15302,7 +15302,7 @@ "fileName": "button/index.d.ts", "line": 792, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L792" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L792" } ], "type": { @@ -15327,7 +15327,7 @@ "fileName": "button/index.d.ts", "line": 768, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L768" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L768" } ] } @@ -15354,7 +15354,7 @@ "fileName": "button/index.d.ts", "line": 797, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L797" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L797" } ], "type": { @@ -15398,7 +15398,7 @@ "fileName": "button/index.d.ts", "line": 803, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L803" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L803" } ], "type": { @@ -15438,7 +15438,7 @@ "fileName": "button/index.d.ts", "line": 809, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L809" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L809" } ], "type": { @@ -15478,7 +15478,7 @@ "fileName": "button/index.d.ts", "line": 815, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L815" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L815" } ], "type": { @@ -15518,7 +15518,7 @@ "fileName": "button/index.d.ts", "line": 821, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L821" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L821" } ], "type": { @@ -15543,7 +15543,7 @@ "fileName": "button/index.d.ts", "line": 797, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L797" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L797" } ] } @@ -15570,7 +15570,7 @@ "fileName": "button/index.d.ts", "line": 826, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L826" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L826" } ], "type": { @@ -15614,7 +15614,7 @@ "fileName": "button/index.d.ts", "line": 832, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L832" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L832" } ], "type": { @@ -15654,7 +15654,7 @@ "fileName": "button/index.d.ts", "line": 838, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L838" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L838" } ], "type": { @@ -15694,7 +15694,7 @@ "fileName": "button/index.d.ts", "line": 844, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L844" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L844" } ], "type": { @@ -15734,7 +15734,7 @@ "fileName": "button/index.d.ts", "line": 850, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L850" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L850" } ], "type": { @@ -15759,7 +15759,7 @@ "fileName": "button/index.d.ts", "line": 826, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L826" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L826" } ] } @@ -15786,7 +15786,7 @@ "fileName": "button/index.d.ts", "line": 855, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L855" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L855" } ], "type": { @@ -15830,7 +15830,7 @@ "fileName": "button/index.d.ts", "line": 861, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L861" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L861" } ], "type": { @@ -15870,7 +15870,7 @@ "fileName": "button/index.d.ts", "line": 867, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L867" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L867" } ], "type": { @@ -15910,7 +15910,7 @@ "fileName": "button/index.d.ts", "line": 873, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L873" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L873" } ], "type": { @@ -15950,7 +15950,7 @@ "fileName": "button/index.d.ts", "line": 879, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L879" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L879" } ], "type": { @@ -15975,7 +15975,7 @@ "fileName": "button/index.d.ts", "line": 855, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L855" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L855" } ] } @@ -16002,7 +16002,7 @@ "fileName": "button/index.d.ts", "line": 884, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L884" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L884" } ], "type": { @@ -16046,7 +16046,7 @@ "fileName": "button/index.d.ts", "line": 890, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L890" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L890" } ], "type": { @@ -16086,7 +16086,7 @@ "fileName": "button/index.d.ts", "line": 896, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L896" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L896" } ], "type": { @@ -16126,7 +16126,7 @@ "fileName": "button/index.d.ts", "line": 902, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L902" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L902" } ], "type": { @@ -16166,7 +16166,7 @@ "fileName": "button/index.d.ts", "line": 908, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L908" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L908" } ], "type": { @@ -16191,7 +16191,7 @@ "fileName": "button/index.d.ts", "line": 884, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L884" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L884" } ] } @@ -16218,7 +16218,7 @@ "fileName": "button/index.d.ts", "line": 913, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L913" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L913" } ], "type": { @@ -16262,7 +16262,7 @@ "fileName": "button/index.d.ts", "line": 919, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L919" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L919" } ], "type": { @@ -16302,7 +16302,7 @@ "fileName": "button/index.d.ts", "line": 925, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L925" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L925" } ], "type": { @@ -16342,7 +16342,7 @@ "fileName": "button/index.d.ts", "line": 931, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L931" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L931" } ], "type": { @@ -16382,7 +16382,7 @@ "fileName": "button/index.d.ts", "line": 937, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L937" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L937" } ], "type": { @@ -16407,7 +16407,7 @@ "fileName": "button/index.d.ts", "line": 913, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L913" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L913" } ] } @@ -16434,7 +16434,7 @@ "fileName": "button/index.d.ts", "line": 942, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L942" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L942" } ], "type": { @@ -16478,7 +16478,7 @@ "fileName": "button/index.d.ts", "line": 948, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L948" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L948" } ], "type": { @@ -16518,7 +16518,7 @@ "fileName": "button/index.d.ts", "line": 954, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L954" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L954" } ], "type": { @@ -16558,7 +16558,7 @@ "fileName": "button/index.d.ts", "line": 960, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L960" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L960" } ], "type": { @@ -16598,7 +16598,7 @@ "fileName": "button/index.d.ts", "line": 966, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L966" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L966" } ], "type": { @@ -16623,7 +16623,7 @@ "fileName": "button/index.d.ts", "line": 942, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L942" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L942" } ] } @@ -16650,7 +16650,7 @@ "fileName": "button/index.d.ts", "line": 971, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L971" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L971" } ], "type": { @@ -16694,7 +16694,7 @@ "fileName": "button/index.d.ts", "line": 977, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L977" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L977" } ], "type": { @@ -16734,7 +16734,7 @@ "fileName": "button/index.d.ts", "line": 983, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L983" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L983" } ], "type": { @@ -16774,7 +16774,7 @@ "fileName": "button/index.d.ts", "line": 989, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L989" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L989" } ], "type": { @@ -16814,7 +16814,7 @@ "fileName": "button/index.d.ts", "line": 995, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L995" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L995" } ], "type": { @@ -16839,7 +16839,7 @@ "fileName": "button/index.d.ts", "line": 971, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L971" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L971" } ] } @@ -16866,7 +16866,7 @@ "fileName": "button/index.d.ts", "line": 1000, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1000" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1000" } ], "type": { @@ -16910,7 +16910,7 @@ "fileName": "button/index.d.ts", "line": 1006, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1006" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1006" } ], "type": { @@ -16950,7 +16950,7 @@ "fileName": "button/index.d.ts", "line": 1012, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1012" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1012" } ], "type": { @@ -16990,7 +16990,7 @@ "fileName": "button/index.d.ts", "line": 1018, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1018" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1018" } ], "type": { @@ -17030,7 +17030,7 @@ "fileName": "button/index.d.ts", "line": 1024, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1024" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1024" } ], "type": { @@ -17055,7 +17055,7 @@ "fileName": "button/index.d.ts", "line": 1000, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1000" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1000" } ] } @@ -17083,7 +17083,7 @@ "fileName": "button/index.d.ts", "line": 764, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L764" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L764" } ] } @@ -17110,7 +17110,7 @@ "fileName": "button/index.d.ts", "line": 1030, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1030" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1030" } ], "type": { @@ -17143,7 +17143,7 @@ "fileName": "button/index.d.ts", "line": 1034, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1034" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1034" } ], "type": { @@ -17187,7 +17187,7 @@ "fileName": "button/index.d.ts", "line": 1040, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1040" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1040" } ], "type": { @@ -17227,7 +17227,7 @@ "fileName": "button/index.d.ts", "line": 1046, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1046" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1046" } ], "type": { @@ -17267,7 +17267,7 @@ "fileName": "button/index.d.ts", "line": 1052, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1052" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1052" } ], "type": { @@ -17291,7 +17291,7 @@ "fileName": "button/index.d.ts", "line": 1034, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1034" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1034" } ] } @@ -17318,7 +17318,7 @@ "fileName": "button/index.d.ts", "line": 1057, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1057" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1057" } ], "type": { @@ -17362,7 +17362,7 @@ "fileName": "button/index.d.ts", "line": 1063, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1063" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1063" } ], "type": { @@ -17402,7 +17402,7 @@ "fileName": "button/index.d.ts", "line": 1069, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1069" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1069" } ], "type": { @@ -17442,7 +17442,7 @@ "fileName": "button/index.d.ts", "line": 1075, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1075" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1075" } ], "type": { @@ -17466,7 +17466,7 @@ "fileName": "button/index.d.ts", "line": 1057, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1057" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1057" } ] } @@ -17493,7 +17493,7 @@ "fileName": "button/index.d.ts", "line": 1080, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1080" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1080" } ], "type": { @@ -17537,7 +17537,7 @@ "fileName": "button/index.d.ts", "line": 1086, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1086" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1086" } ], "type": { @@ -17577,7 +17577,7 @@ "fileName": "button/index.d.ts", "line": 1092, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1092" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1092" } ], "type": { @@ -17617,7 +17617,7 @@ "fileName": "button/index.d.ts", "line": 1098, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1098" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1098" } ], "type": { @@ -17641,7 +17641,7 @@ "fileName": "button/index.d.ts", "line": 1080, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1080" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1080" } ] } @@ -17668,7 +17668,7 @@ "fileName": "button/index.d.ts", "line": 1103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1103" } ], "type": { @@ -17712,7 +17712,7 @@ "fileName": "button/index.d.ts", "line": 1109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1109" } ], "type": { @@ -17752,7 +17752,7 @@ "fileName": "button/index.d.ts", "line": 1115, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1115" } ], "type": { @@ -17792,7 +17792,7 @@ "fileName": "button/index.d.ts", "line": 1121, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1121" } ], "type": { @@ -17816,7 +17816,7 @@ "fileName": "button/index.d.ts", "line": 1103, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1103" } ] } @@ -17843,7 +17843,7 @@ "fileName": "button/index.d.ts", "line": 1126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1126" } ], "type": { @@ -17887,7 +17887,7 @@ "fileName": "button/index.d.ts", "line": 1132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1132" } ], "type": { @@ -17927,7 +17927,7 @@ "fileName": "button/index.d.ts", "line": 1138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1138" } ], "type": { @@ -17967,7 +17967,7 @@ "fileName": "button/index.d.ts", "line": 1144, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1144" } ], "type": { @@ -17991,7 +17991,7 @@ "fileName": "button/index.d.ts", "line": 1126, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1126" } ] } @@ -18018,7 +18018,7 @@ "fileName": "button/index.d.ts", "line": 1149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1149" } ], "type": { @@ -18062,7 +18062,7 @@ "fileName": "button/index.d.ts", "line": 1155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1155" } ], "type": { @@ -18102,7 +18102,7 @@ "fileName": "button/index.d.ts", "line": 1161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1161" } ], "type": { @@ -18142,7 +18142,7 @@ "fileName": "button/index.d.ts", "line": 1167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1167" } ], "type": { @@ -18166,7 +18166,7 @@ "fileName": "button/index.d.ts", "line": 1149, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1149" } ] } @@ -18193,7 +18193,7 @@ "fileName": "button/index.d.ts", "line": 1172, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1172" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1172" } ], "type": { @@ -18237,7 +18237,7 @@ "fileName": "button/index.d.ts", "line": 1178, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1178" } ], "type": { @@ -18277,7 +18277,7 @@ "fileName": "button/index.d.ts", "line": 1184, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1184" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1184" } ], "type": { @@ -18317,7 +18317,7 @@ "fileName": "button/index.d.ts", "line": 1190, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1190" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1190" } ], "type": { @@ -18341,7 +18341,7 @@ "fileName": "button/index.d.ts", "line": 1172, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1172" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1172" } ] } @@ -18368,7 +18368,7 @@ "fileName": "button/index.d.ts", "line": 1195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1195" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1195" } ], "type": { @@ -18412,7 +18412,7 @@ "fileName": "button/index.d.ts", "line": 1201, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1201" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1201" } ], "type": { @@ -18452,7 +18452,7 @@ "fileName": "button/index.d.ts", "line": 1207, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1207" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1207" } ], "type": { @@ -18492,7 +18492,7 @@ "fileName": "button/index.d.ts", "line": 1213, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1213" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1213" } ], "type": { @@ -18516,7 +18516,7 @@ "fileName": "button/index.d.ts", "line": 1195, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1195" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1195" } ] } @@ -18543,7 +18543,7 @@ "fileName": "button/index.d.ts", "line": 1030, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1030" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1030" } ] } @@ -18570,7 +18570,7 @@ "fileName": "button/index.d.ts", "line": 1219, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1219" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1219" } ], "type": { @@ -18614,7 +18614,7 @@ "fileName": "button/index.d.ts", "line": 1225, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1225" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1225" } ], "type": { @@ -18654,7 +18654,7 @@ "fileName": "button/index.d.ts", "line": 1231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1231" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1231" } ], "type": { @@ -18694,7 +18694,7 @@ "fileName": "button/index.d.ts", "line": 1237, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1237" } ], "type": { @@ -18718,7 +18718,7 @@ "fileName": "button/index.d.ts", "line": 1219, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1219" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1219" } ] } @@ -18737,7 +18737,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -18762,7 +18762,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -18800,7 +18800,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -18840,7 +18840,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -18869,7 +18869,7 @@ "fileName": "button/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L13" } ], "extendedTypes": [ @@ -18903,7 +18903,7 @@ "fileName": "button/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/button/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/button/index.d.ts#L1" } ] }, @@ -18950,7 +18950,7 @@ "fileName": "card/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L17" } ], "type": { @@ -18994,7 +18994,7 @@ "fileName": "card/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L23" } ], "type": { @@ -19034,7 +19034,7 @@ "fileName": "card/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L29" } ], "type": { @@ -19074,7 +19074,7 @@ "fileName": "card/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L35" } ], "type": { @@ -19114,7 +19114,7 @@ "fileName": "card/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L41" } ], "type": { @@ -19139,7 +19139,7 @@ "fileName": "card/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L17" } ] } @@ -19166,7 +19166,7 @@ "fileName": "card/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L46" } ], "type": { @@ -19210,7 +19210,7 @@ "fileName": "card/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L52" } ], "type": { @@ -19250,7 +19250,7 @@ "fileName": "card/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L58" } ], "type": { @@ -19273,7 +19273,7 @@ "fileName": "card/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L46" } ] } @@ -19300,7 +19300,7 @@ "fileName": "card/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L63" } ], "type": { @@ -19344,7 +19344,7 @@ "fileName": "card/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L69" } ], "type": { @@ -19366,7 +19366,7 @@ "fileName": "card/index.d.ts", "line": 63, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L63" } ] } @@ -19393,7 +19393,7 @@ "fileName": "card/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L74" } ], "type": { @@ -19437,7 +19437,7 @@ "fileName": "card/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L80" } ], "type": { @@ -19477,7 +19477,7 @@ "fileName": "card/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L86" } ], "type": { @@ -19500,7 +19500,7 @@ "fileName": "card/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L74" } ] } @@ -19527,7 +19527,7 @@ "fileName": "card/index.d.ts", "line": 91, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L91" } ], "type": { @@ -19571,7 +19571,7 @@ "fileName": "card/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L97" } ], "type": { @@ -19593,7 +19593,7 @@ "fileName": "card/index.d.ts", "line": 91, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L91" } ] } @@ -19612,7 +19612,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -19637,7 +19637,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -19675,7 +19675,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -19715,7 +19715,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -19745,7 +19745,7 @@ "fileName": "card/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L13" } ], "extendedTypes": [ @@ -19779,7 +19779,7 @@ "fileName": "card/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/card/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/card/index.d.ts#L1" } ] }, @@ -19826,7 +19826,7 @@ "fileName": "carousel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L17" } ], "type": { @@ -19870,7 +19870,7 @@ "fileName": "carousel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L23" } ], "type": { @@ -19892,7 +19892,7 @@ "fileName": "carousel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L17" } ] } @@ -19919,7 +19919,7 @@ "fileName": "carousel/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L28" } ], "type": { @@ -19963,7 +19963,7 @@ "fileName": "carousel/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L34" } ], "type": { @@ -19985,7 +19985,7 @@ "fileName": "carousel/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L28" } ] } @@ -20012,7 +20012,7 @@ "fileName": "carousel/index.d.ts", "line": 39, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L39" } ], "type": { @@ -20056,7 +20056,7 @@ "fileName": "carousel/index.d.ts", "line": 45, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L45" } ], "type": { @@ -20096,7 +20096,7 @@ "fileName": "carousel/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L51" } ], "type": { @@ -20119,7 +20119,7 @@ "fileName": "carousel/index.d.ts", "line": 39, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L39" } ] } @@ -20146,7 +20146,7 @@ "fileName": "carousel/index.d.ts", "line": 56, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L56" } ], "type": { @@ -20190,7 +20190,7 @@ "fileName": "carousel/index.d.ts", "line": 62, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L62" } ], "type": { @@ -20230,7 +20230,7 @@ "fileName": "carousel/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L68" } ], "type": { @@ -20270,7 +20270,7 @@ "fileName": "carousel/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L74" } ], "type": { @@ -20299,7 +20299,7 @@ "fileName": "carousel/index.d.ts", "line": 78, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L78" } ], "type": { @@ -20343,7 +20343,7 @@ "fileName": "carousel/index.d.ts", "line": 84, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L84" } ], "type": { @@ -20383,7 +20383,7 @@ "fileName": "carousel/index.d.ts", "line": 90, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L90" } ], "type": { @@ -20423,7 +20423,7 @@ "fileName": "carousel/index.d.ts", "line": 96, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L96" } ], "type": { @@ -20463,7 +20463,7 @@ "fileName": "carousel/index.d.ts", "line": 102, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L102" } ], "type": { @@ -20503,7 +20503,7 @@ "fileName": "carousel/index.d.ts", "line": 108, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L108" } ], "type": { @@ -20529,7 +20529,7 @@ "fileName": "carousel/index.d.ts", "line": 78, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L78" } ] } @@ -20567,7 +20567,7 @@ "fileName": "carousel/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L115" } ], "type": { @@ -20607,7 +20607,7 @@ "fileName": "carousel/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L121" } ], "type": { @@ -20647,7 +20647,7 @@ "fileName": "carousel/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L127" } ], "type": { @@ -20675,7 +20675,7 @@ "fileName": "carousel/index.d.ts", "line": 56, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L56" } ] } @@ -20694,7 +20694,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -20719,7 +20719,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -20757,7 +20757,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -20797,7 +20797,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -20826,7 +20826,7 @@ "fileName": "carousel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L13" } ], "extendedTypes": [ @@ -20860,7 +20860,7 @@ "fileName": "carousel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/carousel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/carousel/index.d.ts#L1" } ] }, @@ -20907,7 +20907,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" } ], "type": { @@ -20951,7 +20951,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L23" } ], "type": { @@ -20991,7 +20991,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L29" } ], "type": { @@ -21031,7 +21031,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L35" } ], "type": { @@ -21071,7 +21071,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L41" } ], "type": { @@ -21111,7 +21111,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L47" } ], "type": { @@ -21151,7 +21151,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L53" } ], "type": { @@ -21191,7 +21191,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L59" } ], "type": { @@ -21231,7 +21231,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L65" } ], "type": { @@ -21271,7 +21271,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L71" } ], "type": { @@ -21311,7 +21311,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L77" } ], "type": { @@ -21351,7 +21351,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L83" } ], "type": { @@ -21391,7 +21391,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L89" } ], "type": { @@ -21431,7 +21431,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L95" } ], "type": { @@ -21471,7 +21471,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L101" } ], "type": { @@ -21511,7 +21511,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L107" } ], "type": { @@ -21540,7 +21540,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" } ], "type": { @@ -21584,7 +21584,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L117" } ], "type": { @@ -21624,7 +21624,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L123" } ], "type": { @@ -21664,7 +21664,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L129" } ], "type": { @@ -21704,7 +21704,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L135" } ], "type": { @@ -21744,7 +21744,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L141" } ], "type": { @@ -21770,7 +21770,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L111" } ] } @@ -21808,7 +21808,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L148" } ], "type": { @@ -21846,7 +21846,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L17" } ] } @@ -21873,7 +21873,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" } ], "type": { @@ -21917,7 +21917,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L159" } ], "type": { @@ -21957,7 +21957,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L165" } ], "type": { @@ -21980,7 +21980,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L153" } ] } @@ -22007,7 +22007,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" } ], "type": { @@ -22051,7 +22051,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L176" } ], "type": { @@ -22091,7 +22091,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L182" } ], "type": { @@ -22131,7 +22131,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L188" } ], "type": { @@ -22171,7 +22171,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L194" } ], "type": { @@ -22211,7 +22211,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L200" } ], "type": { @@ -22237,7 +22237,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L170" } ] } @@ -22264,7 +22264,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" } ], "type": { @@ -22308,7 +22308,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L211" } ], "type": { @@ -22348,7 +22348,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L217" } ], "type": { @@ -22371,7 +22371,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L205" } ] } @@ -22398,7 +22398,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 222, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" } ], "type": { @@ -22442,7 +22442,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L228" } ], "type": { @@ -22482,7 +22482,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 234, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L234" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L234" } ], "type": { @@ -22522,7 +22522,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 240, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L240" } ], "type": { @@ -22562,7 +22562,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 246, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L246" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L246" } ], "type": { @@ -22602,7 +22602,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 252, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L252" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L252" } ], "type": { @@ -22642,7 +22642,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 258, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L258" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L258" } ], "type": { @@ -22682,7 +22682,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 264, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L264" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L264" } ], "type": { @@ -22722,7 +22722,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 270, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L270" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L270" } ], "type": { @@ -22762,7 +22762,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 276, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L276" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L276" } ], "type": { @@ -22791,7 +22791,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 280, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" } ], "type": { @@ -22835,7 +22835,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 286, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L286" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L286" } ], "type": { @@ -22875,7 +22875,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 292, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L292" } ], "type": { @@ -22915,7 +22915,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 298, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L298" } ], "type": { @@ -22939,7 +22939,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 280, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L280" } ] } @@ -22968,7 +22968,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 222, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L222" } ] } @@ -22987,7 +22987,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -23012,7 +23012,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -23050,7 +23050,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -23090,7 +23090,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -23120,7 +23120,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L13" } ], "extendedTypes": [ @@ -23154,7 +23154,7 @@ "fileName": "cascadeselect/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/cascadeselect/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/cascadeselect/index.d.ts#L1" } ] }, @@ -23201,7 +23201,7 @@ "fileName": "checkbox/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L17" } ], "type": { @@ -23245,7 +23245,7 @@ "fileName": "checkbox/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L23" } ], "type": { @@ -23285,7 +23285,7 @@ "fileName": "checkbox/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L29" } ], "type": { @@ -23325,7 +23325,7 @@ "fileName": "checkbox/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L35" } ], "type": { @@ -23365,7 +23365,7 @@ "fileName": "checkbox/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L41" } ], "type": { @@ -23405,7 +23405,7 @@ "fileName": "checkbox/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L47" } ], "type": { @@ -23445,7 +23445,7 @@ "fileName": "checkbox/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L53" } ], "type": { @@ -23485,7 +23485,7 @@ "fileName": "checkbox/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L59" } ], "type": { @@ -23525,7 +23525,7 @@ "fileName": "checkbox/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L65" } ], "type": { @@ -23565,7 +23565,7 @@ "fileName": "checkbox/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L71" } ], "type": { @@ -23605,7 +23605,7 @@ "fileName": "checkbox/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L77" } ], "type": { @@ -23645,7 +23645,7 @@ "fileName": "checkbox/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L83" } ], "type": { @@ -23685,7 +23685,7 @@ "fileName": "checkbox/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L89" } ], "type": { @@ -23725,7 +23725,7 @@ "fileName": "checkbox/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L95" } ], "type": { @@ -23765,7 +23765,7 @@ "fileName": "checkbox/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L101" } ], "type": { @@ -23805,7 +23805,7 @@ "fileName": "checkbox/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L107" } ], "type": { @@ -23845,7 +23845,7 @@ "fileName": "checkbox/index.d.ts", "line": 113, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L113" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L113" } ], "type": { @@ -23885,7 +23885,7 @@ "fileName": "checkbox/index.d.ts", "line": 119, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L119" } ], "type": { @@ -23914,7 +23914,7 @@ "fileName": "checkbox/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L123" } ], "type": { @@ -23958,7 +23958,7 @@ "fileName": "checkbox/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L129" } ], "type": { @@ -23998,7 +23998,7 @@ "fileName": "checkbox/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L135" } ], "type": { @@ -24038,7 +24038,7 @@ "fileName": "checkbox/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L141" } ], "type": { @@ -24078,7 +24078,7 @@ "fileName": "checkbox/index.d.ts", "line": 147, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L147" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L147" } ], "type": { @@ -24118,7 +24118,7 @@ "fileName": "checkbox/index.d.ts", "line": 153, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L153" } ], "type": { @@ -24144,7 +24144,7 @@ "fileName": "checkbox/index.d.ts", "line": 123, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L123" } ] } @@ -24182,7 +24182,7 @@ "fileName": "checkbox/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L160" } ], "type": { @@ -24222,7 +24222,7 @@ "fileName": "checkbox/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L17" } ] } @@ -24249,7 +24249,7 @@ "fileName": "checkbox/index.d.ts", "line": 165, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L165" } ], "type": { @@ -24293,7 +24293,7 @@ "fileName": "checkbox/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L171" } ], "type": { @@ -24333,7 +24333,7 @@ "fileName": "checkbox/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L177" } ], "type": { @@ -24373,7 +24373,7 @@ "fileName": "checkbox/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L183" } ], "type": { @@ -24413,7 +24413,7 @@ "fileName": "checkbox/index.d.ts", "line": 189, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L189" } ], "type": { @@ -24453,7 +24453,7 @@ "fileName": "checkbox/index.d.ts", "line": 195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L195" } ], "type": { @@ -24479,7 +24479,7 @@ "fileName": "checkbox/index.d.ts", "line": 165, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L165" } ] } @@ -24498,7 +24498,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -24523,7 +24523,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -24561,7 +24561,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -24601,7 +24601,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -24628,7 +24628,7 @@ "fileName": "checkbox/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L13" } ], "extendedTypes": [ @@ -24662,7 +24662,7 @@ "fileName": "checkbox/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/checkbox/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/checkbox/index.d.ts#L1" } ] }, @@ -24709,7 +24709,7 @@ "fileName": "chip/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L17" } ], "type": { @@ -24753,7 +24753,7 @@ "fileName": "chip/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L23" } ], "type": { @@ -24793,7 +24793,7 @@ "fileName": "chip/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L29" } ], "type": { @@ -24833,7 +24833,7 @@ "fileName": "chip/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L35" } ], "type": { @@ -24873,7 +24873,7 @@ "fileName": "chip/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L41" } ], "type": { @@ -24913,7 +24913,7 @@ "fileName": "chip/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L47" } ], "type": { @@ -24953,7 +24953,7 @@ "fileName": "chip/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L53" } ], "type": { @@ -24993,7 +24993,7 @@ "fileName": "chip/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L59" } ], "type": { @@ -25021,7 +25021,7 @@ "fileName": "chip/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L17" } ] } @@ -25048,7 +25048,7 @@ "fileName": "chip/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L64" } ], "type": { @@ -25092,7 +25092,7 @@ "fileName": "chip/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L70" } ], "type": { @@ -25132,7 +25132,7 @@ "fileName": "chip/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L76" } ], "type": { @@ -25155,7 +25155,7 @@ "fileName": "chip/index.d.ts", "line": 64, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L64" } ] } @@ -25182,7 +25182,7 @@ "fileName": "chip/index.d.ts", "line": 81, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L81" } ], "type": { @@ -25226,7 +25226,7 @@ "fileName": "chip/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L87" } ], "type": { @@ -25266,7 +25266,7 @@ "fileName": "chip/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L93" } ], "type": { @@ -25289,7 +25289,7 @@ "fileName": "chip/index.d.ts", "line": 81, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L81" } ] } @@ -25316,7 +25316,7 @@ "fileName": "chip/index.d.ts", "line": 98, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L98" } ], "type": { @@ -25360,7 +25360,7 @@ "fileName": "chip/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L104" } ], "type": { @@ -25389,7 +25389,7 @@ "fileName": "chip/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L108" } ], "type": { @@ -25433,7 +25433,7 @@ "fileName": "chip/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L114" } ], "type": { @@ -25473,7 +25473,7 @@ "fileName": "chip/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L120" } ], "type": { @@ -25513,7 +25513,7 @@ "fileName": "chip/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L126" } ], "type": { @@ -25553,7 +25553,7 @@ "fileName": "chip/index.d.ts", "line": 132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L132" } ], "type": { @@ -25593,7 +25593,7 @@ "fileName": "chip/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L138" } ], "type": { @@ -25619,7 +25619,7 @@ "fileName": "chip/index.d.ts", "line": 108, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L108" } ] } @@ -25657,7 +25657,7 @@ "fileName": "chip/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L145" } ], "type": { @@ -25681,7 +25681,7 @@ "fileName": "chip/index.d.ts", "line": 98, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L98" } ] } @@ -25700,7 +25700,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -25725,7 +25725,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -25763,7 +25763,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -25803,7 +25803,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -25832,7 +25832,7 @@ "fileName": "chip/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L13" } ], "extendedTypes": [ @@ -25866,7 +25866,7 @@ "fileName": "chip/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/chip/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/chip/index.d.ts#L1" } ] }, @@ -25913,7 +25913,7 @@ "fileName": "colorpicker/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L17" } ], "type": { @@ -25957,7 +25957,7 @@ "fileName": "colorpicker/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L23" } ], "type": { @@ -25979,7 +25979,7 @@ "fileName": "colorpicker/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L17" } ] } @@ -26006,7 +26006,7 @@ "fileName": "colorpicker/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L28" } ], "type": { @@ -26050,7 +26050,7 @@ "fileName": "colorpicker/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L34" } ], "type": { @@ -26090,7 +26090,7 @@ "fileName": "colorpicker/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L40" } ], "type": { @@ -26130,7 +26130,7 @@ "fileName": "colorpicker/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L46" } ], "type": { @@ -26159,7 +26159,7 @@ "fileName": "colorpicker/index.d.ts", "line": 50, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L50" } ], "type": { @@ -26203,7 +26203,7 @@ "fileName": "colorpicker/index.d.ts", "line": 56, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L56" } ], "type": { @@ -26243,7 +26243,7 @@ "fileName": "colorpicker/index.d.ts", "line": 62, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L62" } ], "type": { @@ -26283,7 +26283,7 @@ "fileName": "colorpicker/index.d.ts", "line": 68, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L68" } ], "type": { @@ -26323,7 +26323,7 @@ "fileName": "colorpicker/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L74" } ], "type": { @@ -26363,7 +26363,7 @@ "fileName": "colorpicker/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L80" } ], "type": { @@ -26389,7 +26389,7 @@ "fileName": "colorpicker/index.d.ts", "line": 50, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L50" } ] } @@ -26412,7 +26412,7 @@ "fileName": "colorpicker/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L28" } ] } @@ -26439,7 +26439,7 @@ "fileName": "colorpicker/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L86" } ], "type": { @@ -26483,7 +26483,7 @@ "fileName": "colorpicker/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L92" } ], "type": { @@ -26523,7 +26523,7 @@ "fileName": "colorpicker/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L98" } ], "type": { @@ -26563,7 +26563,7 @@ "fileName": "colorpicker/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L104" } ], "type": { @@ -26603,7 +26603,7 @@ "fileName": "colorpicker/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L110" } ], "type": { @@ -26628,7 +26628,7 @@ "fileName": "colorpicker/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L86" } ] } @@ -26655,7 +26655,7 @@ "fileName": "colorpicker/index.d.ts", "line": 115, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L115" } ], "type": { @@ -26699,7 +26699,7 @@ "fileName": "colorpicker/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L121" } ], "type": { @@ -26721,7 +26721,7 @@ "fileName": "colorpicker/index.d.ts", "line": 115, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L115" } ] } @@ -26740,7 +26740,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -26765,7 +26765,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -26803,7 +26803,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -26843,7 +26843,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -26872,7 +26872,7 @@ "fileName": "colorpicker/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L13" } ], "extendedTypes": [ @@ -26906,7 +26906,7 @@ "fileName": "colorpicker/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/colorpicker/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/colorpicker/index.d.ts#L1" } ] }, @@ -26953,7 +26953,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" } ], "type": { @@ -26997,7 +26997,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L23" } ], "type": { @@ -27037,7 +27037,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L29" } ], "type": { @@ -27060,7 +27060,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L17" } ] } @@ -27087,7 +27087,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" } ], "type": { @@ -27131,7 +27131,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L40" } ], "type": { @@ -27153,7 +27153,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 34, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L34" } ] } @@ -27172,7 +27172,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -27197,7 +27197,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -27235,7 +27235,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -27275,7 +27275,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -27302,7 +27302,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L13" } ], "extendedTypes": [ @@ -27336,7 +27336,7 @@ "fileName": "confirmdialog/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmdialog/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmdialog/index.d.ts#L1" } ] }, @@ -27383,7 +27383,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" } ], "type": { @@ -27427,7 +27427,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L23" } ], "type": { @@ -27467,7 +27467,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L29" } ], "type": { @@ -27507,7 +27507,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L35" } ], "type": { @@ -27547,7 +27547,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L41" } ], "type": { @@ -27587,7 +27587,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L47" } ], "type": { @@ -27627,7 +27627,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L53" } ], "type": { @@ -27667,7 +27667,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L59" } ], "type": { @@ -27695,7 +27695,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L17" } ] } @@ -27722,7 +27722,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" } ], "type": { @@ -27766,7 +27766,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L70" } ], "type": { @@ -27806,7 +27806,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L76" } ], "type": { @@ -27829,7 +27829,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 64, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L64" } ] } @@ -27856,7 +27856,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 81, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" } ], "type": { @@ -27900,7 +27900,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L87" } ], "type": { @@ -27940,7 +27940,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L93" } ], "type": { @@ -27963,7 +27963,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 81, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L81" } ] } @@ -27990,7 +27990,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 98, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" } ], "type": { @@ -28034,7 +28034,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L104" } ], "type": { @@ -28074,7 +28074,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L110" } ], "type": { @@ -28097,7 +28097,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 98, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L98" } ] } @@ -28116,7 +28116,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -28141,7 +28141,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -28179,7 +28179,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -28219,7 +28219,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -28248,7 +28248,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L13" } ], "extendedTypes": [ @@ -28282,7 +28282,7 @@ "fileName": "confirmpopup/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/confirmpopup/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/confirmpopup/index.d.ts#L1" } ] }, @@ -28329,7 +28329,7 @@ "fileName": "contextmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L17" } ], "type": { @@ -28373,7 +28373,7 @@ "fileName": "contextmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L23" } ], "type": { @@ -28413,7 +28413,7 @@ "fileName": "contextmenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L29" } ], "type": { @@ -28453,7 +28453,7 @@ "fileName": "contextmenu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L35" } ], "type": { @@ -28493,7 +28493,7 @@ "fileName": "contextmenu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L41" } ], "type": { @@ -28533,7 +28533,7 @@ "fileName": "contextmenu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L47" } ], "type": { @@ -28573,7 +28573,7 @@ "fileName": "contextmenu/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L53" } ], "type": { @@ -28600,7 +28600,7 @@ "fileName": "contextmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L17" } ] } @@ -28627,7 +28627,7 @@ "fileName": "contextmenu/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L58" } ], "type": { @@ -28671,7 +28671,7 @@ "fileName": "contextmenu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L64" } ], "type": { @@ -28711,7 +28711,7 @@ "fileName": "contextmenu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L70" } ], "type": { @@ -28734,7 +28734,7 @@ "fileName": "contextmenu/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L58" } ] } @@ -28761,7 +28761,7 @@ "fileName": "contextmenu/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L75" } ], "type": { @@ -28805,7 +28805,7 @@ "fileName": "contextmenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L81" } ], "type": { @@ -28845,7 +28845,7 @@ "fileName": "contextmenu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L87" } ], "type": { @@ -28885,7 +28885,7 @@ "fileName": "contextmenu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L93" } ], "type": { @@ -28925,7 +28925,7 @@ "fileName": "contextmenu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L99" } ], "type": { @@ -28965,7 +28965,7 @@ "fileName": "contextmenu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L105" } ], "type": { @@ -29005,7 +29005,7 @@ "fileName": "contextmenu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L111" } ], "type": { @@ -29045,7 +29045,7 @@ "fileName": "contextmenu/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L117" } ], "type": { @@ -29085,7 +29085,7 @@ "fileName": "contextmenu/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L123" } ], "type": { @@ -29114,7 +29114,7 @@ "fileName": "contextmenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L127" } ], "type": { @@ -29158,7 +29158,7 @@ "fileName": "contextmenu/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L133" } ], "type": { @@ -29198,7 +29198,7 @@ "fileName": "contextmenu/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L139" } ], "type": { @@ -29238,7 +29238,7 @@ "fileName": "contextmenu/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L145" } ], "type": { @@ -29262,7 +29262,7 @@ "fileName": "contextmenu/index.d.ts", "line": 127, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L127" } ] } @@ -29290,7 +29290,7 @@ "fileName": "contextmenu/index.d.ts", "line": 75, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L75" } ] } @@ -29317,7 +29317,7 @@ "fileName": "contextmenu/index.d.ts", "line": 151, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L151" } ], "type": { @@ -29361,7 +29361,7 @@ "fileName": "contextmenu/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L157" } ], "type": { @@ -29401,7 +29401,7 @@ "fileName": "contextmenu/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L163" } ], "type": { @@ -29441,7 +29441,7 @@ "fileName": "contextmenu/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L169" } ], "type": { @@ -29481,7 +29481,7 @@ "fileName": "contextmenu/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L175" } ], "type": { @@ -29506,7 +29506,7 @@ "fileName": "contextmenu/index.d.ts", "line": 151, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L151" } ] } @@ -29533,7 +29533,7 @@ "fileName": "contextmenu/index.d.ts", "line": 180, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L180" } ], "type": { @@ -29577,7 +29577,7 @@ "fileName": "contextmenu/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L186" } ], "type": { @@ -29599,7 +29599,7 @@ "fileName": "contextmenu/index.d.ts", "line": 180, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L180" } ] } @@ -29618,7 +29618,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -29643,7 +29643,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -29681,7 +29681,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -29721,7 +29721,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -29751,7 +29751,7 @@ "fileName": "contextmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -29785,7 +29785,7 @@ "fileName": "contextmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/contextmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/contextmenu/index.d.ts#L1" } ] }, @@ -29832,7 +29832,7 @@ "fileName": "datatable/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L17" } ], "type": { @@ -29876,7 +29876,7 @@ "fileName": "datatable/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L23" } ], "type": { @@ -29916,7 +29916,7 @@ "fileName": "datatable/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L29" } ], "type": { @@ -29939,7 +29939,7 @@ "fileName": "datatable/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L17" } ] } @@ -29966,7 +29966,7 @@ "fileName": "datatable/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L34" } ], "type": { @@ -30010,7 +30010,7 @@ "fileName": "datatable/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L40" } ], "type": { @@ -30050,7 +30050,7 @@ "fileName": "datatable/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L46" } ], "type": { @@ -30090,7 +30090,7 @@ "fileName": "datatable/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L52" } ], "type": { @@ -30130,7 +30130,7 @@ "fileName": "datatable/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L58" } ], "type": { @@ -30170,7 +30170,7 @@ "fileName": "datatable/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L64" } ], "type": { @@ -30196,7 +30196,7 @@ "fileName": "datatable/index.d.ts", "line": 34, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L34" } ] } @@ -30223,7 +30223,7 @@ "fileName": "datatable/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L69" } ], "type": { @@ -30267,7 +30267,7 @@ "fileName": "datatable/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L75" } ], "type": { @@ -30307,7 +30307,7 @@ "fileName": "datatable/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L81" } ], "type": { @@ -30347,7 +30347,7 @@ "fileName": "datatable/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L87" } ], "type": { @@ -30387,7 +30387,7 @@ "fileName": "datatable/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L93" } ], "type": { @@ -30427,7 +30427,7 @@ "fileName": "datatable/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L99" } ], "type": { @@ -30467,7 +30467,7 @@ "fileName": "datatable/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L105" } ], "type": { @@ -30507,7 +30507,7 @@ "fileName": "datatable/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L111" } ], "type": { @@ -30547,7 +30547,7 @@ "fileName": "datatable/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L117" } ], "type": { @@ -30587,7 +30587,7 @@ "fileName": "datatable/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L123" } ], "type": { @@ -30616,7 +30616,7 @@ "fileName": "datatable/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L127" } ], "type": { @@ -30660,7 +30660,7 @@ "fileName": "datatable/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L133" } ], "type": { @@ -30700,7 +30700,7 @@ "fileName": "datatable/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L139" } ], "type": { @@ -30740,7 +30740,7 @@ "fileName": "datatable/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L145" } ], "type": { @@ -30780,7 +30780,7 @@ "fileName": "datatable/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L151" } ], "type": { @@ -30820,7 +30820,7 @@ "fileName": "datatable/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L157" } ], "type": { @@ -30846,7 +30846,7 @@ "fileName": "datatable/index.d.ts", "line": 127, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L127" } ] } @@ -30875,7 +30875,7 @@ "fileName": "datatable/index.d.ts", "line": 69, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L69" } ] } @@ -30902,7 +30902,7 @@ "fileName": "datatable/index.d.ts", "line": 163, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L163" } ], "type": { @@ -30946,7 +30946,7 @@ "fileName": "datatable/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L169" } ], "type": { @@ -30968,7 +30968,7 @@ "fileName": "datatable/index.d.ts", "line": 163, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L163" } ] } @@ -30995,7 +30995,7 @@ "fileName": "datatable/index.d.ts", "line": 174, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L174" } ], "type": { @@ -31039,7 +31039,7 @@ "fileName": "datatable/index.d.ts", "line": 180, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L180" } ], "type": { @@ -31079,7 +31079,7 @@ "fileName": "datatable/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L186" } ], "type": { @@ -31119,7 +31119,7 @@ "fileName": "datatable/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L192" } ], "type": { @@ -31159,7 +31159,7 @@ "fileName": "datatable/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L198" } ], "type": { @@ -31199,7 +31199,7 @@ "fileName": "datatable/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L204" } ], "type": { @@ -31239,7 +31239,7 @@ "fileName": "datatable/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L210" } ], "type": { @@ -31268,7 +31268,7 @@ "fileName": "datatable/index.d.ts", "line": 214, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L214" } ], "type": { @@ -31312,7 +31312,7 @@ "fileName": "datatable/index.d.ts", "line": 220, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L220" } ], "type": { @@ -31352,7 +31352,7 @@ "fileName": "datatable/index.d.ts", "line": 226, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L226" } ], "type": { @@ -31392,7 +31392,7 @@ "fileName": "datatable/index.d.ts", "line": 232, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L232" } ], "type": { @@ -31432,7 +31432,7 @@ "fileName": "datatable/index.d.ts", "line": 238, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L238" } ], "type": { @@ -31472,7 +31472,7 @@ "fileName": "datatable/index.d.ts", "line": 244, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L244" } ], "type": { @@ -31498,7 +31498,7 @@ "fileName": "datatable/index.d.ts", "line": 214, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L214" } ] } @@ -31536,7 +31536,7 @@ "fileName": "datatable/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L251" } ], "type": { @@ -31565,7 +31565,7 @@ "fileName": "datatable/index.d.ts", "line": 174, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L174" } ] } @@ -31592,7 +31592,7 @@ "fileName": "datatable/index.d.ts", "line": 256, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L256" } ], "type": { @@ -31636,7 +31636,7 @@ "fileName": "datatable/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L262" } ], "type": { @@ -31676,7 +31676,7 @@ "fileName": "datatable/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L268" } ], "type": { @@ -31716,7 +31716,7 @@ "fileName": "datatable/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L274" } ], "type": { @@ -31740,7 +31740,7 @@ "fileName": "datatable/index.d.ts", "line": 256, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L256" } ] } @@ -31767,7 +31767,7 @@ "fileName": "datatable/index.d.ts", "line": 279, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L279" } ], "type": { @@ -31811,7 +31811,7 @@ "fileName": "datatable/index.d.ts", "line": 285, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L285" } ], "type": { @@ -31851,7 +31851,7 @@ "fileName": "datatable/index.d.ts", "line": 291, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L291" } ], "type": { @@ -31891,7 +31891,7 @@ "fileName": "datatable/index.d.ts", "line": 297, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L297" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L297" } ], "type": { @@ -31931,7 +31931,7 @@ "fileName": "datatable/index.d.ts", "line": 303, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L303" } ], "type": { @@ -31956,7 +31956,7 @@ "fileName": "datatable/index.d.ts", "line": 279, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L279" } ] } @@ -31983,7 +31983,7 @@ "fileName": "datatable/index.d.ts", "line": 308, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L308" } ], "type": { @@ -32027,7 +32027,7 @@ "fileName": "datatable/index.d.ts", "line": 314, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L314" } ], "type": { @@ -32049,7 +32049,7 @@ "fileName": "datatable/index.d.ts", "line": 308, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L308" } ] } @@ -32076,7 +32076,7 @@ "fileName": "datatable/index.d.ts", "line": 319, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L319" } ], "type": { @@ -32120,7 +32120,7 @@ "fileName": "datatable/index.d.ts", "line": 325, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L325" } ], "type": { @@ -32160,7 +32160,7 @@ "fileName": "datatable/index.d.ts", "line": 331, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L331" } ], "type": { @@ -32200,7 +32200,7 @@ "fileName": "datatable/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L337" } ], "type": { @@ -32240,7 +32240,7 @@ "fileName": "datatable/index.d.ts", "line": 343, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L343" } ], "type": { @@ -32280,7 +32280,7 @@ "fileName": "datatable/index.d.ts", "line": 349, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L349" } ], "type": { @@ -32306,7 +32306,7 @@ "fileName": "datatable/index.d.ts", "line": 319, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L319" } ] } @@ -32333,7 +32333,7 @@ "fileName": "datatable/index.d.ts", "line": 354, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L354" } ], "type": { @@ -32377,7 +32377,7 @@ "fileName": "datatable/index.d.ts", "line": 360, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L360" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L360" } ], "type": { @@ -32417,7 +32417,7 @@ "fileName": "datatable/index.d.ts", "line": 366, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L366" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L366" } ], "type": { @@ -32457,7 +32457,7 @@ "fileName": "datatable/index.d.ts", "line": 372, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L372" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L372" } ], "type": { @@ -32497,7 +32497,7 @@ "fileName": "datatable/index.d.ts", "line": 378, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L378" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L378" } ], "type": { @@ -32537,7 +32537,7 @@ "fileName": "datatable/index.d.ts", "line": 384, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L384" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L384" } ], "type": { @@ -32577,7 +32577,7 @@ "fileName": "datatable/index.d.ts", "line": 390, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L390" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L390" } ], "type": { @@ -32617,7 +32617,7 @@ "fileName": "datatable/index.d.ts", "line": 396, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L396" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L396" } ], "type": { @@ -32657,7 +32657,7 @@ "fileName": "datatable/index.d.ts", "line": 402, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L402" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L402" } ], "type": { @@ -32697,7 +32697,7 @@ "fileName": "datatable/index.d.ts", "line": 408, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L408" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L408" } ], "type": { @@ -32737,7 +32737,7 @@ "fileName": "datatable/index.d.ts", "line": 414, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L414" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L414" } ], "type": { @@ -32777,7 +32777,7 @@ "fileName": "datatable/index.d.ts", "line": 420, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L420" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L420" } ], "type": { @@ -32817,7 +32817,7 @@ "fileName": "datatable/index.d.ts", "line": 426, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L426" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L426" } ], "type": { @@ -32857,7 +32857,7 @@ "fileName": "datatable/index.d.ts", "line": 432, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L432" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L432" } ], "type": { @@ -32897,7 +32897,7 @@ "fileName": "datatable/index.d.ts", "line": 438, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L438" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L438" } ], "type": { @@ -32937,7 +32937,7 @@ "fileName": "datatable/index.d.ts", "line": 444, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L444" } ], "type": { @@ -32973,7 +32973,7 @@ "fileName": "datatable/index.d.ts", "line": 354, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L354" } ] } @@ -33000,7 +33000,7 @@ "fileName": "datatable/index.d.ts", "line": 449, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L449" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L449" } ], "type": { @@ -33044,7 +33044,7 @@ "fileName": "datatable/index.d.ts", "line": 455, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L455" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L455" } ], "type": { @@ -33084,7 +33084,7 @@ "fileName": "datatable/index.d.ts", "line": 461, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L461" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L461" } ], "type": { @@ -33124,7 +33124,7 @@ "fileName": "datatable/index.d.ts", "line": 467, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L467" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L467" } ], "type": { @@ -33164,7 +33164,7 @@ "fileName": "datatable/index.d.ts", "line": 473, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L473" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L473" } ], "type": { @@ -33204,7 +33204,7 @@ "fileName": "datatable/index.d.ts", "line": 479, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L479" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L479" } ], "type": { @@ -33244,7 +33244,7 @@ "fileName": "datatable/index.d.ts", "line": 485, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L485" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L485" } ], "type": { @@ -33271,7 +33271,7 @@ "fileName": "datatable/index.d.ts", "line": 449, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L449" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L449" } ] } @@ -33298,7 +33298,7 @@ "fileName": "datatable/index.d.ts", "line": 490, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L490" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L490" } ], "type": { @@ -33342,7 +33342,7 @@ "fileName": "datatable/index.d.ts", "line": 496, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L496" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L496" } ], "type": { @@ -33382,7 +33382,7 @@ "fileName": "datatable/index.d.ts", "line": 502, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L502" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L502" } ], "type": { @@ -33405,7 +33405,7 @@ "fileName": "datatable/index.d.ts", "line": 490, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L490" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L490" } ] } @@ -33432,7 +33432,7 @@ "fileName": "datatable/index.d.ts", "line": 507, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L507" } ], "type": { @@ -33476,7 +33476,7 @@ "fileName": "datatable/index.d.ts", "line": 513, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L513" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L513" } ], "type": { @@ -33516,7 +33516,7 @@ "fileName": "datatable/index.d.ts", "line": 519, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L519" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L519" } ], "type": { @@ -33539,7 +33539,7 @@ "fileName": "datatable/index.d.ts", "line": 507, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L507" } ] } @@ -33566,7 +33566,7 @@ "fileName": "datatable/index.d.ts", "line": 524, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L524" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L524" } ], "type": { @@ -33610,7 +33610,7 @@ "fileName": "datatable/index.d.ts", "line": 530, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L530" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L530" } ], "type": { @@ -33632,7 +33632,7 @@ "fileName": "datatable/index.d.ts", "line": 524, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L524" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L524" } ] } @@ -33659,7 +33659,7 @@ "fileName": "datatable/index.d.ts", "line": 535, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L535" } ], "type": { @@ -33703,7 +33703,7 @@ "fileName": "datatable/index.d.ts", "line": 541, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L541" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L541" } ], "type": { @@ -33743,7 +33743,7 @@ "fileName": "datatable/index.d.ts", "line": 547, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L547" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L547" } ], "type": { @@ -33783,7 +33783,7 @@ "fileName": "datatable/index.d.ts", "line": 553, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L553" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L553" } ], "type": { @@ -33823,7 +33823,7 @@ "fileName": "datatable/index.d.ts", "line": 559, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L559" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L559" } ], "type": { @@ -33863,7 +33863,7 @@ "fileName": "datatable/index.d.ts", "line": 565, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L565" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L565" } ], "type": { @@ -33903,7 +33903,7 @@ "fileName": "datatable/index.d.ts", "line": 571, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L571" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L571" } ], "type": { @@ -33943,7 +33943,7 @@ "fileName": "datatable/index.d.ts", "line": 577, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L577" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L577" } ], "type": { @@ -33972,7 +33972,7 @@ "fileName": "datatable/index.d.ts", "line": 581, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L581" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L581" } ], "type": { @@ -34016,7 +34016,7 @@ "fileName": "datatable/index.d.ts", "line": 587, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L587" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L587" } ], "type": { @@ -34056,7 +34056,7 @@ "fileName": "datatable/index.d.ts", "line": 593, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L593" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L593" } ], "type": { @@ -34096,7 +34096,7 @@ "fileName": "datatable/index.d.ts", "line": 599, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L599" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L599" } ], "type": { @@ -34136,7 +34136,7 @@ "fileName": "datatable/index.d.ts", "line": 605, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L605" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L605" } ], "type": { @@ -34176,7 +34176,7 @@ "fileName": "datatable/index.d.ts", "line": 611, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L611" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L611" } ], "type": { @@ -34202,7 +34202,7 @@ "fileName": "datatable/index.d.ts", "line": 581, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L581" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L581" } ] } @@ -34229,7 +34229,7 @@ "fileName": "datatable/index.d.ts", "line": 535, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L535" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L535" } ] } @@ -34256,7 +34256,7 @@ "fileName": "datatable/index.d.ts", "line": 617, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L617" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L617" } ], "type": { @@ -34300,7 +34300,7 @@ "fileName": "datatable/index.d.ts", "line": 623, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L623" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L623" } ], "type": { @@ -34329,7 +34329,7 @@ "fileName": "datatable/index.d.ts", "line": 627, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L627" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L627" } ], "type": { @@ -34373,7 +34373,7 @@ "fileName": "datatable/index.d.ts", "line": 633, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L633" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L633" } ], "type": { @@ -34413,7 +34413,7 @@ "fileName": "datatable/index.d.ts", "line": 639, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L639" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L639" } ], "type": { @@ -34453,7 +34453,7 @@ "fileName": "datatable/index.d.ts", "line": 645, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L645" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L645" } ], "type": { @@ -34493,7 +34493,7 @@ "fileName": "datatable/index.d.ts", "line": 651, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L651" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L651" } ], "type": { @@ -34533,7 +34533,7 @@ "fileName": "datatable/index.d.ts", "line": 657, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L657" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L657" } ], "type": { @@ -34559,7 +34559,7 @@ "fileName": "datatable/index.d.ts", "line": 627, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L627" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L627" } ] } @@ -34586,7 +34586,7 @@ "fileName": "datatable/index.d.ts", "line": 662, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L662" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L662" } ], "type": { @@ -34630,7 +34630,7 @@ "fileName": "datatable/index.d.ts", "line": 668, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L668" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L668" } ], "type": { @@ -34670,7 +34670,7 @@ "fileName": "datatable/index.d.ts", "line": 674, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L674" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L674" } ], "type": { @@ -34710,7 +34710,7 @@ "fileName": "datatable/index.d.ts", "line": 680, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L680" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L680" } ], "type": { @@ -34750,7 +34750,7 @@ "fileName": "datatable/index.d.ts", "line": 686, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L686" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L686" } ], "type": { @@ -34790,7 +34790,7 @@ "fileName": "datatable/index.d.ts", "line": 692, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L692" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L692" } ], "type": { @@ -34830,7 +34830,7 @@ "fileName": "datatable/index.d.ts", "line": 698, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L698" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L698" } ], "type": { @@ -34870,7 +34870,7 @@ "fileName": "datatable/index.d.ts", "line": 704, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L704" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L704" } ], "type": { @@ -34898,7 +34898,7 @@ "fileName": "datatable/index.d.ts", "line": 662, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L662" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L662" } ] } @@ -34925,7 +34925,7 @@ "fileName": "datatable/index.d.ts", "line": 709, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L709" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L709" } ], "type": { @@ -34969,7 +34969,7 @@ "fileName": "datatable/index.d.ts", "line": 715, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L715" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L715" } ], "type": { @@ -34991,7 +34991,7 @@ "fileName": "datatable/index.d.ts", "line": 709, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L709" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L709" } ] } @@ -35018,7 +35018,7 @@ "fileName": "datatable/index.d.ts", "line": 720, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L720" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L720" } ], "type": { @@ -35062,7 +35062,7 @@ "fileName": "datatable/index.d.ts", "line": 726, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L726" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L726" } ], "type": { @@ -35102,7 +35102,7 @@ "fileName": "datatable/index.d.ts", "line": 732, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L732" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L732" } ], "type": { @@ -35125,7 +35125,7 @@ "fileName": "datatable/index.d.ts", "line": 720, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L720" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L720" } ] } @@ -35152,7 +35152,7 @@ "fileName": "datatable/index.d.ts", "line": 737, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L737" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L737" } ], "type": { @@ -35196,7 +35196,7 @@ "fileName": "datatable/index.d.ts", "line": 743, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L743" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L743" } ], "type": { @@ -35236,7 +35236,7 @@ "fileName": "datatable/index.d.ts", "line": 749, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L749" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L749" } ], "type": { @@ -35276,7 +35276,7 @@ "fileName": "datatable/index.d.ts", "line": 755, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L755" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L755" } ], "type": { @@ -35316,7 +35316,7 @@ "fileName": "datatable/index.d.ts", "line": 761, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L761" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L761" } ], "type": { @@ -35356,7 +35356,7 @@ "fileName": "datatable/index.d.ts", "line": 767, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L767" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L767" } ], "type": { @@ -35396,7 +35396,7 @@ "fileName": "datatable/index.d.ts", "line": 773, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L773" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L773" } ], "type": { @@ -35436,7 +35436,7 @@ "fileName": "datatable/index.d.ts", "line": 779, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L779" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L779" } ], "type": { @@ -35465,7 +35465,7 @@ "fileName": "datatable/index.d.ts", "line": 783, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L783" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L783" } ], "type": { @@ -35509,7 +35509,7 @@ "fileName": "datatable/index.d.ts", "line": 789, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L789" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L789" } ], "type": { @@ -35531,7 +35531,7 @@ "fileName": "datatable/index.d.ts", "line": 783, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L783" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L783" } ] } @@ -35569,7 +35569,7 @@ "fileName": "datatable/index.d.ts", "line": 796, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L796" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L796" } ], "type": { @@ -35609,7 +35609,7 @@ "fileName": "datatable/index.d.ts", "line": 802, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L802" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L802" } ], "type": { @@ -35640,7 +35640,7 @@ "fileName": "datatable/index.d.ts", "line": 737, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L737" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L737" } ] } @@ -35665,7 +35665,7 @@ "fileName": "datatable/index.d.ts", "line": 617, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L617" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L617" } ] } @@ -35692,7 +35692,7 @@ "fileName": "datatable/index.d.ts", "line": 808, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L808" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L808" } ], "type": { @@ -35736,7 +35736,7 @@ "fileName": "datatable/index.d.ts", "line": 814, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L814" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L814" } ], "type": { @@ -35776,7 +35776,7 @@ "fileName": "datatable/index.d.ts", "line": 820, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L820" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L820" } ], "type": { @@ -35799,7 +35799,7 @@ "fileName": "datatable/index.d.ts", "line": 808, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L808" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L808" } ] } @@ -35826,7 +35826,7 @@ "fileName": "datatable/index.d.ts", "line": 825, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L825" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L825" } ], "type": { @@ -35870,7 +35870,7 @@ "fileName": "datatable/index.d.ts", "line": 831, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L831" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L831" } ], "type": { @@ -35910,7 +35910,7 @@ "fileName": "datatable/index.d.ts", "line": 837, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L837" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L837" } ], "type": { @@ -35933,7 +35933,7 @@ "fileName": "datatable/index.d.ts", "line": 825, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L825" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L825" } ] } @@ -35952,7 +35952,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -35977,7 +35977,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -36015,7 +36015,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -36055,7 +36055,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -36098,7 +36098,7 @@ "fileName": "datatable/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L13" } ], "extendedTypes": [ @@ -36132,7 +36132,7 @@ "fileName": "datatable/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datatable/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datatable/index.d.ts#L1" } ] }, @@ -36179,7 +36179,7 @@ "fileName": "dataview/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L17" } ], "type": { @@ -36223,7 +36223,7 @@ "fileName": "dataview/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L23" } ], "type": { @@ -36263,7 +36263,7 @@ "fileName": "dataview/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L29" } ], "type": { @@ -36303,7 +36303,7 @@ "fileName": "dataview/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L35" } ], "type": { @@ -36343,7 +36343,7 @@ "fileName": "dataview/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L41" } ], "type": { @@ -36368,7 +36368,7 @@ "fileName": "dataview/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L17" } ] } @@ -36395,7 +36395,7 @@ "fileName": "dataview/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L46" } ], "type": { @@ -36439,7 +36439,7 @@ "fileName": "dataview/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L52" } ], "type": { @@ -36479,7 +36479,7 @@ "fileName": "dataview/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L58" } ], "type": { @@ -36519,7 +36519,7 @@ "fileName": "dataview/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L64" } ], "type": { @@ -36559,7 +36559,7 @@ "fileName": "dataview/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L70" } ], "type": { @@ -36599,7 +36599,7 @@ "fileName": "dataview/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L76" } ], "type": { @@ -36639,7 +36639,7 @@ "fileName": "dataview/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L82" } ], "type": { @@ -36666,7 +36666,7 @@ "fileName": "dataview/index.d.ts", "line": 46, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L46" } ] } @@ -36693,7 +36693,7 @@ "fileName": "dataview/index.d.ts", "line": 87, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L87" } ], "type": { @@ -36737,7 +36737,7 @@ "fileName": "dataview/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L93" } ], "type": { @@ -36777,7 +36777,7 @@ "fileName": "dataview/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L99" } ], "type": { @@ -36817,7 +36817,7 @@ "fileName": "dataview/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L105" } ], "type": { @@ -36857,7 +36857,7 @@ "fileName": "dataview/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L111" } ], "type": { @@ -36897,7 +36897,7 @@ "fileName": "dataview/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L117" } ], "type": { @@ -36937,7 +36937,7 @@ "fileName": "dataview/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L123" } ], "type": { @@ -36964,7 +36964,7 @@ "fileName": "dataview/index.d.ts", "line": 87, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L87" } ] } @@ -36991,7 +36991,7 @@ "fileName": "dataview/index.d.ts", "line": 128, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L128" } ], "type": { @@ -37035,7 +37035,7 @@ "fileName": "dataview/index.d.ts", "line": 134, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L134" } ], "type": { @@ -37075,7 +37075,7 @@ "fileName": "dataview/index.d.ts", "line": 140, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L140" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L140" } ], "type": { @@ -37115,7 +37115,7 @@ "fileName": "dataview/index.d.ts", "line": 146, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L146" } ], "type": { @@ -37155,7 +37155,7 @@ "fileName": "dataview/index.d.ts", "line": 152, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L152" } ], "type": { @@ -37195,7 +37195,7 @@ "fileName": "dataview/index.d.ts", "line": 158, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L158" } ], "type": { @@ -37235,7 +37235,7 @@ "fileName": "dataview/index.d.ts", "line": 164, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L164" } ], "type": { @@ -37262,7 +37262,7 @@ "fileName": "dataview/index.d.ts", "line": 128, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L128" } ] } @@ -37289,7 +37289,7 @@ "fileName": "dataview/index.d.ts", "line": 169, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L169" } ], "type": { @@ -37333,7 +37333,7 @@ "fileName": "dataview/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L175" } ], "type": { @@ -37373,7 +37373,7 @@ "fileName": "dataview/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L181" } ], "type": { @@ -37396,7 +37396,7 @@ "fileName": "dataview/index.d.ts", "line": 169, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L169" } ] } @@ -37423,7 +37423,7 @@ "fileName": "dataview/index.d.ts", "line": 186, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L186" } ], "type": { @@ -37467,7 +37467,7 @@ "fileName": "dataview/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L192" } ], "type": { @@ -37507,7 +37507,7 @@ "fileName": "dataview/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L198" } ], "type": { @@ -37530,7 +37530,7 @@ "fileName": "dataview/index.d.ts", "line": 186, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L186" } ] } @@ -37549,7 +37549,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -37574,7 +37574,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -37612,7 +37612,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -37652,7 +37652,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -37683,7 +37683,7 @@ "fileName": "dataview/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L13" } ], "extendedTypes": [ @@ -37717,7 +37717,7 @@ "fileName": "dataview/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dataview/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dataview/index.d.ts#L1" } ] }, @@ -37764,7 +37764,7 @@ "fileName": "datepicker/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L17" } ], "type": { @@ -37808,7 +37808,7 @@ "fileName": "datepicker/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L23" } ], "type": { @@ -37830,7 +37830,7 @@ "fileName": "datepicker/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L17" } ] } @@ -37857,7 +37857,7 @@ "fileName": "datepicker/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L28" } ], "type": { @@ -37901,7 +37901,7 @@ "fileName": "datepicker/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L34" } ], "type": { @@ -37941,7 +37941,7 @@ "fileName": "datepicker/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L40" } ], "type": { @@ -37981,7 +37981,7 @@ "fileName": "datepicker/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L46" } ], "type": { @@ -38021,7 +38021,7 @@ "fileName": "datepicker/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L52" } ], "type": { @@ -38061,7 +38061,7 @@ "fileName": "datepicker/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L58" } ], "type": { @@ -38101,7 +38101,7 @@ "fileName": "datepicker/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L64" } ], "type": { @@ -38128,7 +38128,7 @@ "fileName": "datepicker/index.d.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L28" } ] } @@ -38155,7 +38155,7 @@ "fileName": "datepicker/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L69" } ], "type": { @@ -38199,7 +38199,7 @@ "fileName": "datepicker/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L75" } ], "type": { @@ -38239,7 +38239,7 @@ "fileName": "datepicker/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L81" } ], "type": { @@ -38279,7 +38279,7 @@ "fileName": "datepicker/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L87" } ], "type": { @@ -38319,7 +38319,7 @@ "fileName": "datepicker/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L93" } ], "type": { @@ -38359,7 +38359,7 @@ "fileName": "datepicker/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L99" } ], "type": { @@ -38399,7 +38399,7 @@ "fileName": "datepicker/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L105" } ], "type": { @@ -38426,7 +38426,7 @@ "fileName": "datepicker/index.d.ts", "line": 69, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L69" } ] } @@ -38453,7 +38453,7 @@ "fileName": "datepicker/index.d.ts", "line": 110, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L110" } ], "type": { @@ -38497,7 +38497,7 @@ "fileName": "datepicker/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L116" } ], "type": { @@ -38537,7 +38537,7 @@ "fileName": "datepicker/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L122" } ], "type": { @@ -38560,7 +38560,7 @@ "fileName": "datepicker/index.d.ts", "line": 110, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L110" } ] } @@ -38587,7 +38587,7 @@ "fileName": "datepicker/index.d.ts", "line": 127, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L127" } ], "type": { @@ -38631,7 +38631,7 @@ "fileName": "datepicker/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L133" } ], "type": { @@ -38671,7 +38671,7 @@ "fileName": "datepicker/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L139" } ], "type": { @@ -38711,7 +38711,7 @@ "fileName": "datepicker/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L145" } ], "type": { @@ -38751,7 +38751,7 @@ "fileName": "datepicker/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L151" } ], "type": { @@ -38791,7 +38791,7 @@ "fileName": "datepicker/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L157" } ], "type": { @@ -38820,7 +38820,7 @@ "fileName": "datepicker/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L161" } ], "type": { @@ -38864,7 +38864,7 @@ "fileName": "datepicker/index.d.ts", "line": 167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L167" } ], "type": { @@ -38904,7 +38904,7 @@ "fileName": "datepicker/index.d.ts", "line": 173, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L173" } ], "type": { @@ -38944,7 +38944,7 @@ "fileName": "datepicker/index.d.ts", "line": 179, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L179" } ], "type": { @@ -38984,7 +38984,7 @@ "fileName": "datepicker/index.d.ts", "line": 185, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L185" } ], "type": { @@ -39024,7 +39024,7 @@ "fileName": "datepicker/index.d.ts", "line": 191, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L191" } ], "type": { @@ -39050,7 +39050,7 @@ "fileName": "datepicker/index.d.ts", "line": 161, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L161" } ] } @@ -39088,7 +39088,7 @@ "fileName": "datepicker/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L198" } ], "type": { @@ -39128,7 +39128,7 @@ "fileName": "datepicker/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L204" } ], "type": { @@ -39168,7 +39168,7 @@ "fileName": "datepicker/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L210" } ], "type": { @@ -39208,7 +39208,7 @@ "fileName": "datepicker/index.d.ts", "line": 216, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L216" } ], "type": { @@ -39248,7 +39248,7 @@ "fileName": "datepicker/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L222" } ], "type": { @@ -39288,7 +39288,7 @@ "fileName": "datepicker/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L228" } ], "type": { @@ -39321,7 +39321,7 @@ "fileName": "datepicker/index.d.ts", "line": 127, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L127" } ] } @@ -39348,7 +39348,7 @@ "fileName": "datepicker/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L233" } ], "type": { @@ -39392,7 +39392,7 @@ "fileName": "datepicker/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L239" } ], "type": { @@ -39414,7 +39414,7 @@ "fileName": "datepicker/index.d.ts", "line": 233, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L233" } ] } @@ -39441,7 +39441,7 @@ "fileName": "datepicker/index.d.ts", "line": 244, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L244" } ], "type": { @@ -39485,7 +39485,7 @@ "fileName": "datepicker/index.d.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L250" } ], "type": { @@ -39525,7 +39525,7 @@ "fileName": "datepicker/index.d.ts", "line": 256, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L256" } ], "type": { @@ -39565,7 +39565,7 @@ "fileName": "datepicker/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L262" } ], "type": { @@ -39605,7 +39605,7 @@ "fileName": "datepicker/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L268" } ], "type": { @@ -39645,7 +39645,7 @@ "fileName": "datepicker/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L274" } ], "type": { @@ -39671,7 +39671,7 @@ "fileName": "datepicker/index.d.ts", "line": 244, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L244" } ] } @@ -39698,7 +39698,7 @@ "fileName": "datepicker/index.d.ts", "line": 279, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L279" } ], "type": { @@ -39742,7 +39742,7 @@ "fileName": "datepicker/index.d.ts", "line": 285, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L285" } ], "type": { @@ -39782,7 +39782,7 @@ "fileName": "datepicker/index.d.ts", "line": 291, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L291" } ], "type": { @@ -39822,7 +39822,7 @@ "fileName": "datepicker/index.d.ts", "line": 297, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L297" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L297" } ], "type": { @@ -39862,7 +39862,7 @@ "fileName": "datepicker/index.d.ts", "line": 303, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L303" } ], "type": { @@ -39902,7 +39902,7 @@ "fileName": "datepicker/index.d.ts", "line": 309, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L309" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L309" } ], "type": { @@ -39928,7 +39928,7 @@ "fileName": "datepicker/index.d.ts", "line": 279, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L279" } ] } @@ -39955,7 +39955,7 @@ "fileName": "datepicker/index.d.ts", "line": 314, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L314" } ], "type": { @@ -39999,7 +39999,7 @@ "fileName": "datepicker/index.d.ts", "line": 320, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L320" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L320" } ], "type": { @@ -40039,7 +40039,7 @@ "fileName": "datepicker/index.d.ts", "line": 326, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L326" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L326" } ], "type": { @@ -40062,7 +40062,7 @@ "fileName": "datepicker/index.d.ts", "line": 314, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L314" } ] } @@ -40089,7 +40089,7 @@ "fileName": "datepicker/index.d.ts", "line": 331, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L331" } ], "type": { @@ -40133,7 +40133,7 @@ "fileName": "datepicker/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L337" } ], "type": { @@ -40155,7 +40155,7 @@ "fileName": "datepicker/index.d.ts", "line": 331, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L331" } ] } @@ -40182,7 +40182,7 @@ "fileName": "datepicker/index.d.ts", "line": 342, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L342" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L342" } ], "type": { @@ -40226,7 +40226,7 @@ "fileName": "datepicker/index.d.ts", "line": 348, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L348" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L348" } ], "type": { @@ -40266,7 +40266,7 @@ "fileName": "datepicker/index.d.ts", "line": 354, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L354" } ], "type": { @@ -40306,7 +40306,7 @@ "fileName": "datepicker/index.d.ts", "line": 360, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L360" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L360" } ], "type": { @@ -40330,7 +40330,7 @@ "fileName": "datepicker/index.d.ts", "line": 342, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L342" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L342" } ] } @@ -40357,7 +40357,7 @@ "fileName": "datepicker/index.d.ts", "line": 365, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L365" } ], "type": { @@ -40401,7 +40401,7 @@ "fileName": "datepicker/index.d.ts", "line": 371, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L371" } ], "type": { @@ -40441,7 +40441,7 @@ "fileName": "datepicker/index.d.ts", "line": 377, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L377" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L377" } ], "type": { @@ -40481,7 +40481,7 @@ "fileName": "datepicker/index.d.ts", "line": 383, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L383" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L383" } ], "type": { @@ -40521,7 +40521,7 @@ "fileName": "datepicker/index.d.ts", "line": 389, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L389" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L389" } ], "type": { @@ -40561,7 +40561,7 @@ "fileName": "datepicker/index.d.ts", "line": 395, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L395" } ], "type": { @@ -40601,7 +40601,7 @@ "fileName": "datepicker/index.d.ts", "line": 401, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L401" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L401" } ], "type": { @@ -40641,7 +40641,7 @@ "fileName": "datepicker/index.d.ts", "line": 407, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L407" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L407" } ], "type": { @@ -40681,7 +40681,7 @@ "fileName": "datepicker/index.d.ts", "line": 413, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L413" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L413" } ], "type": { @@ -40721,7 +40721,7 @@ "fileName": "datepicker/index.d.ts", "line": 419, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L419" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L419" } ], "type": { @@ -40761,7 +40761,7 @@ "fileName": "datepicker/index.d.ts", "line": 425, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L425" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L425" } ], "type": { @@ -40801,7 +40801,7 @@ "fileName": "datepicker/index.d.ts", "line": 431, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L431" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L431" } ], "type": { @@ -40830,7 +40830,7 @@ "fileName": "datepicker/index.d.ts", "line": 435, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L435" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L435" } ], "type": { @@ -40874,7 +40874,7 @@ "fileName": "datepicker/index.d.ts", "line": 441, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L441" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L441" } ], "type": { @@ -40914,7 +40914,7 @@ "fileName": "datepicker/index.d.ts", "line": 447, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L447" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L447" } ], "type": { @@ -40954,7 +40954,7 @@ "fileName": "datepicker/index.d.ts", "line": 453, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L453" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L453" } ], "type": { @@ -40994,7 +40994,7 @@ "fileName": "datepicker/index.d.ts", "line": 459, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L459" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L459" } ], "type": { @@ -41034,7 +41034,7 @@ "fileName": "datepicker/index.d.ts", "line": 465, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L465" } ], "type": { @@ -41060,7 +41060,7 @@ "fileName": "datepicker/index.d.ts", "line": 435, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L435" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L435" } ] } @@ -41091,7 +41091,7 @@ "fileName": "datepicker/index.d.ts", "line": 365, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L365" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L365" } ] } @@ -41118,7 +41118,7 @@ "fileName": "datepicker/index.d.ts", "line": 471, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L471" } ], "type": { @@ -41162,7 +41162,7 @@ "fileName": "datepicker/index.d.ts", "line": 477, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L477" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L477" } ], "type": { @@ -41184,7 +41184,7 @@ "fileName": "datepicker/index.d.ts", "line": 471, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L471" } ] } @@ -41211,7 +41211,7 @@ "fileName": "datepicker/index.d.ts", "line": 482, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L482" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L482" } ], "type": { @@ -41255,7 +41255,7 @@ "fileName": "datepicker/index.d.ts", "line": 488, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L488" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L488" } ], "type": { @@ -41277,7 +41277,7 @@ "fileName": "datepicker/index.d.ts", "line": 482, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L482" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L482" } ] } @@ -41304,7 +41304,7 @@ "fileName": "datepicker/index.d.ts", "line": 493, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L493" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L493" } ], "type": { @@ -41348,7 +41348,7 @@ "fileName": "datepicker/index.d.ts", "line": 499, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L499" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L499" } ], "type": { @@ -41370,7 +41370,7 @@ "fileName": "datepicker/index.d.ts", "line": 493, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L493" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L493" } ] } @@ -41397,7 +41397,7 @@ "fileName": "datepicker/index.d.ts", "line": 504, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L504" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L504" } ], "type": { @@ -41441,7 +41441,7 @@ "fileName": "datepicker/index.d.ts", "line": 510, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L510" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L510" } ], "type": { @@ -41463,7 +41463,7 @@ "fileName": "datepicker/index.d.ts", "line": 504, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L504" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L504" } ] } @@ -41490,7 +41490,7 @@ "fileName": "datepicker/index.d.ts", "line": 515, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L515" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L515" } ], "type": { @@ -41534,7 +41534,7 @@ "fileName": "datepicker/index.d.ts", "line": 521, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L521" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L521" } ], "type": { @@ -41574,7 +41574,7 @@ "fileName": "datepicker/index.d.ts", "line": 527, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L527" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L527" } ], "type": { @@ -41597,7 +41597,7 @@ "fileName": "datepicker/index.d.ts", "line": 515, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L515" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L515" } ] } @@ -41624,7 +41624,7 @@ "fileName": "datepicker/index.d.ts", "line": 532, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L532" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L532" } ], "type": { @@ -41668,7 +41668,7 @@ "fileName": "datepicker/index.d.ts", "line": 538, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L538" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L538" } ], "type": { @@ -41708,7 +41708,7 @@ "fileName": "datepicker/index.d.ts", "line": 544, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L544" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L544" } ], "type": { @@ -41748,7 +41748,7 @@ "fileName": "datepicker/index.d.ts", "line": 550, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L550" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L550" } ], "type": { @@ -41788,7 +41788,7 @@ "fileName": "datepicker/index.d.ts", "line": 556, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L556" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L556" } ], "type": { @@ -41813,7 +41813,7 @@ "fileName": "datepicker/index.d.ts", "line": 532, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L532" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L532" } ] } @@ -41840,7 +41840,7 @@ "fileName": "datepicker/index.d.ts", "line": 561, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L561" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L561" } ], "type": { @@ -41884,7 +41884,7 @@ "fileName": "datepicker/index.d.ts", "line": 567, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L567" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L567" } ], "type": { @@ -41924,7 +41924,7 @@ "fileName": "datepicker/index.d.ts", "line": 573, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L573" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L573" } ], "type": { @@ -41947,7 +41947,7 @@ "fileName": "datepicker/index.d.ts", "line": 561, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L561" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L561" } ] } @@ -41966,7 +41966,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -41991,7 +41991,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -42029,7 +42029,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -42069,7 +42069,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -42113,7 +42113,7 @@ "fileName": "datepicker/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L13" } ], "extendedTypes": [ @@ -42147,7 +42147,7 @@ "fileName": "datepicker/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/datepicker/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/datepicker/index.d.ts#L1" } ] }, @@ -42194,7 +42194,7 @@ "fileName": "dialog/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L17" } ], "type": { @@ -42238,7 +42238,7 @@ "fileName": "dialog/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L23" } ], "type": { @@ -42278,7 +42278,7 @@ "fileName": "dialog/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L29" } ], "type": { @@ -42318,7 +42318,7 @@ "fileName": "dialog/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L35" } ], "type": { @@ -42358,7 +42358,7 @@ "fileName": "dialog/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L41" } ], "type": { @@ -42398,7 +42398,7 @@ "fileName": "dialog/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L47" } ], "type": { @@ -42424,7 +42424,7 @@ "fileName": "dialog/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L17" } ] } @@ -42451,7 +42451,7 @@ "fileName": "dialog/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L52" } ], "type": { @@ -42495,7 +42495,7 @@ "fileName": "dialog/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L58" } ], "type": { @@ -42535,7 +42535,7 @@ "fileName": "dialog/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L64" } ], "type": { @@ -42558,7 +42558,7 @@ "fileName": "dialog/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L52" } ] } @@ -42585,7 +42585,7 @@ "fileName": "dialog/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L69" } ], "type": { @@ -42629,7 +42629,7 @@ "fileName": "dialog/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L75" } ], "type": { @@ -42669,7 +42669,7 @@ "fileName": "dialog/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L81" } ], "type": { @@ -42692,7 +42692,7 @@ "fileName": "dialog/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L69" } ] } @@ -42719,7 +42719,7 @@ "fileName": "dialog/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L86" } ], "type": { @@ -42763,7 +42763,7 @@ "fileName": "dialog/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L92" } ], "type": { @@ -42785,7 +42785,7 @@ "fileName": "dialog/index.d.ts", "line": 86, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L86" } ] } @@ -42812,7 +42812,7 @@ "fileName": "dialog/index.d.ts", "line": 97, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L97" } ], "type": { @@ -42856,7 +42856,7 @@ "fileName": "dialog/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L103" } ], "type": { @@ -42896,7 +42896,7 @@ "fileName": "dialog/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L109" } ], "type": { @@ -42919,7 +42919,7 @@ "fileName": "dialog/index.d.ts", "line": 97, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L97" } ] } @@ -42938,7 +42938,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -42963,7 +42963,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -43001,7 +43001,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -43041,7 +43041,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -43071,7 +43071,7 @@ "fileName": "dialog/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L13" } ], "extendedTypes": [ @@ -43105,7 +43105,7 @@ "fileName": "dialog/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dialog/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dialog/index.d.ts#L1" } ] }, @@ -43152,7 +43152,7 @@ "fileName": "divider/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L17" } ], "type": { @@ -43196,7 +43196,7 @@ "fileName": "divider/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L23" } ], "type": { @@ -43218,7 +43218,7 @@ "fileName": "divider/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L17" } ] } @@ -43245,7 +43245,7 @@ "fileName": "divider/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L28" } ], "type": { @@ -43289,7 +43289,7 @@ "fileName": "divider/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L34" } ], "type": { @@ -43329,7 +43329,7 @@ "fileName": "divider/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L40" } ], "type": { @@ -43352,7 +43352,7 @@ "fileName": "divider/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L28" } ] } @@ -43379,7 +43379,7 @@ "fileName": "divider/index.d.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L45" } ], "type": { @@ -43423,7 +43423,7 @@ "fileName": "divider/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L51" } ], "type": { @@ -43463,7 +43463,7 @@ "fileName": "divider/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L57" } ], "type": { @@ -43492,7 +43492,7 @@ "fileName": "divider/index.d.ts", "line": 61, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L61" } ], "type": { @@ -43536,7 +43536,7 @@ "fileName": "divider/index.d.ts", "line": 67, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L67" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L67" } ], "type": { @@ -43558,7 +43558,7 @@ "fileName": "divider/index.d.ts", "line": 61, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L61" } ] } @@ -43580,7 +43580,7 @@ "fileName": "divider/index.d.ts", "line": 45, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L45" } ] } @@ -43607,7 +43607,7 @@ "fileName": "divider/index.d.ts", "line": 73, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L73" } ], "type": { @@ -43651,7 +43651,7 @@ "fileName": "divider/index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L79" } ], "type": { @@ -43691,7 +43691,7 @@ "fileName": "divider/index.d.ts", "line": 85, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L85" } ], "type": { @@ -43720,7 +43720,7 @@ "fileName": "divider/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L89" } ], "type": { @@ -43764,7 +43764,7 @@ "fileName": "divider/index.d.ts", "line": 95, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L95" } ], "type": { @@ -43786,7 +43786,7 @@ "fileName": "divider/index.d.ts", "line": 89, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L89" } ] } @@ -43808,7 +43808,7 @@ "fileName": "divider/index.d.ts", "line": 73, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L73" } ] } @@ -43827,7 +43827,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -43852,7 +43852,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -43890,7 +43890,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -43930,7 +43930,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -43959,7 +43959,7 @@ "fileName": "divider/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L13" } ], "extendedTypes": [ @@ -43993,7 +43993,7 @@ "fileName": "divider/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/divider/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/divider/index.d.ts#L1" } ] }, @@ -44040,7 +44040,7 @@ "fileName": "dock/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L17" } ], "type": { @@ -44084,7 +44084,7 @@ "fileName": "dock/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L23" } ], "type": { @@ -44124,7 +44124,7 @@ "fileName": "dock/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L29" } ], "type": { @@ -44164,7 +44164,7 @@ "fileName": "dock/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L35" } ], "type": { @@ -44204,7 +44204,7 @@ "fileName": "dock/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L41" } ], "type": { @@ -44229,7 +44229,7 @@ "fileName": "dock/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L17" } ] } @@ -44256,7 +44256,7 @@ "fileName": "dock/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L46" } ], "type": { @@ -44300,7 +44300,7 @@ "fileName": "dock/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L52" } ], "type": { @@ -44340,7 +44340,7 @@ "fileName": "dock/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L58" } ], "type": { @@ -44380,7 +44380,7 @@ "fileName": "dock/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L64" } ], "type": { @@ -44409,7 +44409,7 @@ "fileName": "dock/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L68" } ], "type": { @@ -44453,7 +44453,7 @@ "fileName": "dock/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L74" } ], "type": { @@ -44493,7 +44493,7 @@ "fileName": "dock/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L80" } ], "type": { @@ -44533,7 +44533,7 @@ "fileName": "dock/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L86" } ], "type": { @@ -44573,7 +44573,7 @@ "fileName": "dock/index.d.ts", "line": 92, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L92" } ], "type": { @@ -44613,7 +44613,7 @@ "fileName": "dock/index.d.ts", "line": 98, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L98" } ], "type": { @@ -44639,7 +44639,7 @@ "fileName": "dock/index.d.ts", "line": 68, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L68" } ] } @@ -44662,7 +44662,7 @@ "fileName": "dock/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L46" } ] } @@ -44681,7 +44681,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -44706,7 +44706,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -44744,7 +44744,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -44784,7 +44784,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -44811,7 +44811,7 @@ "fileName": "dock/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L13" } ], "extendedTypes": [ @@ -44845,7 +44845,7 @@ "fileName": "dock/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dock/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dock/index.d.ts#L1" } ] }, @@ -44892,7 +44892,7 @@ "fileName": "drawer/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L17" } ], "type": { @@ -44936,7 +44936,7 @@ "fileName": "drawer/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L23" } ], "type": { @@ -44976,7 +44976,7 @@ "fileName": "drawer/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L29" } ], "type": { @@ -45016,7 +45016,7 @@ "fileName": "drawer/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L35" } ], "type": { @@ -45056,7 +45056,7 @@ "fileName": "drawer/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L41" } ], "type": { @@ -45096,7 +45096,7 @@ "fileName": "drawer/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L47" } ], "type": { @@ -45122,7 +45122,7 @@ "fileName": "drawer/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L17" } ] } @@ -45149,7 +45149,7 @@ "fileName": "drawer/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L52" } ], "type": { @@ -45193,7 +45193,7 @@ "fileName": "drawer/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L58" } ], "type": { @@ -45215,7 +45215,7 @@ "fileName": "drawer/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L52" } ] } @@ -45242,7 +45242,7 @@ "fileName": "drawer/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L63" } ], "type": { @@ -45286,7 +45286,7 @@ "fileName": "drawer/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L69" } ], "type": { @@ -45326,7 +45326,7 @@ "fileName": "drawer/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L75" } ], "type": { @@ -45349,7 +45349,7 @@ "fileName": "drawer/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L63" } ] } @@ -45376,7 +45376,7 @@ "fileName": "drawer/index.d.ts", "line": 80, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L80" } ], "type": { @@ -45420,7 +45420,7 @@ "fileName": "drawer/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L86" } ], "type": { @@ -45442,7 +45442,7 @@ "fileName": "drawer/index.d.ts", "line": 80, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L80" } ] } @@ -45461,7 +45461,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -45486,7 +45486,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -45524,7 +45524,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -45564,7 +45564,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -45593,7 +45593,7 @@ "fileName": "drawer/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L13" } ], "extendedTypes": [ @@ -45627,7 +45627,7 @@ "fileName": "drawer/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/drawer/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/drawer/index.d.ts#L1" } ] }, @@ -45674,7 +45674,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" } ], "type": { @@ -45718,7 +45718,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L23" } ], "type": { @@ -45758,7 +45758,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L29" } ], "type": { @@ -45798,7 +45798,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L35" } ], "type": { @@ -45838,7 +45838,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L41" } ], "type": { @@ -45878,7 +45878,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L47" } ], "type": { @@ -45904,7 +45904,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L17" } ] } @@ -45931,7 +45931,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" } ], "type": { @@ -45975,7 +45975,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L58" } ], "type": { @@ -46015,7 +46015,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L64" } ], "type": { @@ -46038,7 +46038,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L52" } ] } @@ -46065,7 +46065,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" } ], "type": { @@ -46109,7 +46109,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L75" } ], "type": { @@ -46149,7 +46149,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L81" } ], "type": { @@ -46172,7 +46172,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L69" } ] } @@ -46199,7 +46199,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" } ], "type": { @@ -46243,7 +46243,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L92" } ], "type": { @@ -46265,7 +46265,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 86, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L86" } ] } @@ -46292,7 +46292,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 97, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" } ], "type": { @@ -46336,7 +46336,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L103" } ], "type": { @@ -46376,7 +46376,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L109" } ], "type": { @@ -46399,7 +46399,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 97, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L97" } ] } @@ -46418,7 +46418,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -46443,7 +46443,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -46481,7 +46481,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -46521,7 +46521,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -46551,7 +46551,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L13" } ], "extendedTypes": [ @@ -46585,7 +46585,7 @@ "fileName": "dynamicdialog/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/dynamicdialog/index.d.ts#L1" } ] }, @@ -46632,7 +46632,7 @@ "fileName": "editor/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L17" } ], "type": { @@ -46676,7 +46676,7 @@ "fileName": "editor/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L23" } ], "type": { @@ -46716,7 +46716,7 @@ "fileName": "editor/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L29" } ], "type": { @@ -46756,7 +46756,7 @@ "fileName": "editor/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L35" } ], "type": { @@ -46780,7 +46780,7 @@ "fileName": "editor/index.d.ts", "line": 17, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L17" } ] } @@ -46807,7 +46807,7 @@ "fileName": "editor/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L40" } ], "type": { @@ -46851,7 +46851,7 @@ "fileName": "editor/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L46" } ], "type": { @@ -46891,7 +46891,7 @@ "fileName": "editor/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L52" } ], "type": { @@ -46931,7 +46931,7 @@ "fileName": "editor/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L58" } ], "type": { @@ -46955,7 +46955,7 @@ "fileName": "editor/index.d.ts", "line": 40, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L40" } ] } @@ -46982,7 +46982,7 @@ "fileName": "editor/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L63" } ], "type": { @@ -47026,7 +47026,7 @@ "fileName": "editor/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L69" } ], "type": { @@ -47066,7 +47066,7 @@ "fileName": "editor/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L75" } ], "type": { @@ -47106,7 +47106,7 @@ "fileName": "editor/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L81" } ], "type": { @@ -47146,7 +47146,7 @@ "fileName": "editor/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L87" } ], "type": { @@ -47186,7 +47186,7 @@ "fileName": "editor/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L93" } ], "type": { @@ -47226,7 +47226,7 @@ "fileName": "editor/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L99" } ], "type": { @@ -47253,7 +47253,7 @@ "fileName": "editor/index.d.ts", "line": 63, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L63" } ] } @@ -47280,7 +47280,7 @@ "fileName": "editor/index.d.ts", "line": 104, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L104" } ], "type": { @@ -47324,7 +47324,7 @@ "fileName": "editor/index.d.ts", "line": 110, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L110" } ], "type": { @@ -47364,7 +47364,7 @@ "fileName": "editor/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L116" } ], "type": { @@ -47404,7 +47404,7 @@ "fileName": "editor/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L122" } ], "type": { @@ -47444,7 +47444,7 @@ "fileName": "editor/index.d.ts", "line": 128, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L128" } ], "type": { @@ -47484,7 +47484,7 @@ "fileName": "editor/index.d.ts", "line": 134, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L134" } ], "type": { @@ -47510,7 +47510,7 @@ "fileName": "editor/index.d.ts", "line": 104, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L104" } ] } @@ -47537,7 +47537,7 @@ "fileName": "editor/index.d.ts", "line": 139, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L139" } ], "type": { @@ -47581,7 +47581,7 @@ "fileName": "editor/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L145" } ], "type": { @@ -47621,7 +47621,7 @@ "fileName": "editor/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L151" } ], "type": { @@ -47661,7 +47661,7 @@ "fileName": "editor/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L157" } ], "type": { @@ -47701,7 +47701,7 @@ "fileName": "editor/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L163" } ], "type": { @@ -47726,7 +47726,7 @@ "fileName": "editor/index.d.ts", "line": 139, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L139" } ] } @@ -47745,7 +47745,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -47770,7 +47770,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -47808,7 +47808,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -47848,7 +47848,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -47878,7 +47878,7 @@ "fileName": "editor/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L13" } ], "extendedTypes": [ @@ -47912,7 +47912,7 @@ "fileName": "editor/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/editor/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/editor/index.d.ts#L1" } ] }, @@ -47959,7 +47959,7 @@ "fileName": "fieldset/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L17" } ], "type": { @@ -48003,7 +48003,7 @@ "fileName": "fieldset/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L23" } ], "type": { @@ -48043,7 +48043,7 @@ "fileName": "fieldset/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L29" } ], "type": { @@ -48083,7 +48083,7 @@ "fileName": "fieldset/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L35" } ], "type": { @@ -48123,7 +48123,7 @@ "fileName": "fieldset/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L41" } ], "type": { @@ -48163,7 +48163,7 @@ "fileName": "fieldset/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L47" } ], "type": { @@ -48203,7 +48203,7 @@ "fileName": "fieldset/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L53" } ], "type": { @@ -48230,7 +48230,7 @@ "fileName": "fieldset/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L17" } ] } @@ -48257,7 +48257,7 @@ "fileName": "fieldset/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L58" } ], "type": { @@ -48301,7 +48301,7 @@ "fileName": "fieldset/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L64" } ], "type": { @@ -48341,7 +48341,7 @@ "fileName": "fieldset/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L70" } ], "type": { @@ -48381,7 +48381,7 @@ "fileName": "fieldset/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L76" } ], "type": { @@ -48421,7 +48421,7 @@ "fileName": "fieldset/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L82" } ], "type": { @@ -48461,7 +48461,7 @@ "fileName": "fieldset/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L88" } ], "type": { @@ -48501,7 +48501,7 @@ "fileName": "fieldset/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L94" } ], "type": { @@ -48541,7 +48541,7 @@ "fileName": "fieldset/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L100" } ], "type": { @@ -48581,7 +48581,7 @@ "fileName": "fieldset/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L106" } ], "type": { @@ -48621,7 +48621,7 @@ "fileName": "fieldset/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L112" } ], "type": { @@ -48661,7 +48661,7 @@ "fileName": "fieldset/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L118" } ], "type": { @@ -48690,7 +48690,7 @@ "fileName": "fieldset/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L122" } ], "type": { @@ -48734,7 +48734,7 @@ "fileName": "fieldset/index.d.ts", "line": 128, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L128" } ], "type": { @@ -48774,7 +48774,7 @@ "fileName": "fieldset/index.d.ts", "line": 134, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L134" } ], "type": { @@ -48814,7 +48814,7 @@ "fileName": "fieldset/index.d.ts", "line": 140, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L140" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L140" } ], "type": { @@ -48854,7 +48854,7 @@ "fileName": "fieldset/index.d.ts", "line": 146, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L146" } ], "type": { @@ -48894,7 +48894,7 @@ "fileName": "fieldset/index.d.ts", "line": 152, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L152" } ], "type": { @@ -48920,7 +48920,7 @@ "fileName": "fieldset/index.d.ts", "line": 122, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L122" } ] } @@ -48950,7 +48950,7 @@ "fileName": "fieldset/index.d.ts", "line": 58, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L58" } ] } @@ -48977,7 +48977,7 @@ "fileName": "fieldset/index.d.ts", "line": 158, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L158" } ], "type": { @@ -49021,7 +49021,7 @@ "fileName": "fieldset/index.d.ts", "line": 164, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L164" } ], "type": { @@ -49061,7 +49061,7 @@ "fileName": "fieldset/index.d.ts", "line": 170, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L170" } ], "type": { @@ -49084,7 +49084,7 @@ "fileName": "fieldset/index.d.ts", "line": 158, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L158" } ] } @@ -49111,7 +49111,7 @@ "fileName": "fieldset/index.d.ts", "line": 175, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L175" } ], "type": { @@ -49155,7 +49155,7 @@ "fileName": "fieldset/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L181" } ], "type": { @@ -49177,7 +49177,7 @@ "fileName": "fieldset/index.d.ts", "line": 175, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L175" } ] } @@ -49196,7 +49196,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -49221,7 +49221,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -49259,7 +49259,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -49299,7 +49299,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -49328,7 +49328,7 @@ "fileName": "fieldset/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L13" } ], "extendedTypes": [ @@ -49362,7 +49362,7 @@ "fileName": "fieldset/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fieldset/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fieldset/index.d.ts#L1" } ] }, @@ -49409,7 +49409,7 @@ "fileName": "fileupload/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L17" } ], "type": { @@ -49453,7 +49453,7 @@ "fileName": "fileupload/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L23" } ], "type": { @@ -49493,7 +49493,7 @@ "fileName": "fileupload/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L29" } ], "type": { @@ -49533,7 +49533,7 @@ "fileName": "fileupload/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L35" } ], "type": { @@ -49573,7 +49573,7 @@ "fileName": "fileupload/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L41" } ], "type": { @@ -49613,7 +49613,7 @@ "fileName": "fileupload/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L47" } ], "type": { @@ -49639,7 +49639,7 @@ "fileName": "fileupload/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L17" } ] } @@ -49666,7 +49666,7 @@ "fileName": "fileupload/index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L52" } ], "type": { @@ -49710,7 +49710,7 @@ "fileName": "fileupload/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L58" } ], "type": { @@ -49750,7 +49750,7 @@ "fileName": "fileupload/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L64" } ], "type": { @@ -49790,7 +49790,7 @@ "fileName": "fileupload/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L70" } ], "type": { @@ -49830,7 +49830,7 @@ "fileName": "fileupload/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L76" } ], "type": { @@ -49870,7 +49870,7 @@ "fileName": "fileupload/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L82" } ], "type": { @@ -49910,7 +49910,7 @@ "fileName": "fileupload/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L88" } ], "type": { @@ -49937,7 +49937,7 @@ "fileName": "fileupload/index.d.ts", "line": 52, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L52" } ] } @@ -49964,7 +49964,7 @@ "fileName": "fileupload/index.d.ts", "line": 93, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L93" } ], "type": { @@ -50008,7 +50008,7 @@ "fileName": "fileupload/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L99" } ], "type": { @@ -50048,7 +50048,7 @@ "fileName": "fileupload/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L105" } ], "type": { @@ -50071,7 +50071,7 @@ "fileName": "fileupload/index.d.ts", "line": 93, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L93" } ] } @@ -50098,7 +50098,7 @@ "fileName": "fileupload/index.d.ts", "line": 110, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L110" } ], "type": { @@ -50142,7 +50142,7 @@ "fileName": "fileupload/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L116" } ], "type": { @@ -50182,7 +50182,7 @@ "fileName": "fileupload/index.d.ts", "line": 122, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L122" } ], "type": { @@ -50222,7 +50222,7 @@ "fileName": "fileupload/index.d.ts", "line": 128, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L128" } ], "type": { @@ -50251,7 +50251,7 @@ "fileName": "fileupload/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L132" } ], "type": { @@ -50295,7 +50295,7 @@ "fileName": "fileupload/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L138" } ], "type": { @@ -50317,7 +50317,7 @@ "fileName": "fileupload/index.d.ts", "line": 132, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L132" } ] } @@ -50340,7 +50340,7 @@ "fileName": "fileupload/index.d.ts", "line": 110, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L110" } ] } @@ -50367,7 +50367,7 @@ "fileName": "fileupload/index.d.ts", "line": 144, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L144" } ], "type": { @@ -50411,7 +50411,7 @@ "fileName": "fileupload/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L150" } ], "type": { @@ -50433,7 +50433,7 @@ "fileName": "fileupload/index.d.ts", "line": 144, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L144" } ] } @@ -50460,7 +50460,7 @@ "fileName": "fileupload/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L155" } ], "type": { @@ -50504,7 +50504,7 @@ "fileName": "fileupload/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L161" } ], "type": { @@ -50526,7 +50526,7 @@ "fileName": "fileupload/index.d.ts", "line": 155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L155" } ] } @@ -50545,7 +50545,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -50570,7 +50570,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -50608,7 +50608,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -50648,7 +50648,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -50679,7 +50679,7 @@ "fileName": "fileupload/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L13" } ], "extendedTypes": [ @@ -50713,7 +50713,7 @@ "fileName": "fileupload/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/fileupload/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/fileupload/index.d.ts#L1" } ] }, @@ -50760,7 +50760,7 @@ "fileName": "floatlabel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L17" } ], "type": { @@ -50804,7 +50804,7 @@ "fileName": "floatlabel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L23" } ], "type": { @@ -50844,7 +50844,7 @@ "fileName": "floatlabel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L29" } ], "type": { @@ -50884,7 +50884,7 @@ "fileName": "floatlabel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L35" } ], "type": { @@ -50924,7 +50924,7 @@ "fileName": "floatlabel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L41" } ], "type": { @@ -50949,7 +50949,7 @@ "fileName": "floatlabel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L17" } ] } @@ -50968,7 +50968,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -50993,7 +50993,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -51031,7 +51031,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -51071,7 +51071,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -51097,7 +51097,7 @@ "fileName": "floatlabel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L13" } ], "extendedTypes": [ @@ -51131,7 +51131,7 @@ "fileName": "floatlabel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/floatlabel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/floatlabel/index.d.ts#L1" } ] }, @@ -51178,7 +51178,7 @@ "fileName": "galleria/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L17" } ], "type": { @@ -51222,7 +51222,7 @@ "fileName": "galleria/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L23" } ], "type": { @@ -51262,7 +51262,7 @@ "fileName": "galleria/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L29" } ], "type": { @@ -51302,7 +51302,7 @@ "fileName": "galleria/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L35" } ], "type": { @@ -51342,7 +51342,7 @@ "fileName": "galleria/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L41" } ], "type": { @@ -51367,7 +51367,7 @@ "fileName": "galleria/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L17" } ] } @@ -51394,7 +51394,7 @@ "fileName": "galleria/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L46" } ], "type": { @@ -51438,7 +51438,7 @@ "fileName": "galleria/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L52" } ], "type": { @@ -51478,7 +51478,7 @@ "fileName": "galleria/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L58" } ], "type": { @@ -51518,7 +51518,7 @@ "fileName": "galleria/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L64" } ], "type": { @@ -51558,7 +51558,7 @@ "fileName": "galleria/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L70" } ], "type": { @@ -51598,7 +51598,7 @@ "fileName": "galleria/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L76" } ], "type": { @@ -51638,7 +51638,7 @@ "fileName": "galleria/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L82" } ], "type": { @@ -51667,7 +51667,7 @@ "fileName": "galleria/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L86" } ], "type": { @@ -51711,7 +51711,7 @@ "fileName": "galleria/index.d.ts", "line": 92, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L92" } ], "type": { @@ -51733,7 +51733,7 @@ "fileName": "galleria/index.d.ts", "line": 86, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L86" } ] } @@ -51760,7 +51760,7 @@ "fileName": "galleria/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L97" } ], "type": { @@ -51804,7 +51804,7 @@ "fileName": "galleria/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L103" } ], "type": { @@ -51826,7 +51826,7 @@ "fileName": "galleria/index.d.ts", "line": 97, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L97" } ] } @@ -51853,7 +51853,7 @@ "fileName": "galleria/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L108" } ], "type": { @@ -51897,7 +51897,7 @@ "fileName": "galleria/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L114" } ], "type": { @@ -51937,7 +51937,7 @@ "fileName": "galleria/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L120" } ], "type": { @@ -51977,7 +51977,7 @@ "fileName": "galleria/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L126" } ], "type": { @@ -52017,7 +52017,7 @@ "fileName": "galleria/index.d.ts", "line": 132, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L132" } ], "type": { @@ -52057,7 +52057,7 @@ "fileName": "galleria/index.d.ts", "line": 138, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L138" } ], "type": { @@ -52083,7 +52083,7 @@ "fileName": "galleria/index.d.ts", "line": 108, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L108" } ] } @@ -52111,7 +52111,7 @@ "fileName": "galleria/index.d.ts", "line": 46, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L46" } ] } @@ -52138,7 +52138,7 @@ "fileName": "galleria/index.d.ts", "line": 144, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L144" } ], "type": { @@ -52182,7 +52182,7 @@ "fileName": "galleria/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L150" } ], "type": { @@ -52204,7 +52204,7 @@ "fileName": "galleria/index.d.ts", "line": 144, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L144" } ] } @@ -52231,7 +52231,7 @@ "fileName": "galleria/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L155" } ], "type": { @@ -52275,7 +52275,7 @@ "fileName": "galleria/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L161" } ], "type": { @@ -52315,7 +52315,7 @@ "fileName": "galleria/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L167" } ], "type": { @@ -52338,7 +52338,7 @@ "fileName": "galleria/index.d.ts", "line": 155, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L155" } ] } @@ -52365,7 +52365,7 @@ "fileName": "galleria/index.d.ts", "line": 172, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L172" } ], "type": { @@ -52409,7 +52409,7 @@ "fileName": "galleria/index.d.ts", "line": 178, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L178" } ], "type": { @@ -52449,7 +52449,7 @@ "fileName": "galleria/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L184" } ], "type": { @@ -52489,7 +52489,7 @@ "fileName": "galleria/index.d.ts", "line": 190, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L190" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L190" } ], "type": { @@ -52518,7 +52518,7 @@ "fileName": "galleria/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L194" } ], "type": { @@ -52562,7 +52562,7 @@ "fileName": "galleria/index.d.ts", "line": 200, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L200" } ], "type": { @@ -52602,7 +52602,7 @@ "fileName": "galleria/index.d.ts", "line": 206, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L206" } ], "type": { @@ -52642,7 +52642,7 @@ "fileName": "galleria/index.d.ts", "line": 212, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L212" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L212" } ], "type": { @@ -52682,7 +52682,7 @@ "fileName": "galleria/index.d.ts", "line": 218, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L218" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L218" } ], "type": { @@ -52722,7 +52722,7 @@ "fileName": "galleria/index.d.ts", "line": 224, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L224" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L224" } ], "type": { @@ -52748,7 +52748,7 @@ "fileName": "galleria/index.d.ts", "line": 194, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L194" } ] } @@ -52786,7 +52786,7 @@ "fileName": "galleria/index.d.ts", "line": 231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L231" } ], "type": { @@ -52826,7 +52826,7 @@ "fileName": "galleria/index.d.ts", "line": 237, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L237" } ], "type": { @@ -52866,7 +52866,7 @@ "fileName": "galleria/index.d.ts", "line": 243, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L243" } ], "type": { @@ -52894,7 +52894,7 @@ "fileName": "galleria/index.d.ts", "line": 172, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L172" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L172" } ] } @@ -52921,7 +52921,7 @@ "fileName": "galleria/index.d.ts", "line": 248, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L248" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L248" } ], "type": { @@ -52965,7 +52965,7 @@ "fileName": "galleria/index.d.ts", "line": 254, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L254" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L254" } ], "type": { @@ -52987,7 +52987,7 @@ "fileName": "galleria/index.d.ts", "line": 248, "character": 29, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L248" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L248" } ] } @@ -53014,7 +53014,7 @@ "fileName": "galleria/index.d.ts", "line": 259, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L259" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L259" } ], "type": { @@ -53058,7 +53058,7 @@ "fileName": "galleria/index.d.ts", "line": 265, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L265" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L265" } ], "type": { @@ -53098,7 +53098,7 @@ "fileName": "galleria/index.d.ts", "line": 271, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L271" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L271" } ], "type": { @@ -53138,7 +53138,7 @@ "fileName": "galleria/index.d.ts", "line": 277, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L277" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L277" } ], "type": { @@ -53162,7 +53162,7 @@ "fileName": "galleria/index.d.ts", "line": 259, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L259" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L259" } ] } @@ -53189,7 +53189,7 @@ "fileName": "galleria/index.d.ts", "line": 282, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L282" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L282" } ], "type": { @@ -53233,7 +53233,7 @@ "fileName": "galleria/index.d.ts", "line": 288, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L288" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L288" } ], "type": { @@ -53273,7 +53273,7 @@ "fileName": "galleria/index.d.ts", "line": 294, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L294" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L294" } ], "type": { @@ -53296,7 +53296,7 @@ "fileName": "galleria/index.d.ts", "line": 282, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L282" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L282" } ] } @@ -53323,7 +53323,7 @@ "fileName": "galleria/index.d.ts", "line": 299, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L299" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L299" } ], "type": { @@ -53367,7 +53367,7 @@ "fileName": "galleria/index.d.ts", "line": 305, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L305" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L305" } ], "type": { @@ -53407,7 +53407,7 @@ "fileName": "galleria/index.d.ts", "line": 311, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L311" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L311" } ], "type": { @@ -53447,7 +53447,7 @@ "fileName": "galleria/index.d.ts", "line": 317, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L317" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L317" } ], "type": { @@ -53487,7 +53487,7 @@ "fileName": "galleria/index.d.ts", "line": 323, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L323" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L323" } ], "type": { @@ -53516,7 +53516,7 @@ "fileName": "galleria/index.d.ts", "line": 327, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L327" } ], "type": { @@ -53560,7 +53560,7 @@ "fileName": "galleria/index.d.ts", "line": 333, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L333" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L333" } ], "type": { @@ -53600,7 +53600,7 @@ "fileName": "galleria/index.d.ts", "line": 339, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L339" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L339" } ], "type": { @@ -53640,7 +53640,7 @@ "fileName": "galleria/index.d.ts", "line": 345, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L345" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L345" } ], "type": { @@ -53680,7 +53680,7 @@ "fileName": "galleria/index.d.ts", "line": 351, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L351" } ], "type": { @@ -53720,7 +53720,7 @@ "fileName": "galleria/index.d.ts", "line": 357, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L357" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L357" } ], "type": { @@ -53746,7 +53746,7 @@ "fileName": "galleria/index.d.ts", "line": 327, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L327" } ] } @@ -53784,7 +53784,7 @@ "fileName": "galleria/index.d.ts", "line": 364, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L364" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L364" } ], "type": { @@ -53824,7 +53824,7 @@ "fileName": "galleria/index.d.ts", "line": 370, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L370" } ], "type": { @@ -53852,7 +53852,7 @@ "fileName": "galleria/index.d.ts", "line": 299, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L299" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L299" } ] } @@ -53879,7 +53879,7 @@ "fileName": "galleria/index.d.ts", "line": 375, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L375" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L375" } ], "type": { @@ -53923,7 +53923,7 @@ "fileName": "galleria/index.d.ts", "line": 381, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L381" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L381" } ], "type": { @@ -53945,7 +53945,7 @@ "fileName": "galleria/index.d.ts", "line": 375, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L375" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L375" } ] } @@ -53972,7 +53972,7 @@ "fileName": "galleria/index.d.ts", "line": 386, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L386" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L386" } ], "type": { @@ -54016,7 +54016,7 @@ "fileName": "galleria/index.d.ts", "line": 392, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L392" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L392" } ], "type": { @@ -54056,7 +54056,7 @@ "fileName": "galleria/index.d.ts", "line": 398, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L398" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L398" } ], "type": { @@ -54096,7 +54096,7 @@ "fileName": "galleria/index.d.ts", "line": 404, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L404" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L404" } ], "type": { @@ -54120,7 +54120,7 @@ "fileName": "galleria/index.d.ts", "line": 386, "character": 27, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L386" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L386" } ] } @@ -54147,7 +54147,7 @@ "fileName": "galleria/index.d.ts", "line": 409, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L409" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L409" } ], "type": { @@ -54191,7 +54191,7 @@ "fileName": "galleria/index.d.ts", "line": 415, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L415" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L415" } ], "type": { @@ -54231,7 +54231,7 @@ "fileName": "galleria/index.d.ts", "line": 421, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L421" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L421" } ], "type": { @@ -54254,7 +54254,7 @@ "fileName": "galleria/index.d.ts", "line": 409, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L409" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L409" } ] } @@ -54281,7 +54281,7 @@ "fileName": "galleria/index.d.ts", "line": 426, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L426" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L426" } ], "type": { @@ -54325,7 +54325,7 @@ "fileName": "galleria/index.d.ts", "line": 432, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L432" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L432" } ], "type": { @@ -54365,7 +54365,7 @@ "fileName": "galleria/index.d.ts", "line": 438, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L438" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L438" } ], "type": { @@ -54405,7 +54405,7 @@ "fileName": "galleria/index.d.ts", "line": 444, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L444" } ], "type": { @@ -54445,7 +54445,7 @@ "fileName": "galleria/index.d.ts", "line": 450, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L450" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L450" } ], "type": { @@ -54485,7 +54485,7 @@ "fileName": "galleria/index.d.ts", "line": 456, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L456" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L456" } ], "type": { @@ -54525,7 +54525,7 @@ "fileName": "galleria/index.d.ts", "line": 462, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L462" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L462" } ], "type": { @@ -54565,7 +54565,7 @@ "fileName": "galleria/index.d.ts", "line": 468, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L468" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L468" } ], "type": { @@ -54594,7 +54594,7 @@ "fileName": "galleria/index.d.ts", "line": 472, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L472" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L472" } ], "type": { @@ -54638,7 +54638,7 @@ "fileName": "galleria/index.d.ts", "line": 478, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L478" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L478" } ], "type": { @@ -54678,7 +54678,7 @@ "fileName": "galleria/index.d.ts", "line": 484, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L484" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L484" } ], "type": { @@ -54718,7 +54718,7 @@ "fileName": "galleria/index.d.ts", "line": 490, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L490" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L490" } ], "type": { @@ -54758,7 +54758,7 @@ "fileName": "galleria/index.d.ts", "line": 496, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L496" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L496" } ], "type": { @@ -54798,7 +54798,7 @@ "fileName": "galleria/index.d.ts", "line": 502, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L502" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L502" } ], "type": { @@ -54824,7 +54824,7 @@ "fileName": "galleria/index.d.ts", "line": 472, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L472" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L472" } ] } @@ -54851,7 +54851,7 @@ "fileName": "galleria/index.d.ts", "line": 426, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L426" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L426" } ] } @@ -54878,7 +54878,7 @@ "fileName": "galleria/index.d.ts", "line": 508, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L508" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L508" } ], "type": { @@ -54922,7 +54922,7 @@ "fileName": "galleria/index.d.ts", "line": 514, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L514" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L514" } ], "type": { @@ -54944,7 +54944,7 @@ "fileName": "galleria/index.d.ts", "line": 508, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L508" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L508" } ] } @@ -54963,7 +54963,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -54988,7 +54988,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -55026,7 +55026,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -55066,7 +55066,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -55105,7 +55105,7 @@ "fileName": "galleria/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L13" } ], "extendedTypes": [ @@ -55139,7 +55139,7 @@ "fileName": "galleria/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/galleria/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/galleria/index.d.ts#L1" } ] }, @@ -55186,7 +55186,7 @@ "fileName": "iconfield/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/iconfield/index.d.ts#L17" } ], "type": { @@ -55230,7 +55230,7 @@ "fileName": "iconfield/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/iconfield/index.d.ts#L23" } ], "type": { @@ -55252,7 +55252,7 @@ "fileName": "iconfield/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/iconfield/index.d.ts#L17" } ] } @@ -55271,7 +55271,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -55296,7 +55296,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -55334,7 +55334,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -55374,7 +55374,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -55400,7 +55400,7 @@ "fileName": "iconfield/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/iconfield/index.d.ts#L13" } ], "extendedTypes": [ @@ -55434,7 +55434,7 @@ "fileName": "iconfield/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/iconfield/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/iconfield/index.d.ts#L1" } ] }, @@ -55481,7 +55481,7 @@ "fileName": "image/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L17" } ], "type": { @@ -55525,7 +55525,7 @@ "fileName": "image/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L23" } ], "type": { @@ -55547,7 +55547,7 @@ "fileName": "image/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L17" } ] } @@ -55574,7 +55574,7 @@ "fileName": "image/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L28" } ], "type": { @@ -55607,7 +55607,7 @@ "fileName": "image/index.d.ts", "line": 32, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L32" } ], "type": { @@ -55651,7 +55651,7 @@ "fileName": "image/index.d.ts", "line": 38, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L38" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L38" } ], "type": { @@ -55673,7 +55673,7 @@ "fileName": "image/index.d.ts", "line": 32, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L32" } ] } @@ -55700,7 +55700,7 @@ "fileName": "image/index.d.ts", "line": 43, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L43" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L43" } ], "type": { @@ -55744,7 +55744,7 @@ "fileName": "image/index.d.ts", "line": 49, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L49" } ], "type": { @@ -55784,7 +55784,7 @@ "fileName": "image/index.d.ts", "line": 55, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L55" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L55" } ], "type": { @@ -55807,7 +55807,7 @@ "fileName": "image/index.d.ts", "line": 43, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L43" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L43" } ] } @@ -55828,7 +55828,7 @@ "fileName": "image/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L28" } ] } @@ -55855,7 +55855,7 @@ "fileName": "image/index.d.ts", "line": 61, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L61" } ], "type": { @@ -55888,7 +55888,7 @@ "fileName": "image/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L65" } ], "type": { @@ -55932,7 +55932,7 @@ "fileName": "image/index.d.ts", "line": 71, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L71" } ], "type": { @@ -55972,7 +55972,7 @@ "fileName": "image/index.d.ts", "line": 77, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L77" } ], "type": { @@ -56012,7 +56012,7 @@ "fileName": "image/index.d.ts", "line": 83, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L83" } ], "type": { @@ -56052,7 +56052,7 @@ "fileName": "image/index.d.ts", "line": 89, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L89" } ], "type": { @@ -56077,7 +56077,7 @@ "fileName": "image/index.d.ts", "line": 65, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L65" } ] } @@ -56115,7 +56115,7 @@ "fileName": "image/index.d.ts", "line": 96, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L96" } ], "type": { @@ -56155,7 +56155,7 @@ "fileName": "image/index.d.ts", "line": 102, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L102" } ], "type": { @@ -56195,7 +56195,7 @@ "fileName": "image/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L108" } ], "type": { @@ -56235,7 +56235,7 @@ "fileName": "image/index.d.ts", "line": 114, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L114" } ], "type": { @@ -56275,7 +56275,7 @@ "fileName": "image/index.d.ts", "line": 120, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L120" } ], "type": { @@ -56315,7 +56315,7 @@ "fileName": "image/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L126" } ], "type": { @@ -56355,7 +56355,7 @@ "fileName": "image/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L132" } ], "type": { @@ -56384,7 +56384,7 @@ "fileName": "image/index.d.ts", "line": 61, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L61" } ] } @@ -56411,7 +56411,7 @@ "fileName": "image/index.d.ts", "line": 137, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L137" } ], "type": { @@ -56455,7 +56455,7 @@ "fileName": "image/index.d.ts", "line": 143, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L143" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L143" } ], "type": { @@ -56495,7 +56495,7 @@ "fileName": "image/index.d.ts", "line": 149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L149" } ], "type": { @@ -56535,7 +56535,7 @@ "fileName": "image/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L155" } ], "type": { @@ -56575,7 +56575,7 @@ "fileName": "image/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L161" } ], "type": { @@ -56615,7 +56615,7 @@ "fileName": "image/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L167" } ], "type": { @@ -56655,7 +56655,7 @@ "fileName": "image/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L173" } ], "type": { @@ -56684,7 +56684,7 @@ "fileName": "image/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L177" } ], "type": { @@ -56728,7 +56728,7 @@ "fileName": "image/index.d.ts", "line": 183, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L183" } ], "type": { @@ -56768,7 +56768,7 @@ "fileName": "image/index.d.ts", "line": 189, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L189" } ], "type": { @@ -56808,7 +56808,7 @@ "fileName": "image/index.d.ts", "line": 195, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L195" } ], "type": { @@ -56848,7 +56848,7 @@ "fileName": "image/index.d.ts", "line": 201, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L201" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L201" } ], "type": { @@ -56888,7 +56888,7 @@ "fileName": "image/index.d.ts", "line": 207, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L207" } ], "type": { @@ -56914,7 +56914,7 @@ "fileName": "image/index.d.ts", "line": 177, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L177" } ] } @@ -56940,7 +56940,7 @@ "fileName": "image/index.d.ts", "line": 137, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L137" } ] } @@ -56959,7 +56959,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -56984,7 +56984,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -57022,7 +57022,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -57062,7 +57062,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -57091,7 +57091,7 @@ "fileName": "image/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L13" } ], "extendedTypes": [ @@ -57125,7 +57125,7 @@ "fileName": "image/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/image/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/image/index.d.ts#L1" } ] }, @@ -57164,7 +57164,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -57189,7 +57189,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -57229,7 +57229,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -57271,7 +57271,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -57291,7 +57291,7 @@ "fileName": "index.d.ts", "line": 8, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L8" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L8" } ], "typeParameters": [ @@ -57756,7 +57756,7 @@ "fileName": "index.d.ts", "line": 16, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L16" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L16" } ], "type": { @@ -57777,7 +57777,7 @@ "fileName": "index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L17" } ], "type": { @@ -57798,7 +57798,7 @@ "fileName": "index.d.ts", "line": 18, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L18" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L18" } ], "type": { @@ -57819,7 +57819,7 @@ "fileName": "index.d.ts", "line": 19, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L19" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L19" } ], "type": { @@ -57840,7 +57840,7 @@ "fileName": "index.d.ts", "line": 20, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L20" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L20" } ], "type": { @@ -57861,7 +57861,7 @@ "fileName": "index.d.ts", "line": 21, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L21" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L21" } ], "type": { @@ -57882,7 +57882,7 @@ "fileName": "index.d.ts", "line": 22, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L22" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L22" } ], "type": { @@ -57903,7 +57903,7 @@ "fileName": "index.d.ts", "line": 23, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L23" } ], "type": { @@ -57924,7 +57924,7 @@ "fileName": "index.d.ts", "line": 24, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L24" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L24" } ], "type": { @@ -57945,7 +57945,7 @@ "fileName": "index.d.ts", "line": 25, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L25" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L25" } ], "type": { @@ -57966,7 +57966,7 @@ "fileName": "index.d.ts", "line": 26, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L26" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L26" } ], "type": { @@ -57998,7 +57998,7 @@ "fileName": "index.d.ts", "line": 15, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L15" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L15" } ] }, @@ -58022,7 +58022,7 @@ "fileName": "index.d.ts", "line": 30, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L30" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L30" } ], "type": { @@ -58047,7 +58047,7 @@ "fileName": "index.d.ts", "line": 31, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L31" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L31" } ], "type": { @@ -58068,7 +58068,7 @@ "fileName": "index.d.ts", "line": 32, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L32" } ], "type": { @@ -58089,7 +58089,7 @@ "fileName": "index.d.ts", "line": 33, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L33" } ], "type": { @@ -58110,7 +58110,7 @@ "fileName": "index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L34" } ], "type": { @@ -58131,7 +58131,7 @@ "fileName": "index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L35" } ], "type": { @@ -58152,7 +58152,7 @@ "fileName": "index.d.ts", "line": 36, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L36" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L36" } ], "type": { @@ -58179,7 +58179,7 @@ "fileName": "index.d.ts", "line": 30, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L30" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L30" } ] } @@ -58198,7 +58198,7 @@ "fileName": "index.d.ts", "line": 38, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L38" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L38" } ], "type": { @@ -58221,7 +58221,7 @@ "fileName": "index.d.ts", "line": 39, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L39" } ], "type": { @@ -58244,7 +58244,7 @@ "fileName": "index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L40" } ], "type": { @@ -58267,7 +58267,7 @@ "fileName": "index.d.ts", "line": 41, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L41" } ], "type": { @@ -58290,7 +58290,7 @@ "fileName": "index.d.ts", "line": 42, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L42" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L42" } ], "type": { @@ -58313,7 +58313,7 @@ "fileName": "index.d.ts", "line": 43, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L43" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L43" } ], "type": { @@ -58336,7 +58336,7 @@ "fileName": "index.d.ts", "line": 44, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L44" } ], "type": { @@ -58359,7 +58359,7 @@ "fileName": "index.d.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L45" } ], "type": { @@ -58382,7 +58382,7 @@ "fileName": "index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L46" } ], "type": { @@ -58405,7 +58405,7 @@ "fileName": "index.d.ts", "line": 47, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L47" } ], "type": { @@ -58428,7 +58428,7 @@ "fileName": "index.d.ts", "line": 48, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L48" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L48" } ], "type": { @@ -58451,7 +58451,7 @@ "fileName": "index.d.ts", "line": 49, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L49" } ], "type": { @@ -58474,7 +58474,7 @@ "fileName": "index.d.ts", "line": 50, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L50" } ], "type": { @@ -58497,7 +58497,7 @@ "fileName": "index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L51" } ], "type": { @@ -58520,7 +58520,7 @@ "fileName": "index.d.ts", "line": 52, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L52" } ], "type": { @@ -58543,7 +58543,7 @@ "fileName": "index.d.ts", "line": 53, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L53" } ], "type": { @@ -58566,7 +58566,7 @@ "fileName": "index.d.ts", "line": 54, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L54" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L54" } ], "type": { @@ -58589,7 +58589,7 @@ "fileName": "index.d.ts", "line": 55, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L55" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L55" } ], "type": { @@ -58612,7 +58612,7 @@ "fileName": "index.d.ts", "line": 56, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L56" } ], "type": { @@ -58635,7 +58635,7 @@ "fileName": "index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L57" } ], "type": { @@ -58658,7 +58658,7 @@ "fileName": "index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L58" } ], "type": { @@ -58681,7 +58681,7 @@ "fileName": "index.d.ts", "line": 59, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L59" } ], "type": { @@ -58727,7 +58727,7 @@ "fileName": "index.d.ts", "line": 29, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L29" } ], "indexSignature": { @@ -58741,7 +58741,7 @@ "fileName": "index.d.ts", "line": 60, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L60" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L60" } ], "parameters": [ @@ -58783,7 +58783,7 @@ "fileName": "index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L64" } ], "type": { @@ -58804,7 +58804,7 @@ "fileName": "index.d.ts", "line": 65, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L65" } ], "type": { @@ -58829,7 +58829,7 @@ "fileName": "index.d.ts", "line": 66, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L66" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L66" } ], "type": { @@ -58850,7 +58850,7 @@ "fileName": "index.d.ts", "line": 67, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L67" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L67" } ], "type": { @@ -58871,7 +58871,7 @@ "fileName": "index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L68" } ], "type": { @@ -58892,7 +58892,7 @@ "fileName": "index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L69" } ], "type": { @@ -58913,7 +58913,7 @@ "fileName": "index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L70" } ], "type": { @@ -58939,7 +58939,7 @@ "fileName": "index.d.ts", "line": 65, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L65" } ] } @@ -58958,7 +58958,7 @@ "fileName": "index.d.ts", "line": 72, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L72" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L72" } ], "type": { @@ -58979,7 +58979,7 @@ "fileName": "index.d.ts", "line": 73, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L73" } ], "type": { @@ -59000,7 +59000,7 @@ "fileName": "index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L74" } ], "type": { @@ -59021,7 +59021,7 @@ "fileName": "index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L75" } ], "type": { @@ -59046,7 +59046,7 @@ "fileName": "index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L76" } ], "type": { @@ -59067,7 +59067,7 @@ "fileName": "index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L77" } ], "type": { @@ -59088,7 +59088,7 @@ "fileName": "index.d.ts", "line": 78, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L78" } ], "type": { @@ -59109,7 +59109,7 @@ "fileName": "index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L79" } ], "type": { @@ -59134,7 +59134,7 @@ "fileName": "index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L80" } ], "type": { @@ -59155,7 +59155,7 @@ "fileName": "index.d.ts", "line": 81, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L81" } ], "type": { @@ -59176,7 +59176,7 @@ "fileName": "index.d.ts", "line": 82, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L82" } ], "type": { @@ -59197,7 +59197,7 @@ "fileName": "index.d.ts", "line": 83, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L83" } ], "type": { @@ -59218,7 +59218,7 @@ "fileName": "index.d.ts", "line": 84, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L84" } ], "type": { @@ -59244,7 +59244,7 @@ "fileName": "index.d.ts", "line": 79, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L79" } ] } @@ -59267,7 +59267,7 @@ "fileName": "index.d.ts", "line": 75, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L75" } ] } @@ -59292,7 +59292,7 @@ "fileName": "index.d.ts", "line": 63, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L63" } ], "indexSignature": { @@ -59306,7 +59306,7 @@ "fileName": "index.d.ts", "line": 88, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L88" } ], "parameters": [ @@ -59345,7 +59345,7 @@ "fileName": "index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L1" } ] }, @@ -59384,7 +59384,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -59409,7 +59409,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -59447,7 +59447,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -59487,7 +59487,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -59519,7 +59519,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" } ], "type": { @@ -59563,7 +59563,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L23" } ], "type": { @@ -59603,7 +59603,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L29" } ], "type": { @@ -59643,7 +59643,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L35" } ], "type": { @@ -59667,7 +59667,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L17" } ] } @@ -59694,7 +59694,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" } ], "type": { @@ -59738,7 +59738,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L46" } ], "type": { @@ -59760,7 +59760,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 40, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L40" } ] } @@ -59787,7 +59787,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" } ], "type": { @@ -59831,7 +59831,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L57" } ], "type": { @@ -59853,7 +59853,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 51, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L51" } ] } @@ -59880,7 +59880,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 62, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" } ], "type": { @@ -59924,7 +59924,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L68" } ], "type": { @@ -59964,7 +59964,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L74" } ], "type": { @@ -60004,7 +60004,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L80" } ], "type": { @@ -60044,7 +60044,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L86" } ], "type": { @@ -60069,7 +60069,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 62, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L62" } ] } @@ -60096,7 +60096,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 91, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" } ], "type": { @@ -60140,7 +60140,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L97" } ], "type": { @@ -60180,7 +60180,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L103" } ], "type": { @@ -60220,7 +60220,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L109" } ], "type": { @@ -60260,7 +60260,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L115" } ], "type": { @@ -60285,7 +60285,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 91, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L91" } ] } @@ -60312,7 +60312,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 120, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" } ], "type": { @@ -60356,7 +60356,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L126" } ], "type": { @@ -60396,7 +60396,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L132" } ], "type": { @@ -60436,7 +60436,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 138, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L138" } ], "type": { @@ -60476,7 +60476,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L144" } ], "type": { @@ -60501,7 +60501,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 120, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L120" } ] } @@ -60528,7 +60528,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 149, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" } ], "type": { @@ -60572,7 +60572,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L155" } ], "type": { @@ -60612,7 +60612,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L161" } ], "type": { @@ -60652,7 +60652,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L167" } ], "type": { @@ -60692,7 +60692,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L173" } ], "type": { @@ -60717,7 +60717,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 149, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L149" } ] } @@ -60744,7 +60744,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 178, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" } ], "type": { @@ -60788,7 +60788,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L184" } ], "type": { @@ -60828,7 +60828,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 190, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L190" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L190" } ], "type": { @@ -60868,7 +60868,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 196, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L196" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L196" } ], "type": { @@ -60908,7 +60908,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 202, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L202" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L202" } ], "type": { @@ -60933,7 +60933,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 178, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L178" } ] } @@ -60960,7 +60960,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 207, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" } ], "type": { @@ -61004,7 +61004,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 213, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L213" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L213" } ], "type": { @@ -61044,7 +61044,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 219, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L219" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L219" } ], "type": { @@ -61084,7 +61084,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 225, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L225" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L225" } ], "type": { @@ -61124,7 +61124,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 231, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L231" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L231" } ], "type": { @@ -61149,7 +61149,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 207, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L207" } ] } @@ -61178,7 +61178,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L13" } ], "extendedTypes": [ @@ -61212,7 +61212,7 @@ "fileName": "inlinemessage/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inlinemessage/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inlinemessage/index.d.ts#L1" } ] }, @@ -61251,7 +61251,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -61276,7 +61276,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -61314,7 +61314,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -61354,7 +61354,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -61386,7 +61386,7 @@ "fileName": "inplace/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L17" } ], "type": { @@ -61430,7 +61430,7 @@ "fileName": "inplace/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L23" } ], "type": { @@ -61470,7 +61470,7 @@ "fileName": "inplace/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L29" } ], "type": { @@ -61499,7 +61499,7 @@ "fileName": "inplace/index.d.ts", "line": 33, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L33" } ], "type": { @@ -61543,7 +61543,7 @@ "fileName": "inplace/index.d.ts", "line": 39, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L39" } ], "type": { @@ -61583,7 +61583,7 @@ "fileName": "inplace/index.d.ts", "line": 45, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L45" } ], "type": { @@ -61623,7 +61623,7 @@ "fileName": "inplace/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L51" } ], "type": { @@ -61663,7 +61663,7 @@ "fileName": "inplace/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L57" } ], "type": { @@ -61703,7 +61703,7 @@ "fileName": "inplace/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L63" } ], "type": { @@ -61729,7 +61729,7 @@ "fileName": "inplace/index.d.ts", "line": 33, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L33" } ] } @@ -61767,7 +61767,7 @@ "fileName": "inplace/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L70" } ], "type": { @@ -61792,7 +61792,7 @@ "fileName": "inplace/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L17" } ] } @@ -61819,7 +61819,7 @@ "fileName": "inplace/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L75" } ], "type": { @@ -61863,7 +61863,7 @@ "fileName": "inplace/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L81" } ], "type": { @@ -61903,7 +61903,7 @@ "fileName": "inplace/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L87" } ], "type": { @@ -61926,7 +61926,7 @@ "fileName": "inplace/index.d.ts", "line": 75, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L75" } ] } @@ -61948,7 +61948,7 @@ "fileName": "inplace/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L13" } ], "extendedTypes": [ @@ -61982,7 +61982,7 @@ "fileName": "inplace/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inplace/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inplace/index.d.ts#L1" } ] }, @@ -62021,7 +62021,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -62046,7 +62046,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -62084,7 +62084,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -62124,7 +62124,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -62156,7 +62156,7 @@ "fileName": "inputchips/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L17" } ], "type": { @@ -62200,7 +62200,7 @@ "fileName": "inputchips/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L23" } ], "type": { @@ -62240,7 +62240,7 @@ "fileName": "inputchips/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L29" } ], "type": { @@ -62280,7 +62280,7 @@ "fileName": "inputchips/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L35" } ], "type": { @@ -62320,7 +62320,7 @@ "fileName": "inputchips/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L41" } ], "type": { @@ -62360,7 +62360,7 @@ "fileName": "inputchips/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L47" } ], "type": { @@ -62400,7 +62400,7 @@ "fileName": "inputchips/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L53" } ], "type": { @@ -62440,7 +62440,7 @@ "fileName": "inputchips/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L59" } ], "type": { @@ -62480,7 +62480,7 @@ "fileName": "inputchips/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L65" } ], "type": { @@ -62520,7 +62520,7 @@ "fileName": "inputchips/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L71" } ], "type": { @@ -62560,7 +62560,7 @@ "fileName": "inputchips/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L77" } ], "type": { @@ -62600,7 +62600,7 @@ "fileName": "inputchips/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L83" } ], "type": { @@ -62640,7 +62640,7 @@ "fileName": "inputchips/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L89" } ], "type": { @@ -62680,7 +62680,7 @@ "fileName": "inputchips/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L95" } ], "type": { @@ -62720,7 +62720,7 @@ "fileName": "inputchips/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L101" } ], "type": { @@ -62760,7 +62760,7 @@ "fileName": "inputchips/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L107" } ], "type": { @@ -62789,7 +62789,7 @@ "fileName": "inputchips/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L111" } ], "type": { @@ -62833,7 +62833,7 @@ "fileName": "inputchips/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L117" } ], "type": { @@ -62873,7 +62873,7 @@ "fileName": "inputchips/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L123" } ], "type": { @@ -62913,7 +62913,7 @@ "fileName": "inputchips/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L129" } ], "type": { @@ -62953,7 +62953,7 @@ "fileName": "inputchips/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L135" } ], "type": { @@ -62993,7 +62993,7 @@ "fileName": "inputchips/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L141" } ], "type": { @@ -63019,7 +63019,7 @@ "fileName": "inputchips/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L111" } ] } @@ -63057,7 +63057,7 @@ "fileName": "inputchips/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L148" } ], "type": { @@ -63095,7 +63095,7 @@ "fileName": "inputchips/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L17" } ] } @@ -63122,7 +63122,7 @@ "fileName": "inputchips/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L153" } ], "type": { @@ -63166,7 +63166,7 @@ "fileName": "inputchips/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L159" } ], "type": { @@ -63206,7 +63206,7 @@ "fileName": "inputchips/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L165" } ], "type": { @@ -63246,7 +63246,7 @@ "fileName": "inputchips/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L171" } ], "type": { @@ -63270,7 +63270,7 @@ "fileName": "inputchips/index.d.ts", "line": 153, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L153" } ] } @@ -63292,7 +63292,7 @@ "fileName": "inputchips/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L13" } ], "extendedTypes": [ @@ -63326,7 +63326,7 @@ "fileName": "inputchips/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputchips/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputchips/index.d.ts#L1" } ] }, @@ -63365,7 +63365,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -63390,7 +63390,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -63428,7 +63428,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -63468,7 +63468,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -63500,7 +63500,7 @@ "fileName": "inputgroup/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L17" } ], "type": { @@ -63544,7 +63544,7 @@ "fileName": "inputgroup/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L23" } ], "type": { @@ -63584,7 +63584,7 @@ "fileName": "inputgroup/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L29" } ], "type": { @@ -63624,7 +63624,7 @@ "fileName": "inputgroup/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L35" } ], "type": { @@ -63664,7 +63664,7 @@ "fileName": "inputgroup/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L41" } ], "type": { @@ -63689,7 +63689,7 @@ "fileName": "inputgroup/index.d.ts", "line": 17, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L17" } ] } @@ -63710,7 +63710,7 @@ "fileName": "inputgroup/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L13" } ], "extendedTypes": [ @@ -63744,7 +63744,7 @@ "fileName": "inputgroup/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputgroup/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputgroup/index.d.ts#L1" } ] }, @@ -63783,7 +63783,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -63808,7 +63808,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -63846,7 +63846,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -63886,7 +63886,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -63918,7 +63918,7 @@ "fileName": "inputnumber/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L17" } ], "type": { @@ -63962,7 +63962,7 @@ "fileName": "inputnumber/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L23" } ], "type": { @@ -63984,7 +63984,7 @@ "fileName": "inputnumber/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L17" } ] } @@ -64011,7 +64011,7 @@ "fileName": "inputnumber/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L28" } ], "type": { @@ -64055,7 +64055,7 @@ "fileName": "inputnumber/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L34" } ], "type": { @@ -64095,7 +64095,7 @@ "fileName": "inputnumber/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L40" } ], "type": { @@ -64135,7 +64135,7 @@ "fileName": "inputnumber/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L46" } ], "type": { @@ -64175,7 +64175,7 @@ "fileName": "inputnumber/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L52" } ], "type": { @@ -64215,7 +64215,7 @@ "fileName": "inputnumber/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L58" } ], "type": { @@ -64255,7 +64255,7 @@ "fileName": "inputnumber/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L64" } ], "type": { @@ -64295,7 +64295,7 @@ "fileName": "inputnumber/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L70" } ], "type": { @@ -64335,7 +64335,7 @@ "fileName": "inputnumber/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L76" } ], "type": { @@ -64375,7 +64375,7 @@ "fileName": "inputnumber/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L82" } ], "type": { @@ -64415,7 +64415,7 @@ "fileName": "inputnumber/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L88" } ], "type": { @@ -64455,7 +64455,7 @@ "fileName": "inputnumber/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L94" } ], "type": { @@ -64495,7 +64495,7 @@ "fileName": "inputnumber/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L100" } ], "type": { @@ -64528,7 +64528,7 @@ "fileName": "inputnumber/index.d.ts", "line": 28, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L28" } ] } @@ -64550,7 +64550,7 @@ "fileName": "inputnumber/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L13" } ], "extendedTypes": [ @@ -64584,7 +64584,7 @@ "fileName": "inputnumber/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputnumber/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputnumber/index.d.ts#L1" } ] }, @@ -64623,7 +64623,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -64648,7 +64648,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -64686,7 +64686,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -64726,7 +64726,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -64758,7 +64758,7 @@ "fileName": "inputtext/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L17" } ], "type": { @@ -64802,7 +64802,7 @@ "fileName": "inputtext/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L23" } ], "type": { @@ -64842,7 +64842,7 @@ "fileName": "inputtext/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L29" } ], "type": { @@ -64882,7 +64882,7 @@ "fileName": "inputtext/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L35" } ], "type": { @@ -64922,7 +64922,7 @@ "fileName": "inputtext/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L41" } ], "type": { @@ -64962,7 +64962,7 @@ "fileName": "inputtext/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L47" } ], "type": { @@ -65002,7 +65002,7 @@ "fileName": "inputtext/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L53" } ], "type": { @@ -65042,7 +65042,7 @@ "fileName": "inputtext/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L59" } ], "type": { @@ -65082,7 +65082,7 @@ "fileName": "inputtext/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L65" } ], "type": { @@ -65122,7 +65122,7 @@ "fileName": "inputtext/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L71" } ], "type": { @@ -65162,7 +65162,7 @@ "fileName": "inputtext/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L77" } ], "type": { @@ -65202,7 +65202,7 @@ "fileName": "inputtext/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L83" } ], "type": { @@ -65242,7 +65242,7 @@ "fileName": "inputtext/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L89" } ], "type": { @@ -65282,7 +65282,7 @@ "fileName": "inputtext/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L95" } ], "type": { @@ -65322,7 +65322,7 @@ "fileName": "inputtext/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L101" } ], "type": { @@ -65362,7 +65362,7 @@ "fileName": "inputtext/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L107" } ], "type": { @@ -65391,7 +65391,7 @@ "fileName": "inputtext/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L111" } ], "type": { @@ -65435,7 +65435,7 @@ "fileName": "inputtext/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L117" } ], "type": { @@ -65475,7 +65475,7 @@ "fileName": "inputtext/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L123" } ], "type": { @@ -65515,7 +65515,7 @@ "fileName": "inputtext/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L129" } ], "type": { @@ -65555,7 +65555,7 @@ "fileName": "inputtext/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L135" } ], "type": { @@ -65595,7 +65595,7 @@ "fileName": "inputtext/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L141" } ], "type": { @@ -65621,7 +65621,7 @@ "fileName": "inputtext/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L111" } ] } @@ -65659,7 +65659,7 @@ "fileName": "inputtext/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L148" } ], "type": { @@ -65688,7 +65688,7 @@ "fileName": "inputtext/index.d.ts", "line": 152, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L152" } ], "type": { @@ -65732,7 +65732,7 @@ "fileName": "inputtext/index.d.ts", "line": 158, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L158" } ], "type": { @@ -65772,7 +65772,7 @@ "fileName": "inputtext/index.d.ts", "line": 164, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L164" } ], "type": { @@ -65812,7 +65812,7 @@ "fileName": "inputtext/index.d.ts", "line": 170, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L170" } ], "type": { @@ -65836,7 +65836,7 @@ "fileName": "inputtext/index.d.ts", "line": 152, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L152" } ] } @@ -65863,7 +65863,7 @@ "fileName": "inputtext/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L175" } ], "type": { @@ -65907,7 +65907,7 @@ "fileName": "inputtext/index.d.ts", "line": 181, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L181" } ], "type": { @@ -65947,7 +65947,7 @@ "fileName": "inputtext/index.d.ts", "line": 187, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L187" } ], "type": { @@ -65987,7 +65987,7 @@ "fileName": "inputtext/index.d.ts", "line": 193, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L193" } ], "type": { @@ -66011,7 +66011,7 @@ "fileName": "inputtext/index.d.ts", "line": 175, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L175" } ] } @@ -66049,7 +66049,7 @@ "fileName": "inputtext/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L17" } ] } @@ -66070,7 +66070,7 @@ "fileName": "inputtext/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L13" } ], "extendedTypes": [ @@ -66104,7 +66104,7 @@ "fileName": "inputtext/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/inputtext/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/inputtext/index.d.ts#L1" } ] }, @@ -66143,7 +66143,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -66168,7 +66168,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -66206,7 +66206,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -66246,7 +66246,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -66278,7 +66278,7 @@ "fileName": "knob/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L17" } ], "type": { @@ -66322,7 +66322,7 @@ "fileName": "knob/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L23" } ], "type": { @@ -66351,7 +66351,7 @@ "fileName": "knob/index.d.ts", "line": 27, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L27" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L27" } ], "type": { @@ -66395,7 +66395,7 @@ "fileName": "knob/index.d.ts", "line": 33, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L33" } ], "type": { @@ -66435,7 +66435,7 @@ "fileName": "knob/index.d.ts", "line": 39, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L39" } ], "type": { @@ -66475,7 +66475,7 @@ "fileName": "knob/index.d.ts", "line": 45, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L45" } ], "type": { @@ -66515,7 +66515,7 @@ "fileName": "knob/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L51" } ], "type": { @@ -66555,7 +66555,7 @@ "fileName": "knob/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L57" } ], "type": { @@ -66581,7 +66581,7 @@ "fileName": "knob/index.d.ts", "line": 27, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L27" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L27" } ] } @@ -66602,7 +66602,7 @@ "fileName": "knob/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L17" } ] } @@ -66629,7 +66629,7 @@ "fileName": "knob/index.d.ts", "line": 63, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L63" } ], "type": { @@ -66673,7 +66673,7 @@ "fileName": "knob/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L69" } ], "type": { @@ -66695,7 +66695,7 @@ "fileName": "knob/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L63" } ] } @@ -66722,7 +66722,7 @@ "fileName": "knob/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L74" } ], "type": { @@ -66766,7 +66766,7 @@ "fileName": "knob/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L80" } ], "type": { @@ -66788,7 +66788,7 @@ "fileName": "knob/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L74" } ] } @@ -66815,7 +66815,7 @@ "fileName": "knob/index.d.ts", "line": 85, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L85" } ], "type": { @@ -66859,7 +66859,7 @@ "fileName": "knob/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L91" } ], "type": { @@ -66881,7 +66881,7 @@ "fileName": "knob/index.d.ts", "line": 85, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L85" } ] } @@ -66905,7 +66905,7 @@ "fileName": "knob/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L13" } ], "extendedTypes": [ @@ -66939,7 +66939,7 @@ "fileName": "knob/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/knob/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/knob/index.d.ts#L1" } ] }, @@ -66978,7 +66978,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -67003,7 +67003,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -67041,7 +67041,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -67081,7 +67081,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -67113,7 +67113,7 @@ "fileName": "listbox/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L17" } ], "type": { @@ -67157,7 +67157,7 @@ "fileName": "listbox/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L23" } ], "type": { @@ -67197,7 +67197,7 @@ "fileName": "listbox/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L29" } ], "type": { @@ -67237,7 +67237,7 @@ "fileName": "listbox/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L35" } ], "type": { @@ -67277,7 +67277,7 @@ "fileName": "listbox/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L41" } ], "type": { @@ -67317,7 +67317,7 @@ "fileName": "listbox/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L47" } ], "type": { @@ -67357,7 +67357,7 @@ "fileName": "listbox/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L53" } ], "type": { @@ -67397,7 +67397,7 @@ "fileName": "listbox/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L59" } ], "type": { @@ -67437,7 +67437,7 @@ "fileName": "listbox/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L65" } ], "type": { @@ -67477,7 +67477,7 @@ "fileName": "listbox/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L71" } ], "type": { @@ -67517,7 +67517,7 @@ "fileName": "listbox/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L77" } ], "type": { @@ -67546,7 +67546,7 @@ "fileName": "listbox/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L81" } ], "type": { @@ -67590,7 +67590,7 @@ "fileName": "listbox/index.d.ts", "line": 87, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L87" } ], "type": { @@ -67630,7 +67630,7 @@ "fileName": "listbox/index.d.ts", "line": 93, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L93" } ], "type": { @@ -67670,7 +67670,7 @@ "fileName": "listbox/index.d.ts", "line": 99, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L99" } ], "type": { @@ -67710,7 +67710,7 @@ "fileName": "listbox/index.d.ts", "line": 105, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L105" } ], "type": { @@ -67750,7 +67750,7 @@ "fileName": "listbox/index.d.ts", "line": 111, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L111" } ], "type": { @@ -67776,7 +67776,7 @@ "fileName": "listbox/index.d.ts", "line": 81, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L81" } ] } @@ -67814,7 +67814,7 @@ "fileName": "listbox/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L118" } ], "type": { @@ -67847,7 +67847,7 @@ "fileName": "listbox/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L17" } ] } @@ -67874,7 +67874,7 @@ "fileName": "listbox/index.d.ts", "line": 123, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L123" } ], "type": { @@ -67918,7 +67918,7 @@ "fileName": "listbox/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L129" } ], "type": { @@ -67958,7 +67958,7 @@ "fileName": "listbox/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L135" } ], "type": { @@ -67987,7 +67987,7 @@ "fileName": "listbox/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L139" } ], "type": { @@ -68031,7 +68031,7 @@ "fileName": "listbox/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L145" } ], "type": { @@ -68053,7 +68053,7 @@ "fileName": "listbox/index.d.ts", "line": 139, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L139" } ] } @@ -68075,7 +68075,7 @@ "fileName": "listbox/index.d.ts", "line": 123, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L123" } ] } @@ -68102,7 +68102,7 @@ "fileName": "listbox/index.d.ts", "line": 151, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L151" } ], "type": { @@ -68146,7 +68146,7 @@ "fileName": "listbox/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L157" } ], "type": { @@ -68186,7 +68186,7 @@ "fileName": "listbox/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L163" } ], "type": { @@ -68226,7 +68226,7 @@ "fileName": "listbox/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L169" } ], "type": { @@ -68266,7 +68266,7 @@ "fileName": "listbox/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L175" } ], "type": { @@ -68306,7 +68306,7 @@ "fileName": "listbox/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L181" } ], "type": { @@ -68346,7 +68346,7 @@ "fileName": "listbox/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L187" } ], "type": { @@ -68386,7 +68386,7 @@ "fileName": "listbox/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L193" } ], "type": { @@ -68426,7 +68426,7 @@ "fileName": "listbox/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L199" } ], "type": { @@ -68466,7 +68466,7 @@ "fileName": "listbox/index.d.ts", "line": 205, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L205" } ], "type": { @@ -68506,7 +68506,7 @@ "fileName": "listbox/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L211" } ], "type": { @@ -68537,7 +68537,7 @@ "fileName": "listbox/index.d.ts", "line": 151, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L151" } ] } @@ -68564,7 +68564,7 @@ "fileName": "listbox/index.d.ts", "line": 216, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L216" } ], "type": { @@ -68608,7 +68608,7 @@ "fileName": "listbox/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L222" } ], "type": { @@ -68648,7 +68648,7 @@ "fileName": "listbox/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L228" } ], "type": { @@ -68688,7 +68688,7 @@ "fileName": "listbox/index.d.ts", "line": 234, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L234" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L234" } ], "type": { @@ -68728,7 +68728,7 @@ "fileName": "listbox/index.d.ts", "line": 240, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L240" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L240" } ], "type": { @@ -68753,7 +68753,7 @@ "fileName": "listbox/index.d.ts", "line": 216, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L216" } ] } @@ -68780,7 +68780,7 @@ "fileName": "listbox/index.d.ts", "line": 245, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L245" } ], "type": { @@ -68824,7 +68824,7 @@ "fileName": "listbox/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L251" } ], "type": { @@ -68864,7 +68864,7 @@ "fileName": "listbox/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L257" } ], "type": { @@ -68904,7 +68904,7 @@ "fileName": "listbox/index.d.ts", "line": 263, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L263" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L263" } ], "type": { @@ -68928,7 +68928,7 @@ "fileName": "listbox/index.d.ts", "line": 245, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L245" } ] } @@ -68955,7 +68955,7 @@ "fileName": "listbox/index.d.ts", "line": 268, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L268" } ], "type": { @@ -68999,7 +68999,7 @@ "fileName": "listbox/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L274" } ], "type": { @@ -69021,7 +69021,7 @@ "fileName": "listbox/index.d.ts", "line": 268, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L268" } ] } @@ -69047,7 +69047,7 @@ "fileName": "listbox/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L13" } ], "extendedTypes": [ @@ -69081,7 +69081,7 @@ "fileName": "listbox/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/listbox/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/listbox/index.d.ts#L1" } ] }, @@ -69120,7 +69120,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -69145,7 +69145,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -69183,7 +69183,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -69223,7 +69223,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -69255,7 +69255,7 @@ "fileName": "megamenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L17" } ], "type": { @@ -69299,7 +69299,7 @@ "fileName": "megamenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L23" } ], "type": { @@ -69339,7 +69339,7 @@ "fileName": "megamenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L29" } ], "type": { @@ -69379,7 +69379,7 @@ "fileName": "megamenu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L35" } ], "type": { @@ -69419,7 +69419,7 @@ "fileName": "megamenu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L41" } ], "type": { @@ -69459,7 +69459,7 @@ "fileName": "megamenu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L47" } ], "type": { @@ -69488,7 +69488,7 @@ "fileName": "megamenu/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L51" } ], "type": { @@ -69532,7 +69532,7 @@ "fileName": "megamenu/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L57" } ], "type": { @@ -69572,7 +69572,7 @@ "fileName": "megamenu/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L63" } ], "type": { @@ -69595,7 +69595,7 @@ "fileName": "megamenu/index.d.ts", "line": 51, "character": 30, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L51" } ] } @@ -69622,7 +69622,7 @@ "fileName": "megamenu/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L68" } ], "type": { @@ -69666,7 +69666,7 @@ "fileName": "megamenu/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L74" } ], "type": { @@ -69688,7 +69688,7 @@ "fileName": "megamenu/index.d.ts", "line": 68, "character": 32, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L68" } ] } @@ -69726,7 +69726,7 @@ "fileName": "megamenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L81" } ], "type": { @@ -69755,7 +69755,7 @@ "fileName": "megamenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L17" } ] } @@ -69782,7 +69782,7 @@ "fileName": "megamenu/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L86" } ], "type": { @@ -69826,7 +69826,7 @@ "fileName": "megamenu/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L92" } ], "type": { @@ -69866,7 +69866,7 @@ "fileName": "megamenu/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L98" } ], "type": { @@ -69889,7 +69889,7 @@ "fileName": "megamenu/index.d.ts", "line": 86, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L86" } ] } @@ -69916,7 +69916,7 @@ "fileName": "megamenu/index.d.ts", "line": 103, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L103" } ], "type": { @@ -69960,7 +69960,7 @@ "fileName": "megamenu/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L109" } ], "type": { @@ -70000,7 +70000,7 @@ "fileName": "megamenu/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L115" } ], "type": { @@ -70040,7 +70040,7 @@ "fileName": "megamenu/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L121" } ], "type": { @@ -70080,7 +70080,7 @@ "fileName": "megamenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L127" } ], "type": { @@ -70120,7 +70120,7 @@ "fileName": "megamenu/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L133" } ], "type": { @@ -70160,7 +70160,7 @@ "fileName": "megamenu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L139" } ], "type": { @@ -70200,7 +70200,7 @@ "fileName": "megamenu/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L145" } ], "type": { @@ -70240,7 +70240,7 @@ "fileName": "megamenu/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L151" } ], "type": { @@ -70269,7 +70269,7 @@ "fileName": "megamenu/index.d.ts", "line": 155, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L155" } ], "type": { @@ -70313,7 +70313,7 @@ "fileName": "megamenu/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L161" } ], "type": { @@ -70353,7 +70353,7 @@ "fileName": "megamenu/index.d.ts", "line": 167, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L167" } ], "type": { @@ -70393,7 +70393,7 @@ "fileName": "megamenu/index.d.ts", "line": 173, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L173" } ], "type": { @@ -70417,7 +70417,7 @@ "fileName": "megamenu/index.d.ts", "line": 155, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L155" } ] } @@ -70445,7 +70445,7 @@ "fileName": "megamenu/index.d.ts", "line": 103, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L103" } ] } @@ -70472,7 +70472,7 @@ "fileName": "megamenu/index.d.ts", "line": 179, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L179" } ], "type": { @@ -70516,7 +70516,7 @@ "fileName": "megamenu/index.d.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L185" } ], "type": { @@ -70556,7 +70556,7 @@ "fileName": "megamenu/index.d.ts", "line": 191, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L191" } ], "type": { @@ -70596,7 +70596,7 @@ "fileName": "megamenu/index.d.ts", "line": 197, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L197" } ], "type": { @@ -70636,7 +70636,7 @@ "fileName": "megamenu/index.d.ts", "line": 203, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L203" } ], "type": { @@ -70676,7 +70676,7 @@ "fileName": "megamenu/index.d.ts", "line": 209, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L209" } ], "type": { @@ -70716,7 +70716,7 @@ "fileName": "megamenu/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L215" } ], "type": { @@ -70756,7 +70756,7 @@ "fileName": "megamenu/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L221" } ], "type": { @@ -70784,7 +70784,7 @@ "fileName": "megamenu/index.d.ts", "line": 179, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L179" } ] } @@ -70811,7 +70811,7 @@ "fileName": "megamenu/index.d.ts", "line": 226, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L226" } ], "type": { @@ -70855,7 +70855,7 @@ "fileName": "megamenu/index.d.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L232" } ], "type": { @@ -70895,7 +70895,7 @@ "fileName": "megamenu/index.d.ts", "line": 238, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L238" } ], "type": { @@ -70918,7 +70918,7 @@ "fileName": "megamenu/index.d.ts", "line": 226, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L226" } ] } @@ -70945,7 +70945,7 @@ "fileName": "megamenu/index.d.ts", "line": 243, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L243" } ], "type": { @@ -70989,7 +70989,7 @@ "fileName": "megamenu/index.d.ts", "line": 249, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L249" } ], "type": { @@ -71029,7 +71029,7 @@ "fileName": "megamenu/index.d.ts", "line": 255, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L255" } ], "type": { @@ -71069,7 +71069,7 @@ "fileName": "megamenu/index.d.ts", "line": 261, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L261" } ], "type": { @@ -71109,7 +71109,7 @@ "fileName": "megamenu/index.d.ts", "line": 267, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L267" } ], "type": { @@ -71134,7 +71134,7 @@ "fileName": "megamenu/index.d.ts", "line": 243, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L243" } ] } @@ -71161,7 +71161,7 @@ "fileName": "megamenu/index.d.ts", "line": 272, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L272" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L272" } ], "type": { @@ -71205,7 +71205,7 @@ "fileName": "megamenu/index.d.ts", "line": 278, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L278" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L278" } ], "type": { @@ -71245,7 +71245,7 @@ "fileName": "megamenu/index.d.ts", "line": 284, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L284" } ], "type": { @@ -71285,7 +71285,7 @@ "fileName": "megamenu/index.d.ts", "line": 290, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L290" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L290" } ], "type": { @@ -71325,7 +71325,7 @@ "fileName": "megamenu/index.d.ts", "line": 296, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L296" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L296" } ], "type": { @@ -71350,7 +71350,7 @@ "fileName": "megamenu/index.d.ts", "line": 272, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L272" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L272" } ] } @@ -71377,7 +71377,7 @@ "fileName": "megamenu/index.d.ts", "line": 301, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L301" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L301" } ], "type": { @@ -71421,7 +71421,7 @@ "fileName": "megamenu/index.d.ts", "line": 307, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L307" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L307" } ], "type": { @@ -71443,7 +71443,7 @@ "fileName": "megamenu/index.d.ts", "line": 301, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L301" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L301" } ] } @@ -71470,7 +71470,7 @@ "fileName": "megamenu/index.d.ts", "line": 312, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L312" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L312" } ], "type": { @@ -71514,7 +71514,7 @@ "fileName": "megamenu/index.d.ts", "line": 318, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L318" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L318" } ], "type": { @@ -71554,7 +71554,7 @@ "fileName": "megamenu/index.d.ts", "line": 324, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L324" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L324" } ], "type": { @@ -71594,7 +71594,7 @@ "fileName": "megamenu/index.d.ts", "line": 330, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L330" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L330" } ], "type": { @@ -71634,7 +71634,7 @@ "fileName": "megamenu/index.d.ts", "line": 336, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L336" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L336" } ], "type": { @@ -71674,7 +71674,7 @@ "fileName": "megamenu/index.d.ts", "line": 342, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L342" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L342" } ], "type": { @@ -71703,7 +71703,7 @@ "fileName": "megamenu/index.d.ts", "line": 346, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L346" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L346" } ], "type": { @@ -71747,7 +71747,7 @@ "fileName": "megamenu/index.d.ts", "line": 352, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L352" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L352" } ], "type": { @@ -71787,7 +71787,7 @@ "fileName": "megamenu/index.d.ts", "line": 358, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L358" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L358" } ], "type": { @@ -71827,7 +71827,7 @@ "fileName": "megamenu/index.d.ts", "line": 364, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L364" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L364" } ], "type": { @@ -71867,7 +71867,7 @@ "fileName": "megamenu/index.d.ts", "line": 370, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L370" } ], "type": { @@ -71907,7 +71907,7 @@ "fileName": "megamenu/index.d.ts", "line": 376, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L376" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L376" } ], "type": { @@ -71933,7 +71933,7 @@ "fileName": "megamenu/index.d.ts", "line": 346, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L346" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L346" } ] } @@ -71958,7 +71958,7 @@ "fileName": "megamenu/index.d.ts", "line": 312, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L312" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L312" } ] } @@ -71987,7 +71987,7 @@ "fileName": "megamenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -72021,7 +72021,7 @@ "fileName": "megamenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/megamenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/megamenu/index.d.ts#L1" } ] }, @@ -72060,7 +72060,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -72085,7 +72085,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -72123,7 +72123,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -72163,7 +72163,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -72195,7 +72195,7 @@ "fileName": "menu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L17" } ], "type": { @@ -72239,7 +72239,7 @@ "fileName": "menu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L23" } ], "type": { @@ -72279,7 +72279,7 @@ "fileName": "menu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L29" } ], "type": { @@ -72319,7 +72319,7 @@ "fileName": "menu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L35" } ], "type": { @@ -72359,7 +72359,7 @@ "fileName": "menu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L41" } ], "type": { @@ -72399,7 +72399,7 @@ "fileName": "menu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L47" } ], "type": { @@ -72439,7 +72439,7 @@ "fileName": "menu/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L53" } ], "type": { @@ -72466,7 +72466,7 @@ "fileName": "menu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L17" } ] } @@ -72493,7 +72493,7 @@ "fileName": "menu/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L58" } ], "type": { @@ -72537,7 +72537,7 @@ "fileName": "menu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L64" } ], "type": { @@ -72577,7 +72577,7 @@ "fileName": "menu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L70" } ], "type": { @@ -72600,7 +72600,7 @@ "fileName": "menu/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L58" } ] } @@ -72627,7 +72627,7 @@ "fileName": "menu/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L75" } ], "type": { @@ -72671,7 +72671,7 @@ "fileName": "menu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L81" } ], "type": { @@ -72711,7 +72711,7 @@ "fileName": "menu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L87" } ], "type": { @@ -72751,7 +72751,7 @@ "fileName": "menu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L93" } ], "type": { @@ -72791,7 +72791,7 @@ "fileName": "menu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L99" } ], "type": { @@ -72831,7 +72831,7 @@ "fileName": "menu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L105" } ], "type": { @@ -72871,7 +72871,7 @@ "fileName": "menu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L111" } ], "type": { @@ -72900,7 +72900,7 @@ "fileName": "menu/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L115" } ], "type": { @@ -72944,7 +72944,7 @@ "fileName": "menu/index.d.ts", "line": 121, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L121" } ], "type": { @@ -72984,7 +72984,7 @@ "fileName": "menu/index.d.ts", "line": 127, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L127" } ], "type": { @@ -73007,7 +73007,7 @@ "fileName": "menu/index.d.ts", "line": 115, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L115" } ] } @@ -73033,7 +73033,7 @@ "fileName": "menu/index.d.ts", "line": 75, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L75" } ] } @@ -73060,7 +73060,7 @@ "fileName": "menu/index.d.ts", "line": 133, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L133" } ], "type": { @@ -73104,7 +73104,7 @@ "fileName": "menu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L139" } ], "type": { @@ -73144,7 +73144,7 @@ "fileName": "menu/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L145" } ], "type": { @@ -73184,7 +73184,7 @@ "fileName": "menu/index.d.ts", "line": 151, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L151" } ], "type": { @@ -73224,7 +73224,7 @@ "fileName": "menu/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L157" } ], "type": { @@ -73249,7 +73249,7 @@ "fileName": "menu/index.d.ts", "line": 133, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L133" } ] } @@ -73276,7 +73276,7 @@ "fileName": "menu/index.d.ts", "line": 162, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L162" } ], "type": { @@ -73320,7 +73320,7 @@ "fileName": "menu/index.d.ts", "line": 168, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L168" } ], "type": { @@ -73342,7 +73342,7 @@ "fileName": "menu/index.d.ts", "line": 162, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L162" } ] } @@ -73367,7 +73367,7 @@ "fileName": "menu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L13" } ], "extendedTypes": [ @@ -73401,7 +73401,7 @@ "fileName": "menu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menu/index.d.ts#L1" } ] }, @@ -73440,7 +73440,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -73465,7 +73465,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -73503,7 +73503,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -73543,7 +73543,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -73575,7 +73575,7 @@ "fileName": "menubar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L17" } ], "type": { @@ -73619,7 +73619,7 @@ "fileName": "menubar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L23" } ], "type": { @@ -73659,7 +73659,7 @@ "fileName": "menubar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L29" } ], "type": { @@ -73699,7 +73699,7 @@ "fileName": "menubar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L35" } ], "type": { @@ -73739,7 +73739,7 @@ "fileName": "menubar/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L41" } ], "type": { @@ -73779,7 +73779,7 @@ "fileName": "menubar/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L47" } ], "type": { @@ -73819,7 +73819,7 @@ "fileName": "menubar/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L53" } ], "type": { @@ -73859,7 +73859,7 @@ "fileName": "menubar/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L59" } ], "type": { @@ -73887,7 +73887,7 @@ "fileName": "menubar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L17" } ] } @@ -73914,7 +73914,7 @@ "fileName": "menubar/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L64" } ], "type": { @@ -73958,7 +73958,7 @@ "fileName": "menubar/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L70" } ], "type": { @@ -73998,7 +73998,7 @@ "fileName": "menubar/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L76" } ], "type": { @@ -74021,7 +74021,7 @@ "fileName": "menubar/index.d.ts", "line": 64, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L64" } ] } @@ -74048,7 +74048,7 @@ "fileName": "menubar/index.d.ts", "line": 81, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L81" } ], "type": { @@ -74092,7 +74092,7 @@ "fileName": "menubar/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L87" } ], "type": { @@ -74132,7 +74132,7 @@ "fileName": "menubar/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L93" } ], "type": { @@ -74172,7 +74172,7 @@ "fileName": "menubar/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L99" } ], "type": { @@ -74212,7 +74212,7 @@ "fileName": "menubar/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L105" } ], "type": { @@ -74252,7 +74252,7 @@ "fileName": "menubar/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L111" } ], "type": { @@ -74292,7 +74292,7 @@ "fileName": "menubar/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L117" } ], "type": { @@ -74332,7 +74332,7 @@ "fileName": "menubar/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L123" } ], "type": { @@ -74372,7 +74372,7 @@ "fileName": "menubar/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L129" } ], "type": { @@ -74401,7 +74401,7 @@ "fileName": "menubar/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L133" } ], "type": { @@ -74445,7 +74445,7 @@ "fileName": "menubar/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L139" } ], "type": { @@ -74485,7 +74485,7 @@ "fileName": "menubar/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L145" } ], "type": { @@ -74525,7 +74525,7 @@ "fileName": "menubar/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L151" } ], "type": { @@ -74549,7 +74549,7 @@ "fileName": "menubar/index.d.ts", "line": 133, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L133" } ] } @@ -74577,7 +74577,7 @@ "fileName": "menubar/index.d.ts", "line": 81, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L81" } ] } @@ -74604,7 +74604,7 @@ "fileName": "menubar/index.d.ts", "line": 157, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L157" } ], "type": { @@ -74648,7 +74648,7 @@ "fileName": "menubar/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L163" } ], "type": { @@ -74688,7 +74688,7 @@ "fileName": "menubar/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L169" } ], "type": { @@ -74728,7 +74728,7 @@ "fileName": "menubar/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L175" } ], "type": { @@ -74768,7 +74768,7 @@ "fileName": "menubar/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L181" } ], "type": { @@ -74808,7 +74808,7 @@ "fileName": "menubar/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L187" } ], "type": { @@ -74848,7 +74848,7 @@ "fileName": "menubar/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L193" } ], "type": { @@ -74888,7 +74888,7 @@ "fileName": "menubar/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L199" } ], "type": { @@ -74916,7 +74916,7 @@ "fileName": "menubar/index.d.ts", "line": 157, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L157" } ] } @@ -74943,7 +74943,7 @@ "fileName": "menubar/index.d.ts", "line": 204, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L204" } ], "type": { @@ -74987,7 +74987,7 @@ "fileName": "menubar/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L210" } ], "type": { @@ -75027,7 +75027,7 @@ "fileName": "menubar/index.d.ts", "line": 216, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L216" } ], "type": { @@ -75067,7 +75067,7 @@ "fileName": "menubar/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L222" } ], "type": { @@ -75107,7 +75107,7 @@ "fileName": "menubar/index.d.ts", "line": 228, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L228" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L228" } ], "type": { @@ -75132,7 +75132,7 @@ "fileName": "menubar/index.d.ts", "line": 204, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L204" } ] } @@ -75159,7 +75159,7 @@ "fileName": "menubar/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L233" } ], "type": { @@ -75203,7 +75203,7 @@ "fileName": "menubar/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L239" } ], "type": { @@ -75225,7 +75225,7 @@ "fileName": "menubar/index.d.ts", "line": 233, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L233" } ] } @@ -75252,7 +75252,7 @@ "fileName": "menubar/index.d.ts", "line": 244, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L244" } ], "type": { @@ -75296,7 +75296,7 @@ "fileName": "menubar/index.d.ts", "line": 250, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L250" } ], "type": { @@ -75336,7 +75336,7 @@ "fileName": "menubar/index.d.ts", "line": 256, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L256" } ], "type": { @@ -75376,7 +75376,7 @@ "fileName": "menubar/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L262" } ], "type": { @@ -75416,7 +75416,7 @@ "fileName": "menubar/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L268" } ], "type": { @@ -75456,7 +75456,7 @@ "fileName": "menubar/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L274" } ], "type": { @@ -75485,7 +75485,7 @@ "fileName": "menubar/index.d.ts", "line": 278, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L278" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L278" } ], "type": { @@ -75529,7 +75529,7 @@ "fileName": "menubar/index.d.ts", "line": 284, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L284" } ], "type": { @@ -75569,7 +75569,7 @@ "fileName": "menubar/index.d.ts", "line": 290, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L290" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L290" } ], "type": { @@ -75609,7 +75609,7 @@ "fileName": "menubar/index.d.ts", "line": 296, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L296" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L296" } ], "type": { @@ -75649,7 +75649,7 @@ "fileName": "menubar/index.d.ts", "line": 302, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L302" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L302" } ], "type": { @@ -75689,7 +75689,7 @@ "fileName": "menubar/index.d.ts", "line": 308, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L308" } ], "type": { @@ -75715,7 +75715,7 @@ "fileName": "menubar/index.d.ts", "line": 278, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L278" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L278" } ] } @@ -75740,7 +75740,7 @@ "fileName": "menubar/index.d.ts", "line": 244, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L244" } ] } @@ -75767,7 +75767,7 @@ "fileName": "menubar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L13" } ], "extendedTypes": [ @@ -75801,7 +75801,7 @@ "fileName": "menubar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/menubar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/menubar/index.d.ts#L1" } ] }, @@ -75840,7 +75840,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -75865,7 +75865,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -75903,7 +75903,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -75943,7 +75943,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -75975,7 +75975,7 @@ "fileName": "message/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L17" } ], "type": { @@ -76019,7 +76019,7 @@ "fileName": "message/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L23" } ], "type": { @@ -76059,7 +76059,7 @@ "fileName": "message/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L29" } ], "type": { @@ -76099,7 +76099,7 @@ "fileName": "message/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L35" } ], "type": { @@ -76123,7 +76123,7 @@ "fileName": "message/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L17" } ] } @@ -76150,7 +76150,7 @@ "fileName": "message/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L40" } ], "type": { @@ -76194,7 +76194,7 @@ "fileName": "message/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L46" } ], "type": { @@ -76234,7 +76234,7 @@ "fileName": "message/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L52" } ], "type": { @@ -76257,7 +76257,7 @@ "fileName": "message/index.d.ts", "line": 40, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L40" } ] } @@ -76284,7 +76284,7 @@ "fileName": "message/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L57" } ], "type": { @@ -76328,7 +76328,7 @@ "fileName": "message/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L63" } ], "type": { @@ -76368,7 +76368,7 @@ "fileName": "message/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L69" } ], "type": { @@ -76391,7 +76391,7 @@ "fileName": "message/index.d.ts", "line": 57, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L57" } ] } @@ -76418,7 +76418,7 @@ "fileName": "message/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L74" } ], "type": { @@ -76462,7 +76462,7 @@ "fileName": "message/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L80" } ], "type": { @@ -76484,7 +76484,7 @@ "fileName": "message/index.d.ts", "line": 74, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L74" } ] } @@ -76511,7 +76511,7 @@ "fileName": "message/index.d.ts", "line": 85, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L85" } ], "type": { @@ -76555,7 +76555,7 @@ "fileName": "message/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L91" } ], "type": { @@ -76595,7 +76595,7 @@ "fileName": "message/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L97" } ], "type": { @@ -76635,7 +76635,7 @@ "fileName": "message/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L103" } ], "type": { @@ -76664,7 +76664,7 @@ "fileName": "message/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L107" } ], "type": { @@ -76708,7 +76708,7 @@ "fileName": "message/index.d.ts", "line": 113, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L113" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L113" } ], "type": { @@ -76748,7 +76748,7 @@ "fileName": "message/index.d.ts", "line": 119, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L119" } ], "type": { @@ -76788,7 +76788,7 @@ "fileName": "message/index.d.ts", "line": 125, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L125" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L125" } ], "type": { @@ -76812,7 +76812,7 @@ "fileName": "message/index.d.ts", "line": 107, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L107" } ] } @@ -76835,7 +76835,7 @@ "fileName": "message/index.d.ts", "line": 85, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L85" } ] } @@ -76862,7 +76862,7 @@ "fileName": "message/index.d.ts", "line": 131, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L131" } ], "type": { @@ -76906,7 +76906,7 @@ "fileName": "message/index.d.ts", "line": 137, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L137" } ], "type": { @@ -76928,7 +76928,7 @@ "fileName": "message/index.d.ts", "line": 131, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L131" } ] } @@ -76955,7 +76955,7 @@ "fileName": "message/index.d.ts", "line": 142, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L142" } ], "type": { @@ -76999,7 +76999,7 @@ "fileName": "message/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L148" } ], "type": { @@ -77039,7 +77039,7 @@ "fileName": "message/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L154" } ], "type": { @@ -77079,7 +77079,7 @@ "fileName": "message/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L160" } ], "type": { @@ -77119,7 +77119,7 @@ "fileName": "message/index.d.ts", "line": 166, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L166" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L166" } ], "type": { @@ -77148,7 +77148,7 @@ "fileName": "message/index.d.ts", "line": 170, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L170" } ], "type": { @@ -77192,7 +77192,7 @@ "fileName": "message/index.d.ts", "line": 176, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L176" } ], "type": { @@ -77221,7 +77221,7 @@ "fileName": "message/index.d.ts", "line": 180, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L180" } ], "type": { @@ -77265,7 +77265,7 @@ "fileName": "message/index.d.ts", "line": 186, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L186" } ], "type": { @@ -77305,7 +77305,7 @@ "fileName": "message/index.d.ts", "line": 192, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L192" } ], "type": { @@ -77328,7 +77328,7 @@ "fileName": "message/index.d.ts", "line": 180, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L180" } ] } @@ -77349,7 +77349,7 @@ "fileName": "message/index.d.ts", "line": 170, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L170" } ] } @@ -77373,7 +77373,7 @@ "fileName": "message/index.d.ts", "line": 142, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L142" } ] } @@ -77400,7 +77400,7 @@ "fileName": "message/index.d.ts", "line": 199, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L199" } ], "type": { @@ -77444,7 +77444,7 @@ "fileName": "message/index.d.ts", "line": 205, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L205" } ], "type": { @@ -77484,7 +77484,7 @@ "fileName": "message/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L211" } ], "type": { @@ -77524,7 +77524,7 @@ "fileName": "message/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L217" } ], "type": { @@ -77564,7 +77564,7 @@ "fileName": "message/index.d.ts", "line": 223, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L223" } ], "type": { @@ -77593,7 +77593,7 @@ "fileName": "message/index.d.ts", "line": 227, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L227" } ], "type": { @@ -77637,7 +77637,7 @@ "fileName": "message/index.d.ts", "line": 233, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L233" } ], "type": { @@ -77666,7 +77666,7 @@ "fileName": "message/index.d.ts", "line": 237, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L237" } ], "type": { @@ -77710,7 +77710,7 @@ "fileName": "message/index.d.ts", "line": 243, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L243" } ], "type": { @@ -77750,7 +77750,7 @@ "fileName": "message/index.d.ts", "line": 249, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L249" } ], "type": { @@ -77773,7 +77773,7 @@ "fileName": "message/index.d.ts", "line": 237, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L237" } ] } @@ -77794,7 +77794,7 @@ "fileName": "message/index.d.ts", "line": 227, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L227" } ] } @@ -77818,7 +77818,7 @@ "fileName": "message/index.d.ts", "line": 199, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L199" } ] } @@ -77845,7 +77845,7 @@ "fileName": "message/index.d.ts", "line": 256, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L256" } ], "type": { @@ -77889,7 +77889,7 @@ "fileName": "message/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L262" } ], "type": { @@ -77929,7 +77929,7 @@ "fileName": "message/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L268" } ], "type": { @@ -77969,7 +77969,7 @@ "fileName": "message/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L274" } ], "type": { @@ -78009,7 +78009,7 @@ "fileName": "message/index.d.ts", "line": 280, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L280" } ], "type": { @@ -78038,7 +78038,7 @@ "fileName": "message/index.d.ts", "line": 284, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L284" } ], "type": { @@ -78082,7 +78082,7 @@ "fileName": "message/index.d.ts", "line": 290, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L290" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L290" } ], "type": { @@ -78111,7 +78111,7 @@ "fileName": "message/index.d.ts", "line": 294, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L294" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L294" } ], "type": { @@ -78155,7 +78155,7 @@ "fileName": "message/index.d.ts", "line": 300, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L300" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L300" } ], "type": { @@ -78195,7 +78195,7 @@ "fileName": "message/index.d.ts", "line": 306, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L306" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L306" } ], "type": { @@ -78218,7 +78218,7 @@ "fileName": "message/index.d.ts", "line": 294, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L294" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L294" } ] } @@ -78239,7 +78239,7 @@ "fileName": "message/index.d.ts", "line": 284, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L284" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L284" } ] } @@ -78263,7 +78263,7 @@ "fileName": "message/index.d.ts", "line": 256, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L256" } ] } @@ -78290,7 +78290,7 @@ "fileName": "message/index.d.ts", "line": 313, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L313" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L313" } ], "type": { @@ -78334,7 +78334,7 @@ "fileName": "message/index.d.ts", "line": 319, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L319" } ], "type": { @@ -78374,7 +78374,7 @@ "fileName": "message/index.d.ts", "line": 325, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L325" } ], "type": { @@ -78414,7 +78414,7 @@ "fileName": "message/index.d.ts", "line": 331, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L331" } ], "type": { @@ -78454,7 +78454,7 @@ "fileName": "message/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L337" } ], "type": { @@ -78483,7 +78483,7 @@ "fileName": "message/index.d.ts", "line": 341, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L341" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L341" } ], "type": { @@ -78527,7 +78527,7 @@ "fileName": "message/index.d.ts", "line": 347, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L347" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L347" } ], "type": { @@ -78556,7 +78556,7 @@ "fileName": "message/index.d.ts", "line": 351, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L351" } ], "type": { @@ -78600,7 +78600,7 @@ "fileName": "message/index.d.ts", "line": 357, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L357" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L357" } ], "type": { @@ -78640,7 +78640,7 @@ "fileName": "message/index.d.ts", "line": 363, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L363" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L363" } ], "type": { @@ -78663,7 +78663,7 @@ "fileName": "message/index.d.ts", "line": 351, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L351" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L351" } ] } @@ -78684,7 +78684,7 @@ "fileName": "message/index.d.ts", "line": 341, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L341" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L341" } ] } @@ -78708,7 +78708,7 @@ "fileName": "message/index.d.ts", "line": 313, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L313" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L313" } ] } @@ -78735,7 +78735,7 @@ "fileName": "message/index.d.ts", "line": 370, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L370" } ], "type": { @@ -78779,7 +78779,7 @@ "fileName": "message/index.d.ts", "line": 376, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L376" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L376" } ], "type": { @@ -78819,7 +78819,7 @@ "fileName": "message/index.d.ts", "line": 382, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L382" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L382" } ], "type": { @@ -78859,7 +78859,7 @@ "fileName": "message/index.d.ts", "line": 388, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L388" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L388" } ], "type": { @@ -78899,7 +78899,7 @@ "fileName": "message/index.d.ts", "line": 394, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L394" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L394" } ], "type": { @@ -78928,7 +78928,7 @@ "fileName": "message/index.d.ts", "line": 398, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L398" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L398" } ], "type": { @@ -78972,7 +78972,7 @@ "fileName": "message/index.d.ts", "line": 404, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L404" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L404" } ], "type": { @@ -79001,7 +79001,7 @@ "fileName": "message/index.d.ts", "line": 408, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L408" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L408" } ], "type": { @@ -79045,7 +79045,7 @@ "fileName": "message/index.d.ts", "line": 414, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L414" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L414" } ], "type": { @@ -79085,7 +79085,7 @@ "fileName": "message/index.d.ts", "line": 420, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L420" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L420" } ], "type": { @@ -79108,7 +79108,7 @@ "fileName": "message/index.d.ts", "line": 408, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L408" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L408" } ] } @@ -79129,7 +79129,7 @@ "fileName": "message/index.d.ts", "line": 398, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L398" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L398" } ] } @@ -79153,7 +79153,7 @@ "fileName": "message/index.d.ts", "line": 370, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L370" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L370" } ] } @@ -79180,7 +79180,7 @@ "fileName": "message/index.d.ts", "line": 427, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L427" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L427" } ], "type": { @@ -79224,7 +79224,7 @@ "fileName": "message/index.d.ts", "line": 433, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L433" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L433" } ], "type": { @@ -79264,7 +79264,7 @@ "fileName": "message/index.d.ts", "line": 439, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L439" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L439" } ], "type": { @@ -79304,7 +79304,7 @@ "fileName": "message/index.d.ts", "line": 445, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L445" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L445" } ], "type": { @@ -79344,7 +79344,7 @@ "fileName": "message/index.d.ts", "line": 451, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L451" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L451" } ], "type": { @@ -79373,7 +79373,7 @@ "fileName": "message/index.d.ts", "line": 455, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L455" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L455" } ], "type": { @@ -79417,7 +79417,7 @@ "fileName": "message/index.d.ts", "line": 461, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L461" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L461" } ], "type": { @@ -79446,7 +79446,7 @@ "fileName": "message/index.d.ts", "line": 465, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L465" } ], "type": { @@ -79490,7 +79490,7 @@ "fileName": "message/index.d.ts", "line": 471, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L471" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L471" } ], "type": { @@ -79530,7 +79530,7 @@ "fileName": "message/index.d.ts", "line": 477, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L477" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L477" } ], "type": { @@ -79553,7 +79553,7 @@ "fileName": "message/index.d.ts", "line": 465, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L465" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L465" } ] } @@ -79574,7 +79574,7 @@ "fileName": "message/index.d.ts", "line": 455, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L455" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L455" } ] } @@ -79598,7 +79598,7 @@ "fileName": "message/index.d.ts", "line": 427, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L427" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L427" } ] } @@ -79630,7 +79630,7 @@ "fileName": "message/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L13" } ], "extendedTypes": [ @@ -79664,7 +79664,7 @@ "fileName": "message/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/message/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/message/index.d.ts#L1" } ] }, @@ -79703,7 +79703,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -79728,7 +79728,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -79766,7 +79766,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -79806,7 +79806,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -79838,7 +79838,7 @@ "fileName": "metergroup/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L17" } ], "type": { @@ -79882,7 +79882,7 @@ "fileName": "metergroup/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L23" } ], "type": { @@ -79922,7 +79922,7 @@ "fileName": "metergroup/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L29" } ], "type": { @@ -79945,7 +79945,7 @@ "fileName": "metergroup/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L17" } ] } @@ -79972,7 +79972,7 @@ "fileName": "metergroup/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L34" } ], "type": { @@ -80016,7 +80016,7 @@ "fileName": "metergroup/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L40" } ], "type": { @@ -80056,7 +80056,7 @@ "fileName": "metergroup/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L46" } ], "type": { @@ -80079,7 +80079,7 @@ "fileName": "metergroup/index.d.ts", "line": 34, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L34" } ] } @@ -80106,7 +80106,7 @@ "fileName": "metergroup/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L51" } ], "type": { @@ -80150,7 +80150,7 @@ "fileName": "metergroup/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L57" } ], "type": { @@ -80172,7 +80172,7 @@ "fileName": "metergroup/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L51" } ] } @@ -80199,7 +80199,7 @@ "fileName": "metergroup/index.d.ts", "line": 62, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L62" } ], "type": { @@ -80243,7 +80243,7 @@ "fileName": "metergroup/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L68" } ], "type": { @@ -80265,7 +80265,7 @@ "fileName": "metergroup/index.d.ts", "line": 62, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L62" } ] } @@ -80292,7 +80292,7 @@ "fileName": "metergroup/index.d.ts", "line": 73, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L73" } ], "type": { @@ -80336,7 +80336,7 @@ "fileName": "metergroup/index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L79" } ], "type": { @@ -80358,7 +80358,7 @@ "fileName": "metergroup/index.d.ts", "line": 73, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L73" } ] } @@ -80385,7 +80385,7 @@ "fileName": "metergroup/index.d.ts", "line": 84, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L84" } ], "type": { @@ -80429,7 +80429,7 @@ "fileName": "metergroup/index.d.ts", "line": 90, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L90" } ], "type": { @@ -80469,7 +80469,7 @@ "fileName": "metergroup/index.d.ts", "line": 96, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L96" } ], "type": { @@ -80492,7 +80492,7 @@ "fileName": "metergroup/index.d.ts", "line": 84, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L84" } ] } @@ -80518,7 +80518,7 @@ "fileName": "metergroup/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L13" } ], "extendedTypes": [ @@ -80552,7 +80552,7 @@ "fileName": "metergroup/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/metergroup/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/metergroup/index.d.ts#L1" } ] }, @@ -80591,7 +80591,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -80616,7 +80616,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -80654,7 +80654,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -80694,7 +80694,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -80726,7 +80726,7 @@ "fileName": "multiselect/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L17" } ], "type": { @@ -80770,7 +80770,7 @@ "fileName": "multiselect/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L23" } ], "type": { @@ -80810,7 +80810,7 @@ "fileName": "multiselect/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L29" } ], "type": { @@ -80850,7 +80850,7 @@ "fileName": "multiselect/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L35" } ], "type": { @@ -80890,7 +80890,7 @@ "fileName": "multiselect/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L41" } ], "type": { @@ -80930,7 +80930,7 @@ "fileName": "multiselect/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L47" } ], "type": { @@ -80970,7 +80970,7 @@ "fileName": "multiselect/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L53" } ], "type": { @@ -81010,7 +81010,7 @@ "fileName": "multiselect/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L59" } ], "type": { @@ -81050,7 +81050,7 @@ "fileName": "multiselect/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L65" } ], "type": { @@ -81090,7 +81090,7 @@ "fileName": "multiselect/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L71" } ], "type": { @@ -81130,7 +81130,7 @@ "fileName": "multiselect/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L77" } ], "type": { @@ -81170,7 +81170,7 @@ "fileName": "multiselect/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L83" } ], "type": { @@ -81210,7 +81210,7 @@ "fileName": "multiselect/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L89" } ], "type": { @@ -81250,7 +81250,7 @@ "fileName": "multiselect/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L95" } ], "type": { @@ -81290,7 +81290,7 @@ "fileName": "multiselect/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L101" } ], "type": { @@ -81330,7 +81330,7 @@ "fileName": "multiselect/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L107" } ], "type": { @@ -81359,7 +81359,7 @@ "fileName": "multiselect/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L111" } ], "type": { @@ -81403,7 +81403,7 @@ "fileName": "multiselect/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L117" } ], "type": { @@ -81443,7 +81443,7 @@ "fileName": "multiselect/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L123" } ], "type": { @@ -81483,7 +81483,7 @@ "fileName": "multiselect/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L129" } ], "type": { @@ -81523,7 +81523,7 @@ "fileName": "multiselect/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L135" } ], "type": { @@ -81563,7 +81563,7 @@ "fileName": "multiselect/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L141" } ], "type": { @@ -81589,7 +81589,7 @@ "fileName": "multiselect/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L111" } ] } @@ -81627,7 +81627,7 @@ "fileName": "multiselect/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L148" } ], "type": { @@ -81665,7 +81665,7 @@ "fileName": "multiselect/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L17" } ] } @@ -81692,7 +81692,7 @@ "fileName": "multiselect/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L153" } ], "type": { @@ -81736,7 +81736,7 @@ "fileName": "multiselect/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L159" } ], "type": { @@ -81776,7 +81776,7 @@ "fileName": "multiselect/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L165" } ], "type": { @@ -81799,7 +81799,7 @@ "fileName": "multiselect/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L153" } ] } @@ -81826,7 +81826,7 @@ "fileName": "multiselect/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L170" } ], "type": { @@ -81870,7 +81870,7 @@ "fileName": "multiselect/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L176" } ], "type": { @@ -81910,7 +81910,7 @@ "fileName": "multiselect/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L182" } ], "type": { @@ -81950,7 +81950,7 @@ "fileName": "multiselect/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L188" } ], "type": { @@ -81990,7 +81990,7 @@ "fileName": "multiselect/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L194" } ], "type": { @@ -82030,7 +82030,7 @@ "fileName": "multiselect/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L200" } ], "type": { @@ -82056,7 +82056,7 @@ "fileName": "multiselect/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L170" } ] } @@ -82083,7 +82083,7 @@ "fileName": "multiselect/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L205" } ], "type": { @@ -82127,7 +82127,7 @@ "fileName": "multiselect/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L211" } ], "type": { @@ -82167,7 +82167,7 @@ "fileName": "multiselect/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L217" } ], "type": { @@ -82196,7 +82196,7 @@ "fileName": "multiselect/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L221" } ], "type": { @@ -82240,7 +82240,7 @@ "fileName": "multiselect/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L227" } ], "type": { @@ -82262,7 +82262,7 @@ "fileName": "multiselect/index.d.ts", "line": 221, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L221" } ] } @@ -82284,7 +82284,7 @@ "fileName": "multiselect/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L205" } ] } @@ -82311,7 +82311,7 @@ "fileName": "multiselect/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L233" } ], "type": { @@ -82355,7 +82355,7 @@ "fileName": "multiselect/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L239" } ], "type": { @@ -82395,7 +82395,7 @@ "fileName": "multiselect/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L245" } ], "type": { @@ -82435,7 +82435,7 @@ "fileName": "multiselect/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L251" } ], "type": { @@ -82475,7 +82475,7 @@ "fileName": "multiselect/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L257" } ], "type": { @@ -82515,7 +82515,7 @@ "fileName": "multiselect/index.d.ts", "line": 263, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L263" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L263" } ], "type": { @@ -82555,7 +82555,7 @@ "fileName": "multiselect/index.d.ts", "line": 269, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L269" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L269" } ], "type": { @@ -82595,7 +82595,7 @@ "fileName": "multiselect/index.d.ts", "line": 275, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L275" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L275" } ], "type": { @@ -82635,7 +82635,7 @@ "fileName": "multiselect/index.d.ts", "line": 281, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L281" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L281" } ], "type": { @@ -82675,7 +82675,7 @@ "fileName": "multiselect/index.d.ts", "line": 287, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L287" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L287" } ], "type": { @@ -82715,7 +82715,7 @@ "fileName": "multiselect/index.d.ts", "line": 293, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L293" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L293" } ], "type": { @@ -82746,7 +82746,7 @@ "fileName": "multiselect/index.d.ts", "line": 233, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L233" } ] } @@ -82773,7 +82773,7 @@ "fileName": "multiselect/index.d.ts", "line": 298, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L298" } ], "type": { @@ -82817,7 +82817,7 @@ "fileName": "multiselect/index.d.ts", "line": 304, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L304" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L304" } ], "type": { @@ -82857,7 +82857,7 @@ "fileName": "multiselect/index.d.ts", "line": 310, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L310" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L310" } ], "type": { @@ -82897,7 +82897,7 @@ "fileName": "multiselect/index.d.ts", "line": 316, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L316" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L316" } ], "type": { @@ -82937,7 +82937,7 @@ "fileName": "multiselect/index.d.ts", "line": 322, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L322" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L322" } ], "type": { @@ -82962,7 +82962,7 @@ "fileName": "multiselect/index.d.ts", "line": 298, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L298" } ] } @@ -82989,7 +82989,7 @@ "fileName": "multiselect/index.d.ts", "line": 327, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L327" } ], "type": { @@ -83033,7 +83033,7 @@ "fileName": "multiselect/index.d.ts", "line": 333, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L333" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L333" } ], "type": { @@ -83055,7 +83055,7 @@ "fileName": "multiselect/index.d.ts", "line": 327, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L327" } ] } @@ -83082,7 +83082,7 @@ "fileName": "multiselect/index.d.ts", "line": 338, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L338" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L338" } ], "type": { @@ -83126,7 +83126,7 @@ "fileName": "multiselect/index.d.ts", "line": 344, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L344" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L344" } ], "type": { @@ -83148,7 +83148,7 @@ "fileName": "multiselect/index.d.ts", "line": 338, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L338" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L338" } ] } @@ -83176,7 +83176,7 @@ "fileName": "multiselect/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L13" } ], "extendedTypes": [ @@ -83210,7 +83210,7 @@ "fileName": "multiselect/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/multiselect/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/multiselect/index.d.ts#L1" } ] }, @@ -83249,7 +83249,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -83274,7 +83274,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -83312,7 +83312,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -83352,7 +83352,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -83384,7 +83384,7 @@ "fileName": "orderlist/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L17" } ], "type": { @@ -83428,7 +83428,7 @@ "fileName": "orderlist/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L23" } ], "type": { @@ -83450,7 +83450,7 @@ "fileName": "orderlist/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L17" } ] } @@ -83477,7 +83477,7 @@ "fileName": "orderlist/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L28" } ], "type": { @@ -83521,7 +83521,7 @@ "fileName": "orderlist/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L34" } ], "type": { @@ -83543,7 +83543,7 @@ "fileName": "orderlist/index.d.ts", "line": 28, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L28" } ] } @@ -83565,7 +83565,7 @@ "fileName": "orderlist/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L13" } ], "extendedTypes": [ @@ -83599,7 +83599,7 @@ "fileName": "orderlist/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/orderlist/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/orderlist/index.d.ts#L1" } ] }, @@ -83638,7 +83638,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -83663,7 +83663,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -83701,7 +83701,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -83741,7 +83741,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -83773,7 +83773,7 @@ "fileName": "organizationchart/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L17" } ], "type": { @@ -83817,7 +83817,7 @@ "fileName": "organizationchart/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L23" } ], "type": { @@ -83857,7 +83857,7 @@ "fileName": "organizationchart/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L29" } ], "type": { @@ -83880,7 +83880,7 @@ "fileName": "organizationchart/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L17" } ] } @@ -83907,7 +83907,7 @@ "fileName": "organizationchart/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L34" } ], "type": { @@ -83951,7 +83951,7 @@ "fileName": "organizationchart/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L40" } ], "type": { @@ -83991,7 +83991,7 @@ "fileName": "organizationchart/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L46" } ], "type": { @@ -84031,7 +84031,7 @@ "fileName": "organizationchart/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L52" } ], "type": { @@ -84071,7 +84071,7 @@ "fileName": "organizationchart/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L58" } ], "type": { @@ -84111,7 +84111,7 @@ "fileName": "organizationchart/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L64" } ], "type": { @@ -84151,7 +84151,7 @@ "fileName": "organizationchart/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L70" } ], "type": { @@ -84191,7 +84191,7 @@ "fileName": "organizationchart/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L76" } ], "type": { @@ -84231,7 +84231,7 @@ "fileName": "organizationchart/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L82" } ], "type": { @@ -84271,7 +84271,7 @@ "fileName": "organizationchart/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L88" } ], "type": { @@ -84311,7 +84311,7 @@ "fileName": "organizationchart/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L94" } ], "type": { @@ -84342,7 +84342,7 @@ "fileName": "organizationchart/index.d.ts", "line": 34, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L34" } ] } @@ -84369,7 +84369,7 @@ "fileName": "organizationchart/index.d.ts", "line": 99, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L99" } ], "type": { @@ -84413,7 +84413,7 @@ "fileName": "organizationchart/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L105" } ], "type": { @@ -84453,7 +84453,7 @@ "fileName": "organizationchart/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L111" } ], "type": { @@ -84493,7 +84493,7 @@ "fileName": "organizationchart/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L117" } ], "type": { @@ -84533,7 +84533,7 @@ "fileName": "organizationchart/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L123" } ], "type": { @@ -84573,7 +84573,7 @@ "fileName": "organizationchart/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L129" } ], "type": { @@ -84613,7 +84613,7 @@ "fileName": "organizationchart/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L135" } ], "type": { @@ -84653,7 +84653,7 @@ "fileName": "organizationchart/index.d.ts", "line": 141, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L141" } ], "type": { @@ -84682,7 +84682,7 @@ "fileName": "organizationchart/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L145" } ], "type": { @@ -84726,7 +84726,7 @@ "fileName": "organizationchart/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L151" } ], "type": { @@ -84766,7 +84766,7 @@ "fileName": "organizationchart/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L157" } ], "type": { @@ -84806,7 +84806,7 @@ "fileName": "organizationchart/index.d.ts", "line": 163, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L163" } ], "type": { @@ -84846,7 +84846,7 @@ "fileName": "organizationchart/index.d.ts", "line": 169, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L169" } ], "type": { @@ -84886,7 +84886,7 @@ "fileName": "organizationchart/index.d.ts", "line": 175, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L175" } ], "type": { @@ -84912,7 +84912,7 @@ "fileName": "organizationchart/index.d.ts", "line": 145, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L145" } ] } @@ -84939,7 +84939,7 @@ "fileName": "organizationchart/index.d.ts", "line": 99, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L99" } ] } @@ -84966,7 +84966,7 @@ "fileName": "organizationchart/index.d.ts", "line": 181, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L181" } ], "type": { @@ -85010,7 +85010,7 @@ "fileName": "organizationchart/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L187" } ], "type": { @@ -85050,7 +85050,7 @@ "fileName": "organizationchart/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L193" } ], "type": { @@ -85090,7 +85090,7 @@ "fileName": "organizationchart/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L199" } ], "type": { @@ -85114,7 +85114,7 @@ "fileName": "organizationchart/index.d.ts", "line": 181, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L181" } ] } @@ -85138,7 +85138,7 @@ "fileName": "organizationchart/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L13" } ], "extendedTypes": [ @@ -85172,7 +85172,7 @@ "fileName": "organizationchart/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/organizationchart/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/organizationchart/index.d.ts#L1" } ] }, @@ -85211,7 +85211,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -85236,7 +85236,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -85274,7 +85274,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -85314,7 +85314,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -85346,7 +85346,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" } ], "type": { @@ -85379,7 +85379,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 21, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L21" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" } ], "type": { @@ -85423,7 +85423,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 27, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L27" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L27" } ], "type": { @@ -85463,7 +85463,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 33, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L33" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L33" } ], "type": { @@ -85486,7 +85486,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 21, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L21" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L21" } ] } @@ -85506,7 +85506,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L17" } ] } @@ -85527,7 +85527,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L13" } ], "extendedTypes": [ @@ -85561,7 +85561,7 @@ "fileName": "overlaybadge/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/overlaybadge/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/overlaybadge/index.d.ts#L1" } ] }, @@ -85600,7 +85600,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -85625,7 +85625,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -85663,7 +85663,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -85703,7 +85703,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -85735,7 +85735,7 @@ "fileName": "paginator/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L17" } ], "type": { @@ -85779,7 +85779,7 @@ "fileName": "paginator/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L23" } ], "type": { @@ -85819,7 +85819,7 @@ "fileName": "paginator/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L29" } ], "type": { @@ -85859,7 +85859,7 @@ "fileName": "paginator/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L35" } ], "type": { @@ -85899,7 +85899,7 @@ "fileName": "paginator/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L41" } ], "type": { @@ -85939,7 +85939,7 @@ "fileName": "paginator/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L47" } ], "type": { @@ -85979,7 +85979,7 @@ "fileName": "paginator/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L53" } ], "type": { @@ -86006,7 +86006,7 @@ "fileName": "paginator/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L17" } ] } @@ -86033,7 +86033,7 @@ "fileName": "paginator/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L58" } ], "type": { @@ -86077,7 +86077,7 @@ "fileName": "paginator/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L64" } ], "type": { @@ -86117,7 +86117,7 @@ "fileName": "paginator/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L70" } ], "type": { @@ -86157,7 +86157,7 @@ "fileName": "paginator/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L76" } ], "type": { @@ -86197,7 +86197,7 @@ "fileName": "paginator/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L82" } ], "type": { @@ -86237,7 +86237,7 @@ "fileName": "paginator/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L88" } ], "type": { @@ -86277,7 +86277,7 @@ "fileName": "paginator/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L94" } ], "type": { @@ -86317,7 +86317,7 @@ "fileName": "paginator/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L100" } ], "type": { @@ -86357,7 +86357,7 @@ "fileName": "paginator/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L106" } ], "type": { @@ -86397,7 +86397,7 @@ "fileName": "paginator/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L112" } ], "type": { @@ -86426,7 +86426,7 @@ "fileName": "paginator/index.d.ts", "line": 116, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L116" } ], "type": { @@ -86470,7 +86470,7 @@ "fileName": "paginator/index.d.ts", "line": 122, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L122" } ], "type": { @@ -86510,7 +86510,7 @@ "fileName": "paginator/index.d.ts", "line": 128, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L128" } ], "type": { @@ -86550,7 +86550,7 @@ "fileName": "paginator/index.d.ts", "line": 134, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L134" } ], "type": { @@ -86590,7 +86590,7 @@ "fileName": "paginator/index.d.ts", "line": 140, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L140" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L140" } ], "type": { @@ -86630,7 +86630,7 @@ "fileName": "paginator/index.d.ts", "line": 146, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L146" } ], "type": { @@ -86656,7 +86656,7 @@ "fileName": "paginator/index.d.ts", "line": 116, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L116" } ] } @@ -86685,7 +86685,7 @@ "fileName": "paginator/index.d.ts", "line": 58, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L58" } ] } @@ -86712,7 +86712,7 @@ "fileName": "paginator/index.d.ts", "line": 152, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L152" } ], "type": { @@ -86756,7 +86756,7 @@ "fileName": "paginator/index.d.ts", "line": 158, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L158" } ], "type": { @@ -86778,7 +86778,7 @@ "fileName": "paginator/index.d.ts", "line": 152, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L152" } ] } @@ -86805,7 +86805,7 @@ "fileName": "paginator/index.d.ts", "line": 163, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L163" } ], "type": { @@ -86849,7 +86849,7 @@ "fileName": "paginator/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L169" } ], "type": { @@ -86871,7 +86871,7 @@ "fileName": "paginator/index.d.ts", "line": 163, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L163" } ] } @@ -86895,7 +86895,7 @@ "fileName": "paginator/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L13" } ], "extendedTypes": [ @@ -86929,7 +86929,7 @@ "fileName": "paginator/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/paginator/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/paginator/index.d.ts#L1" } ] }, @@ -86968,7 +86968,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -86993,7 +86993,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -87031,7 +87031,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -87071,7 +87071,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -87103,7 +87103,7 @@ "fileName": "panel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L17" } ], "type": { @@ -87147,7 +87147,7 @@ "fileName": "panel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L23" } ], "type": { @@ -87187,7 +87187,7 @@ "fileName": "panel/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L29" } ], "type": { @@ -87227,7 +87227,7 @@ "fileName": "panel/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L35" } ], "type": { @@ -87267,7 +87267,7 @@ "fileName": "panel/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L41" } ], "type": { @@ -87292,7 +87292,7 @@ "fileName": "panel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L17" } ] } @@ -87319,7 +87319,7 @@ "fileName": "panel/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L46" } ], "type": { @@ -87363,7 +87363,7 @@ "fileName": "panel/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L52" } ], "type": { @@ -87403,7 +87403,7 @@ "fileName": "panel/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L58" } ], "type": { @@ -87443,7 +87443,7 @@ "fileName": "panel/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L64" } ], "type": { @@ -87483,7 +87483,7 @@ "fileName": "panel/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L70" } ], "type": { @@ -87523,7 +87523,7 @@ "fileName": "panel/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L76" } ], "type": { @@ -87563,7 +87563,7 @@ "fileName": "panel/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L82" } ], "type": { @@ -87590,7 +87590,7 @@ "fileName": "panel/index.d.ts", "line": 46, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L46" } ] } @@ -87617,7 +87617,7 @@ "fileName": "panel/index.d.ts", "line": 87, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L87" } ], "type": { @@ -87661,7 +87661,7 @@ "fileName": "panel/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L93" } ], "type": { @@ -87683,7 +87683,7 @@ "fileName": "panel/index.d.ts", "line": 87, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L87" } ] } @@ -87710,7 +87710,7 @@ "fileName": "panel/index.d.ts", "line": 98, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L98" } ], "type": { @@ -87754,7 +87754,7 @@ "fileName": "panel/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L104" } ], "type": { @@ -87776,7 +87776,7 @@ "fileName": "panel/index.d.ts", "line": 98, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L98" } ] } @@ -87803,7 +87803,7 @@ "fileName": "panel/index.d.ts", "line": 109, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L109" } ], "type": { @@ -87847,7 +87847,7 @@ "fileName": "panel/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L115" } ], "type": { @@ -87869,7 +87869,7 @@ "fileName": "panel/index.d.ts", "line": 109, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L109" } ] } @@ -87896,7 +87896,7 @@ "fileName": "panel/index.d.ts", "line": 120, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L120" } ], "type": { @@ -87940,7 +87940,7 @@ "fileName": "panel/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L126" } ], "type": { @@ -87962,7 +87962,7 @@ "fileName": "panel/index.d.ts", "line": 120, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L120" } ] } @@ -87988,7 +87988,7 @@ "fileName": "panel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L13" } ], "extendedTypes": [ @@ -88022,7 +88022,7 @@ "fileName": "panel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panel/index.d.ts#L1" } ] }, @@ -88061,7 +88061,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -88086,7 +88086,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -88124,7 +88124,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -88164,7 +88164,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -88196,7 +88196,7 @@ "fileName": "panelmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L17" } ], "type": { @@ -88240,7 +88240,7 @@ "fileName": "panelmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L23" } ], "type": { @@ -88280,7 +88280,7 @@ "fileName": "panelmenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L29" } ], "type": { @@ -88303,7 +88303,7 @@ "fileName": "panelmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L17" } ] } @@ -88330,7 +88330,7 @@ "fileName": "panelmenu/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L34" } ], "type": { @@ -88374,7 +88374,7 @@ "fileName": "panelmenu/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L40" } ], "type": { @@ -88414,7 +88414,7 @@ "fileName": "panelmenu/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L46" } ], "type": { @@ -88454,7 +88454,7 @@ "fileName": "panelmenu/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L52" } ], "type": { @@ -88494,7 +88494,7 @@ "fileName": "panelmenu/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L58" } ], "type": { @@ -88534,7 +88534,7 @@ "fileName": "panelmenu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L64" } ], "type": { @@ -88574,7 +88574,7 @@ "fileName": "panelmenu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L70" } ], "type": { @@ -88603,7 +88603,7 @@ "fileName": "panelmenu/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L74" } ], "type": { @@ -88647,7 +88647,7 @@ "fileName": "panelmenu/index.d.ts", "line": 80, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L80" } ], "type": { @@ -88687,7 +88687,7 @@ "fileName": "panelmenu/index.d.ts", "line": 86, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L86" } ], "type": { @@ -88710,7 +88710,7 @@ "fileName": "panelmenu/index.d.ts", "line": 74, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L74" } ] } @@ -88737,7 +88737,7 @@ "fileName": "panelmenu/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L91" } ], "type": { @@ -88781,7 +88781,7 @@ "fileName": "panelmenu/index.d.ts", "line": 97, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L97" } ], "type": { @@ -88821,7 +88821,7 @@ "fileName": "panelmenu/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L103" } ], "type": { @@ -88844,7 +88844,7 @@ "fileName": "panelmenu/index.d.ts", "line": 91, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L91" } ] } @@ -88871,7 +88871,7 @@ "fileName": "panelmenu/index.d.ts", "line": 34, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L34" } ] } @@ -88898,7 +88898,7 @@ "fileName": "panelmenu/index.d.ts", "line": 109, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L109" } ], "type": { @@ -88942,7 +88942,7 @@ "fileName": "panelmenu/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L115" } ], "type": { @@ -88982,7 +88982,7 @@ "fileName": "panelmenu/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L121" } ], "type": { @@ -89022,7 +89022,7 @@ "fileName": "panelmenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L127" } ], "type": { @@ -89062,7 +89062,7 @@ "fileName": "panelmenu/index.d.ts", "line": 133, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L133" } ], "type": { @@ -89102,7 +89102,7 @@ "fileName": "panelmenu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L139" } ], "type": { @@ -89142,7 +89142,7 @@ "fileName": "panelmenu/index.d.ts", "line": 145, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L145" } ], "type": { @@ -89171,7 +89171,7 @@ "fileName": "panelmenu/index.d.ts", "line": 149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L149" } ], "type": { @@ -89215,7 +89215,7 @@ "fileName": "panelmenu/index.d.ts", "line": 155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L155" } ], "type": { @@ -89255,7 +89255,7 @@ "fileName": "panelmenu/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L161" } ], "type": { @@ -89278,7 +89278,7 @@ "fileName": "panelmenu/index.d.ts", "line": 149, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L149" } ] } @@ -89304,7 +89304,7 @@ "fileName": "panelmenu/index.d.ts", "line": 109, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L109" } ] } @@ -89331,7 +89331,7 @@ "fileName": "panelmenu/index.d.ts", "line": 167, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L167" } ], "type": { @@ -89375,7 +89375,7 @@ "fileName": "panelmenu/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L173" } ], "type": { @@ -89397,7 +89397,7 @@ "fileName": "panelmenu/index.d.ts", "line": 167, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L167" } ] } @@ -89424,7 +89424,7 @@ "fileName": "panelmenu/index.d.ts", "line": 178, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L178" } ], "type": { @@ -89468,7 +89468,7 @@ "fileName": "panelmenu/index.d.ts", "line": 184, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L184" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L184" } ], "type": { @@ -89508,7 +89508,7 @@ "fileName": "panelmenu/index.d.ts", "line": 190, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L190" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L190" } ], "type": { @@ -89531,7 +89531,7 @@ "fileName": "panelmenu/index.d.ts", "line": 178, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L178" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L178" } ] } @@ -89556,7 +89556,7 @@ "fileName": "panelmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -89590,7 +89590,7 @@ "fileName": "panelmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/panelmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/panelmenu/index.d.ts#L1" } ] }, @@ -89629,7 +89629,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -89654,7 +89654,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -89692,7 +89692,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -89732,7 +89732,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -89764,7 +89764,7 @@ "fileName": "password/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L17" } ], "type": { @@ -89808,7 +89808,7 @@ "fileName": "password/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L23" } ], "type": { @@ -89848,7 +89848,7 @@ "fileName": "password/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L29" } ], "type": { @@ -89888,7 +89888,7 @@ "fileName": "password/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L35" } ], "type": { @@ -89912,7 +89912,7 @@ "fileName": "password/index.d.ts", "line": 17, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L17" } ] } @@ -89939,7 +89939,7 @@ "fileName": "password/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L40" } ], "type": { @@ -89983,7 +89983,7 @@ "fileName": "password/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L46" } ], "type": { @@ -90005,7 +90005,7 @@ "fileName": "password/index.d.ts", "line": 40, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L40" } ] } @@ -90032,7 +90032,7 @@ "fileName": "password/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L51" } ], "type": { @@ -90076,7 +90076,7 @@ "fileName": "password/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L57" } ], "type": { @@ -90116,7 +90116,7 @@ "fileName": "password/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L63" } ], "type": { @@ -90156,7 +90156,7 @@ "fileName": "password/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L69" } ], "type": { @@ -90196,7 +90196,7 @@ "fileName": "password/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L75" } ], "type": { @@ -90236,7 +90236,7 @@ "fileName": "password/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L81" } ], "type": { @@ -90276,7 +90276,7 @@ "fileName": "password/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L87" } ], "type": { @@ -90303,7 +90303,7 @@ "fileName": "password/index.d.ts", "line": 51, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L51" } ] } @@ -90330,7 +90330,7 @@ "fileName": "password/index.d.ts", "line": 92, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L92" } ], "type": { @@ -90374,7 +90374,7 @@ "fileName": "password/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L98" } ], "type": { @@ -90396,7 +90396,7 @@ "fileName": "password/index.d.ts", "line": 92, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L92" } ] } @@ -90423,7 +90423,7 @@ "fileName": "password/index.d.ts", "line": 103, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L103" } ], "type": { @@ -90467,7 +90467,7 @@ "fileName": "password/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L109" } ], "type": { @@ -90507,7 +90507,7 @@ "fileName": "password/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L115" } ], "type": { @@ -90547,7 +90547,7 @@ "fileName": "password/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L121" } ], "type": { @@ -90571,7 +90571,7 @@ "fileName": "password/index.d.ts", "line": 103, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L103" } ] } @@ -90596,7 +90596,7 @@ "fileName": "password/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L13" } ], "extendedTypes": [ @@ -90630,7 +90630,7 @@ "fileName": "password/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/password/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/password/index.d.ts#L1" } ] }, @@ -90669,7 +90669,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -90694,7 +90694,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -90732,7 +90732,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -90772,7 +90772,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -90804,7 +90804,7 @@ "fileName": "picklist/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L17" } ], "type": { @@ -90848,7 +90848,7 @@ "fileName": "picklist/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L23" } ], "type": { @@ -90870,7 +90870,7 @@ "fileName": "picklist/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L17" } ] } @@ -90897,7 +90897,7 @@ "fileName": "picklist/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L28" } ], "type": { @@ -90941,7 +90941,7 @@ "fileName": "picklist/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L34" } ], "type": { @@ -90963,7 +90963,7 @@ "fileName": "picklist/index.d.ts", "line": 28, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L28" } ] } @@ -90985,7 +90985,7 @@ "fileName": "picklist/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L13" } ], "extendedTypes": [ @@ -91019,7 +91019,7 @@ "fileName": "picklist/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/picklist/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/picklist/index.d.ts#L1" } ] }, @@ -91058,7 +91058,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -91083,7 +91083,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -91121,7 +91121,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -91161,7 +91161,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -91193,7 +91193,7 @@ "fileName": "popover/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L17" } ], "type": { @@ -91237,7 +91237,7 @@ "fileName": "popover/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L23" } ], "type": { @@ -91277,7 +91277,7 @@ "fileName": "popover/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L29" } ], "type": { @@ -91317,7 +91317,7 @@ "fileName": "popover/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L35" } ], "type": { @@ -91357,7 +91357,7 @@ "fileName": "popover/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L41" } ], "type": { @@ -91397,7 +91397,7 @@ "fileName": "popover/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L47" } ], "type": { @@ -91437,7 +91437,7 @@ "fileName": "popover/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L53" } ], "type": { @@ -91477,7 +91477,7 @@ "fileName": "popover/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L59" } ], "type": { @@ -91505,7 +91505,7 @@ "fileName": "popover/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L17" } ] } @@ -91532,7 +91532,7 @@ "fileName": "popover/index.d.ts", "line": 64, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L64" } ], "type": { @@ -91576,7 +91576,7 @@ "fileName": "popover/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L70" } ], "type": { @@ -91598,7 +91598,7 @@ "fileName": "popover/index.d.ts", "line": 64, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L64" } ] } @@ -91620,7 +91620,7 @@ "fileName": "popover/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L13" } ], "extendedTypes": [ @@ -91654,7 +91654,7 @@ "fileName": "popover/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/popover/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/popover/index.d.ts#L1" } ] }, @@ -91693,7 +91693,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -91718,7 +91718,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -91756,7 +91756,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -91796,7 +91796,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -91828,7 +91828,7 @@ "fileName": "progressbar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L17" } ], "type": { @@ -91872,7 +91872,7 @@ "fileName": "progressbar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L23" } ], "type": { @@ -91912,7 +91912,7 @@ "fileName": "progressbar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L29" } ], "type": { @@ -91952,7 +91952,7 @@ "fileName": "progressbar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L35" } ], "type": { @@ -91976,7 +91976,7 @@ "fileName": "progressbar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L17" } ] } @@ -92003,7 +92003,7 @@ "fileName": "progressbar/index.d.ts", "line": 40, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L40" } ], "type": { @@ -92047,7 +92047,7 @@ "fileName": "progressbar/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L46" } ], "type": { @@ -92069,7 +92069,7 @@ "fileName": "progressbar/index.d.ts", "line": 40, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L40" } ] } @@ -92096,7 +92096,7 @@ "fileName": "progressbar/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L51" } ], "type": { @@ -92140,7 +92140,7 @@ "fileName": "progressbar/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L57" } ], "type": { @@ -92180,7 +92180,7 @@ "fileName": "progressbar/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L63" } ], "type": { @@ -92220,7 +92220,7 @@ "fileName": "progressbar/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L69" } ], "type": { @@ -92244,7 +92244,7 @@ "fileName": "progressbar/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L51" } ] } @@ -92267,7 +92267,7 @@ "fileName": "progressbar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L13" } ], "extendedTypes": [ @@ -92301,7 +92301,7 @@ "fileName": "progressbar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressbar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressbar/index.d.ts#L1" } ] }, @@ -92340,7 +92340,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -92365,7 +92365,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -92403,7 +92403,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -92443,7 +92443,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -92475,7 +92475,7 @@ "fileName": "progressspinner/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L17" } ], "type": { @@ -92519,7 +92519,7 @@ "fileName": "progressspinner/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L23" } ], "type": { @@ -92559,7 +92559,7 @@ "fileName": "progressspinner/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L29" } ], "type": { @@ -92599,7 +92599,7 @@ "fileName": "progressspinner/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L35" } ], "type": { @@ -92639,7 +92639,7 @@ "fileName": "progressspinner/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L41" } ], "type": { @@ -92664,7 +92664,7 @@ "fileName": "progressspinner/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L17" } ] } @@ -92685,7 +92685,7 @@ "fileName": "progressspinner/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L13" } ], "extendedTypes": [ @@ -92719,7 +92719,7 @@ "fileName": "progressspinner/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/progressspinner/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/progressspinner/index.d.ts#L1" } ] }, @@ -92758,7 +92758,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -92783,7 +92783,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -92821,7 +92821,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -92861,7 +92861,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -92893,7 +92893,7 @@ "fileName": "radiobutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L17" } ], "type": { @@ -92937,7 +92937,7 @@ "fileName": "radiobutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L23" } ], "type": { @@ -92977,7 +92977,7 @@ "fileName": "radiobutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L29" } ], "type": { @@ -93017,7 +93017,7 @@ "fileName": "radiobutton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L35" } ], "type": { @@ -93057,7 +93057,7 @@ "fileName": "radiobutton/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L41" } ], "type": { @@ -93097,7 +93097,7 @@ "fileName": "radiobutton/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L47" } ], "type": { @@ -93137,7 +93137,7 @@ "fileName": "radiobutton/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L53" } ], "type": { @@ -93177,7 +93177,7 @@ "fileName": "radiobutton/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L59" } ], "type": { @@ -93217,7 +93217,7 @@ "fileName": "radiobutton/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L65" } ], "type": { @@ -93257,7 +93257,7 @@ "fileName": "radiobutton/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L71" } ], "type": { @@ -93297,7 +93297,7 @@ "fileName": "radiobutton/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L77" } ], "type": { @@ -93337,7 +93337,7 @@ "fileName": "radiobutton/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L83" } ], "type": { @@ -93377,7 +93377,7 @@ "fileName": "radiobutton/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L89" } ], "type": { @@ -93417,7 +93417,7 @@ "fileName": "radiobutton/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L95" } ], "type": { @@ -93457,7 +93457,7 @@ "fileName": "radiobutton/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L101" } ], "type": { @@ -93497,7 +93497,7 @@ "fileName": "radiobutton/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L107" } ], "type": { @@ -93537,7 +93537,7 @@ "fileName": "radiobutton/index.d.ts", "line": 113, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L113" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L113" } ], "type": { @@ -93566,7 +93566,7 @@ "fileName": "radiobutton/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L117" } ], "type": { @@ -93610,7 +93610,7 @@ "fileName": "radiobutton/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L123" } ], "type": { @@ -93650,7 +93650,7 @@ "fileName": "radiobutton/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L129" } ], "type": { @@ -93690,7 +93690,7 @@ "fileName": "radiobutton/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L135" } ], "type": { @@ -93730,7 +93730,7 @@ "fileName": "radiobutton/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L141" } ], "type": { @@ -93770,7 +93770,7 @@ "fileName": "radiobutton/index.d.ts", "line": 147, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L147" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L147" } ], "type": { @@ -93796,7 +93796,7 @@ "fileName": "radiobutton/index.d.ts", "line": 117, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L117" } ] } @@ -93834,7 +93834,7 @@ "fileName": "radiobutton/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L154" } ], "type": { @@ -93873,7 +93873,7 @@ "fileName": "radiobutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L17" } ] } @@ -93900,7 +93900,7 @@ "fileName": "radiobutton/index.d.ts", "line": 159, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L159" } ], "type": { @@ -93944,7 +93944,7 @@ "fileName": "radiobutton/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L165" } ], "type": { @@ -93984,7 +93984,7 @@ "fileName": "radiobutton/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L171" } ], "type": { @@ -94024,7 +94024,7 @@ "fileName": "radiobutton/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L177" } ], "type": { @@ -94064,7 +94064,7 @@ "fileName": "radiobutton/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L183" } ], "type": { @@ -94089,7 +94089,7 @@ "fileName": "radiobutton/index.d.ts", "line": 159, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L159" } ] } @@ -94111,7 +94111,7 @@ "fileName": "radiobutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -94145,7 +94145,7 @@ "fileName": "radiobutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/radiobutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/radiobutton/index.d.ts#L1" } ] }, @@ -94184,7 +94184,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -94209,7 +94209,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -94247,7 +94247,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -94287,7 +94287,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -94319,7 +94319,7 @@ "fileName": "rating/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L17" } ], "type": { @@ -94363,7 +94363,7 @@ "fileName": "rating/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L23" } ], "type": { @@ -94403,7 +94403,7 @@ "fileName": "rating/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L29" } ], "type": { @@ -94426,7 +94426,7 @@ "fileName": "rating/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L17" } ] } @@ -94453,7 +94453,7 @@ "fileName": "rating/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L34" } ], "type": { @@ -94497,7 +94497,7 @@ "fileName": "rating/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L40" } ], "type": { @@ -94537,7 +94537,7 @@ "fileName": "rating/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L46" } ], "type": { @@ -94577,7 +94577,7 @@ "fileName": "rating/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L52" } ], "type": { @@ -94617,7 +94617,7 @@ "fileName": "rating/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L58" } ], "type": { @@ -94642,7 +94642,7 @@ "fileName": "rating/index.d.ts", "line": 34, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L34" } ] } @@ -94664,7 +94664,7 @@ "fileName": "rating/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L13" } ], "extendedTypes": [ @@ -94698,7 +94698,7 @@ "fileName": "rating/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/rating/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/rating/index.d.ts#L1" } ] }, @@ -94737,7 +94737,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -94762,7 +94762,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -94800,7 +94800,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -94840,7 +94840,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -94872,7 +94872,7 @@ "fileName": "ripple/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/ripple/index.d.ts#L17" } ], "type": { @@ -94916,7 +94916,7 @@ "fileName": "ripple/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/ripple/index.d.ts#L23" } ], "type": { @@ -94938,7 +94938,7 @@ "fileName": "ripple/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/ripple/index.d.ts#L17" } ] } @@ -94959,7 +94959,7 @@ "fileName": "ripple/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/ripple/index.d.ts#L13" } ], "extendedTypes": [ @@ -94993,7 +94993,7 @@ "fileName": "ripple/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/ripple/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/ripple/index.d.ts#L1" } ] }, @@ -95032,7 +95032,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -95057,7 +95057,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -95095,7 +95095,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -95135,7 +95135,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -95167,7 +95167,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" } ], "type": { @@ -95211,7 +95211,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L23" } ], "type": { @@ -95233,7 +95233,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L17" } ] } @@ -95260,7 +95260,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" } ], "type": { @@ -95304,7 +95304,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L34" } ], "type": { @@ -95344,7 +95344,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L40" } ], "type": { @@ -95373,7 +95373,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 44, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" } ], "type": { @@ -95417,7 +95417,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 50, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L50" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L50" } ], "type": { @@ -95457,7 +95457,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 56, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L56" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L56" } ], "type": { @@ -95497,7 +95497,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 62, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L62" } ], "type": { @@ -95537,7 +95537,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 68, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L68" } ], "type": { @@ -95577,7 +95577,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 74, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L74" } ], "type": { @@ -95603,7 +95603,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 44, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L44" } ] } @@ -95641,7 +95641,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L81" } ], "type": { @@ -95666,7 +95666,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 28, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L28" } ] } @@ -95688,7 +95688,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L13" } ], "extendedTypes": [ @@ -95722,7 +95722,7 @@ "fileName": "scrollpanel/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/scrollpanel/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/scrollpanel/index.d.ts#L1" } ] }, @@ -95761,7 +95761,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -95786,7 +95786,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -95824,7 +95824,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -95864,7 +95864,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -95896,7 +95896,7 @@ "fileName": "select/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L17" } ], "type": { @@ -95940,7 +95940,7 @@ "fileName": "select/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L23" } ], "type": { @@ -95980,7 +95980,7 @@ "fileName": "select/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L29" } ], "type": { @@ -96020,7 +96020,7 @@ "fileName": "select/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L35" } ], "type": { @@ -96060,7 +96060,7 @@ "fileName": "select/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L41" } ], "type": { @@ -96100,7 +96100,7 @@ "fileName": "select/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L47" } ], "type": { @@ -96140,7 +96140,7 @@ "fileName": "select/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L53" } ], "type": { @@ -96180,7 +96180,7 @@ "fileName": "select/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L59" } ], "type": { @@ -96220,7 +96220,7 @@ "fileName": "select/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L65" } ], "type": { @@ -96260,7 +96260,7 @@ "fileName": "select/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L71" } ], "type": { @@ -96300,7 +96300,7 @@ "fileName": "select/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L77" } ], "type": { @@ -96340,7 +96340,7 @@ "fileName": "select/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L83" } ], "type": { @@ -96380,7 +96380,7 @@ "fileName": "select/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L89" } ], "type": { @@ -96420,7 +96420,7 @@ "fileName": "select/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L95" } ], "type": { @@ -96460,7 +96460,7 @@ "fileName": "select/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L101" } ], "type": { @@ -96500,7 +96500,7 @@ "fileName": "select/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L107" } ], "type": { @@ -96529,7 +96529,7 @@ "fileName": "select/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L111" } ], "type": { @@ -96573,7 +96573,7 @@ "fileName": "select/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L117" } ], "type": { @@ -96613,7 +96613,7 @@ "fileName": "select/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L123" } ], "type": { @@ -96653,7 +96653,7 @@ "fileName": "select/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L129" } ], "type": { @@ -96693,7 +96693,7 @@ "fileName": "select/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L135" } ], "type": { @@ -96733,7 +96733,7 @@ "fileName": "select/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L141" } ], "type": { @@ -96759,7 +96759,7 @@ "fileName": "select/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L111" } ] } @@ -96797,7 +96797,7 @@ "fileName": "select/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L148" } ], "type": { @@ -96835,7 +96835,7 @@ "fileName": "select/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L17" } ] } @@ -96862,7 +96862,7 @@ "fileName": "select/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L153" } ], "type": { @@ -96906,7 +96906,7 @@ "fileName": "select/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L159" } ], "type": { @@ -96946,7 +96946,7 @@ "fileName": "select/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L165" } ], "type": { @@ -96969,7 +96969,7 @@ "fileName": "select/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L153" } ] } @@ -96996,7 +96996,7 @@ "fileName": "select/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L170" } ], "type": { @@ -97040,7 +97040,7 @@ "fileName": "select/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L176" } ], "type": { @@ -97080,7 +97080,7 @@ "fileName": "select/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L182" } ], "type": { @@ -97120,7 +97120,7 @@ "fileName": "select/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L188" } ], "type": { @@ -97160,7 +97160,7 @@ "fileName": "select/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L194" } ], "type": { @@ -97200,7 +97200,7 @@ "fileName": "select/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L200" } ], "type": { @@ -97226,7 +97226,7 @@ "fileName": "select/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L170" } ] } @@ -97253,7 +97253,7 @@ "fileName": "select/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L205" } ], "type": { @@ -97297,7 +97297,7 @@ "fileName": "select/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L211" } ], "type": { @@ -97337,7 +97337,7 @@ "fileName": "select/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L217" } ], "type": { @@ -97366,7 +97366,7 @@ "fileName": "select/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L221" } ], "type": { @@ -97410,7 +97410,7 @@ "fileName": "select/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L227" } ], "type": { @@ -97432,7 +97432,7 @@ "fileName": "select/index.d.ts", "line": 221, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L221" } ] } @@ -97454,7 +97454,7 @@ "fileName": "select/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L205" } ] } @@ -97481,7 +97481,7 @@ "fileName": "select/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L233" } ], "type": { @@ -97525,7 +97525,7 @@ "fileName": "select/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L239" } ], "type": { @@ -97565,7 +97565,7 @@ "fileName": "select/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L245" } ], "type": { @@ -97605,7 +97605,7 @@ "fileName": "select/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L251" } ], "type": { @@ -97645,7 +97645,7 @@ "fileName": "select/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L257" } ], "type": { @@ -97685,7 +97685,7 @@ "fileName": "select/index.d.ts", "line": 263, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L263" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L263" } ], "type": { @@ -97725,7 +97725,7 @@ "fileName": "select/index.d.ts", "line": 269, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L269" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L269" } ], "type": { @@ -97765,7 +97765,7 @@ "fileName": "select/index.d.ts", "line": 275, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L275" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L275" } ], "type": { @@ -97805,7 +97805,7 @@ "fileName": "select/index.d.ts", "line": 281, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L281" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L281" } ], "type": { @@ -97845,7 +97845,7 @@ "fileName": "select/index.d.ts", "line": 287, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L287" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L287" } ], "type": { @@ -97875,7 +97875,7 @@ "fileName": "select/index.d.ts", "line": 233, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L233" } ] } @@ -97902,7 +97902,7 @@ "fileName": "select/index.d.ts", "line": 292, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L292" } ], "type": { @@ -97946,7 +97946,7 @@ "fileName": "select/index.d.ts", "line": 298, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L298" } ], "type": { @@ -97986,7 +97986,7 @@ "fileName": "select/index.d.ts", "line": 304, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L304" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L304" } ], "type": { @@ -98026,7 +98026,7 @@ "fileName": "select/index.d.ts", "line": 310, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L310" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L310" } ], "type": { @@ -98066,7 +98066,7 @@ "fileName": "select/index.d.ts", "line": 316, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L316" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L316" } ], "type": { @@ -98091,7 +98091,7 @@ "fileName": "select/index.d.ts", "line": 292, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L292" } ] } @@ -98118,7 +98118,7 @@ "fileName": "select/index.d.ts", "line": 321, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L321" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L321" } ], "type": { @@ -98162,7 +98162,7 @@ "fileName": "select/index.d.ts", "line": 327, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L327" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L327" } ], "type": { @@ -98184,7 +98184,7 @@ "fileName": "select/index.d.ts", "line": 321, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L321" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L321" } ] } @@ -98211,7 +98211,7 @@ "fileName": "select/index.d.ts", "line": 332, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L332" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L332" } ], "type": { @@ -98255,7 +98255,7 @@ "fileName": "select/index.d.ts", "line": 338, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L338" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L338" } ], "type": { @@ -98295,7 +98295,7 @@ "fileName": "select/index.d.ts", "line": 344, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L344" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L344" } ], "type": { @@ -98335,7 +98335,7 @@ "fileName": "select/index.d.ts", "line": 350, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L350" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L350" } ], "type": { @@ -98359,7 +98359,7 @@ "fileName": "select/index.d.ts", "line": 332, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L332" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L332" } ] } @@ -98386,7 +98386,7 @@ "fileName": "select/index.d.ts", "line": 355, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L355" } ], "type": { @@ -98430,7 +98430,7 @@ "fileName": "select/index.d.ts", "line": 361, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L361" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L361" } ], "type": { @@ -98452,7 +98452,7 @@ "fileName": "select/index.d.ts", "line": 355, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L355" } ] } @@ -98481,7 +98481,7 @@ "fileName": "select/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L13" } ], "extendedTypes": [ @@ -98515,7 +98515,7 @@ "fileName": "select/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/select/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/select/index.d.ts#L1" } ] }, @@ -98554,7 +98554,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -98579,7 +98579,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -98617,7 +98617,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -98657,7 +98657,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -98689,7 +98689,7 @@ "fileName": "selectbutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/selectbutton/index.d.ts#L17" } ], "type": { @@ -98733,7 +98733,7 @@ "fileName": "selectbutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/selectbutton/index.d.ts#L23" } ], "type": { @@ -98773,7 +98773,7 @@ "fileName": "selectbutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/selectbutton/index.d.ts#L29" } ], "type": { @@ -98796,7 +98796,7 @@ "fileName": "selectbutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/selectbutton/index.d.ts#L17" } ] } @@ -98817,7 +98817,7 @@ "fileName": "selectbutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/selectbutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -98851,7 +98851,7 @@ "fileName": "selectbutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/selectbutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/selectbutton/index.d.ts#L1" } ] }, @@ -98890,7 +98890,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -98915,7 +98915,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -98953,7 +98953,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -98993,7 +98993,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -99025,7 +99025,7 @@ "fileName": "skeleton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L17" } ], "type": { @@ -99069,7 +99069,7 @@ "fileName": "skeleton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L23" } ], "type": { @@ -99109,7 +99109,7 @@ "fileName": "skeleton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L29" } ], "type": { @@ -99149,7 +99149,7 @@ "fileName": "skeleton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L35" } ], "type": { @@ -99173,7 +99173,7 @@ "fileName": "skeleton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L17" } ] } @@ -99194,7 +99194,7 @@ "fileName": "skeleton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L13" } ], "extendedTypes": [ @@ -99228,7 +99228,7 @@ "fileName": "skeleton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/skeleton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/skeleton/index.d.ts#L1" } ] }, @@ -99267,7 +99267,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -99292,7 +99292,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -99330,7 +99330,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -99370,7 +99370,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -99402,7 +99402,7 @@ "fileName": "slider/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L17" } ], "type": { @@ -99446,7 +99446,7 @@ "fileName": "slider/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L23" } ], "type": { @@ -99468,7 +99468,7 @@ "fileName": "slider/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L17" } ] } @@ -99495,7 +99495,7 @@ "fileName": "slider/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L28" } ], "type": { @@ -99539,7 +99539,7 @@ "fileName": "slider/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L34" } ], "type": { @@ -99579,7 +99579,7 @@ "fileName": "slider/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L40" } ], "type": { @@ -99619,7 +99619,7 @@ "fileName": "slider/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L46" } ], "type": { @@ -99643,7 +99643,7 @@ "fileName": "slider/index.d.ts", "line": 28, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L28" } ] } @@ -99670,7 +99670,7 @@ "fileName": "slider/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L51" } ], "type": { @@ -99714,7 +99714,7 @@ "fileName": "slider/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L57" } ], "type": { @@ -99736,7 +99736,7 @@ "fileName": "slider/index.d.ts", "line": 51, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L51" } ] } @@ -99763,7 +99763,7 @@ "fileName": "slider/index.d.ts", "line": 62, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L62" } ], "type": { @@ -99807,7 +99807,7 @@ "fileName": "slider/index.d.ts", "line": 68, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L68" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L68" } ], "type": { @@ -99847,7 +99847,7 @@ "fileName": "slider/index.d.ts", "line": 74, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L74" } ], "type": { @@ -99887,7 +99887,7 @@ "fileName": "slider/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L80" } ], "type": { @@ -99927,7 +99927,7 @@ "fileName": "slider/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L86" } ], "type": { @@ -99967,7 +99967,7 @@ "fileName": "slider/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L92" } ], "type": { @@ -99996,7 +99996,7 @@ "fileName": "slider/index.d.ts", "line": 96, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L96" } ], "type": { @@ -100040,7 +100040,7 @@ "fileName": "slider/index.d.ts", "line": 102, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L102" } ], "type": { @@ -100080,7 +100080,7 @@ "fileName": "slider/index.d.ts", "line": 108, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L108" } ], "type": { @@ -100120,7 +100120,7 @@ "fileName": "slider/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L114" } ], "type": { @@ -100160,7 +100160,7 @@ "fileName": "slider/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L120" } ], "type": { @@ -100200,7 +100200,7 @@ "fileName": "slider/index.d.ts", "line": 126, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L126" } ], "type": { @@ -100226,7 +100226,7 @@ "fileName": "slider/index.d.ts", "line": 96, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L96" } ] } @@ -100253,7 +100253,7 @@ "fileName": "slider/index.d.ts", "line": 131, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L131" } ], "type": { @@ -100297,7 +100297,7 @@ "fileName": "slider/index.d.ts", "line": 137, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L137" } ], "type": { @@ -100337,7 +100337,7 @@ "fileName": "slider/index.d.ts", "line": 143, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L143" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L143" } ], "type": { @@ -100377,7 +100377,7 @@ "fileName": "slider/index.d.ts", "line": 149, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L149" } ], "type": { @@ -100417,7 +100417,7 @@ "fileName": "slider/index.d.ts", "line": 155, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L155" } ], "type": { @@ -100457,7 +100457,7 @@ "fileName": "slider/index.d.ts", "line": 161, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L161" } ], "type": { @@ -100483,7 +100483,7 @@ "fileName": "slider/index.d.ts", "line": 131, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L131" } ] } @@ -100521,7 +100521,7 @@ "fileName": "slider/index.d.ts", "line": 168, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L168" } ], "type": { @@ -100550,7 +100550,7 @@ "fileName": "slider/index.d.ts", "line": 62, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L62" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L62" } ] } @@ -100574,7 +100574,7 @@ "fileName": "slider/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L13" } ], "extendedTypes": [ @@ -100608,7 +100608,7 @@ "fileName": "slider/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/slider/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/slider/index.d.ts#L1" } ] }, @@ -100647,7 +100647,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -100672,7 +100672,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -100710,7 +100710,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -100750,7 +100750,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -100782,7 +100782,7 @@ "fileName": "speeddial/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/speeddial/index.d.ts#L17" } ], "type": { @@ -100826,7 +100826,7 @@ "fileName": "speeddial/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/speeddial/index.d.ts#L23" } ], "type": { @@ -100866,7 +100866,7 @@ "fileName": "speeddial/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/speeddial/index.d.ts#L29" } ], "type": { @@ -100889,7 +100889,7 @@ "fileName": "speeddial/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/speeddial/index.d.ts#L17" } ] } @@ -100910,7 +100910,7 @@ "fileName": "speeddial/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/speeddial/index.d.ts#L13" } ], "extendedTypes": [ @@ -100944,7 +100944,7 @@ "fileName": "speeddial/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/speeddial/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/speeddial/index.d.ts#L1" } ] }, @@ -100983,7 +100983,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -101008,7 +101008,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -101046,7 +101046,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -101086,7 +101086,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -101118,7 +101118,7 @@ "fileName": "splitbutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L17" } ], "type": { @@ -101162,7 +101162,7 @@ "fileName": "splitbutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L23" } ], "type": { @@ -101202,7 +101202,7 @@ "fileName": "splitbutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L29" } ], "type": { @@ -101242,7 +101242,7 @@ "fileName": "splitbutton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L35" } ], "type": { @@ -101266,7 +101266,7 @@ "fileName": "splitbutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L17" } ] } @@ -101287,7 +101287,7 @@ "fileName": "splitbutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -101321,7 +101321,7 @@ "fileName": "splitbutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitbutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitbutton/index.d.ts#L1" } ] }, @@ -101360,7 +101360,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -101385,7 +101385,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -101423,7 +101423,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -101463,7 +101463,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -101495,7 +101495,7 @@ "fileName": "splitter/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L17" } ], "type": { @@ -101539,7 +101539,7 @@ "fileName": "splitter/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L23" } ], "type": { @@ -101579,7 +101579,7 @@ "fileName": "splitter/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L29" } ], "type": { @@ -101619,7 +101619,7 @@ "fileName": "splitter/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L35" } ], "type": { @@ -101659,7 +101659,7 @@ "fileName": "splitter/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L41" } ], "type": { @@ -101684,7 +101684,7 @@ "fileName": "splitter/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L17" } ] } @@ -101711,7 +101711,7 @@ "fileName": "splitter/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L46" } ], "type": { @@ -101755,7 +101755,7 @@ "fileName": "splitter/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L52" } ], "type": { @@ -101777,7 +101777,7 @@ "fileName": "splitter/index.d.ts", "line": 46, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L46" } ] } @@ -101804,7 +101804,7 @@ "fileName": "splitter/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L57" } ], "type": { @@ -101848,7 +101848,7 @@ "fileName": "splitter/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L63" } ], "type": { @@ -101888,7 +101888,7 @@ "fileName": "splitter/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L69" } ], "type": { @@ -101928,7 +101928,7 @@ "fileName": "splitter/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L75" } ], "type": { @@ -101957,7 +101957,7 @@ "fileName": "splitter/index.d.ts", "line": 79, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L79" } ], "type": { @@ -102001,7 +102001,7 @@ "fileName": "splitter/index.d.ts", "line": 85, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L85" } ], "type": { @@ -102041,7 +102041,7 @@ "fileName": "splitter/index.d.ts", "line": 91, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L91" } ], "type": { @@ -102081,7 +102081,7 @@ "fileName": "splitter/index.d.ts", "line": 97, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L97" } ], "type": { @@ -102121,7 +102121,7 @@ "fileName": "splitter/index.d.ts", "line": 103, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L103" } ], "type": { @@ -102161,7 +102161,7 @@ "fileName": "splitter/index.d.ts", "line": 109, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L109" } ], "type": { @@ -102187,7 +102187,7 @@ "fileName": "splitter/index.d.ts", "line": 79, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L79" } ] } @@ -102210,7 +102210,7 @@ "fileName": "splitter/index.d.ts", "line": 57, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L57" } ] } @@ -102233,7 +102233,7 @@ "fileName": "splitter/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L13" } ], "extendedTypes": [ @@ -102267,7 +102267,7 @@ "fileName": "splitter/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/splitter/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/splitter/index.d.ts#L1" } ] }, @@ -102306,7 +102306,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -102331,7 +102331,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -102369,7 +102369,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -102409,7 +102409,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -102441,7 +102441,7 @@ "fileName": "stepper/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L17" } ], "type": { @@ -102485,7 +102485,7 @@ "fileName": "stepper/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L23" } ], "type": { @@ -102507,7 +102507,7 @@ "fileName": "stepper/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L17" } ] } @@ -102534,7 +102534,7 @@ "fileName": "stepper/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L28" } ], "type": { @@ -102578,7 +102578,7 @@ "fileName": "stepper/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L34" } ], "type": { @@ -102618,7 +102618,7 @@ "fileName": "stepper/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L40" } ], "type": { @@ -102658,7 +102658,7 @@ "fileName": "stepper/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L46" } ], "type": { @@ -102698,7 +102698,7 @@ "fileName": "stepper/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L52" } ], "type": { @@ -102723,7 +102723,7 @@ "fileName": "stepper/index.d.ts", "line": 28, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L28" } ] } @@ -102750,7 +102750,7 @@ "fileName": "stepper/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L57" } ], "type": { @@ -102794,7 +102794,7 @@ "fileName": "stepper/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L63" } ], "type": { @@ -102834,7 +102834,7 @@ "fileName": "stepper/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L69" } ], "type": { @@ -102857,7 +102857,7 @@ "fileName": "stepper/index.d.ts", "line": 57, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L57" } ] } @@ -102884,7 +102884,7 @@ "fileName": "stepper/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L74" } ], "type": { @@ -102928,7 +102928,7 @@ "fileName": "stepper/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L80" } ], "type": { @@ -102968,7 +102968,7 @@ "fileName": "stepper/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L86" } ], "type": { @@ -102997,7 +102997,7 @@ "fileName": "stepper/index.d.ts", "line": 90, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L90" } ], "type": { @@ -103041,7 +103041,7 @@ "fileName": "stepper/index.d.ts", "line": 96, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L96" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L96" } ], "type": { @@ -103081,7 +103081,7 @@ "fileName": "stepper/index.d.ts", "line": 102, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L102" } ], "type": { @@ -103121,7 +103121,7 @@ "fileName": "stepper/index.d.ts", "line": 108, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L108" } ], "type": { @@ -103161,7 +103161,7 @@ "fileName": "stepper/index.d.ts", "line": 114, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L114" } ], "type": { @@ -103201,7 +103201,7 @@ "fileName": "stepper/index.d.ts", "line": 120, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L120" } ], "type": { @@ -103227,7 +103227,7 @@ "fileName": "stepper/index.d.ts", "line": 90, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L90" } ] } @@ -103265,7 +103265,7 @@ "fileName": "stepper/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L127" } ], "type": { @@ -103290,7 +103290,7 @@ "fileName": "stepper/index.d.ts", "line": 74, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L74" } ] } @@ -103317,7 +103317,7 @@ "fileName": "stepper/index.d.ts", "line": 132, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L132" } ], "type": { @@ -103361,7 +103361,7 @@ "fileName": "stepper/index.d.ts", "line": 138, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L138" } ], "type": { @@ -103401,7 +103401,7 @@ "fileName": "stepper/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L144" } ], "type": { @@ -103441,7 +103441,7 @@ "fileName": "stepper/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L150" } ], "type": { @@ -103465,7 +103465,7 @@ "fileName": "stepper/index.d.ts", "line": 132, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L132" } ] } @@ -103492,7 +103492,7 @@ "fileName": "stepper/index.d.ts", "line": 155, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L155" } ], "type": { @@ -103536,7 +103536,7 @@ "fileName": "stepper/index.d.ts", "line": 161, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L161" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L161" } ], "type": { @@ -103576,7 +103576,7 @@ "fileName": "stepper/index.d.ts", "line": 167, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L167" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L167" } ], "type": { @@ -103616,7 +103616,7 @@ "fileName": "stepper/index.d.ts", "line": 173, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L173" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L173" } ], "type": { @@ -103656,7 +103656,7 @@ "fileName": "stepper/index.d.ts", "line": 179, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L179" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L179" } ], "type": { @@ -103696,7 +103696,7 @@ "fileName": "stepper/index.d.ts", "line": 185, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L185" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L185" } ], "type": { @@ -103736,7 +103736,7 @@ "fileName": "stepper/index.d.ts", "line": 191, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L191" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L191" } ], "type": { @@ -103776,7 +103776,7 @@ "fileName": "stepper/index.d.ts", "line": 197, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L197" } ], "type": { @@ -103816,7 +103816,7 @@ "fileName": "stepper/index.d.ts", "line": 203, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L203" } ], "type": { @@ -103856,7 +103856,7 @@ "fileName": "stepper/index.d.ts", "line": 209, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L209" } ], "type": { @@ -103896,7 +103896,7 @@ "fileName": "stepper/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L215" } ], "type": { @@ -103936,7 +103936,7 @@ "fileName": "stepper/index.d.ts", "line": 221, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L221" } ], "type": { @@ -103968,7 +103968,7 @@ "fileName": "stepper/index.d.ts", "line": 155, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L155" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L155" } ] } @@ -103995,7 +103995,7 @@ "fileName": "stepper/index.d.ts", "line": 226, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L226" } ], "type": { @@ -104039,7 +104039,7 @@ "fileName": "stepper/index.d.ts", "line": 232, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L232" } ], "type": { @@ -104061,7 +104061,7 @@ "fileName": "stepper/index.d.ts", "line": 226, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L226" } ] } @@ -104088,7 +104088,7 @@ "fileName": "stepper/index.d.ts", "line": 237, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L237" } ], "type": { @@ -104132,7 +104132,7 @@ "fileName": "stepper/index.d.ts", "line": 243, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L243" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L243" } ], "type": { @@ -104172,7 +104172,7 @@ "fileName": "stepper/index.d.ts", "line": 249, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L249" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L249" } ], "type": { @@ -104212,7 +104212,7 @@ "fileName": "stepper/index.d.ts", "line": 255, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L255" } ], "type": { @@ -104236,7 +104236,7 @@ "fileName": "stepper/index.d.ts", "line": 237, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L237" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L237" } ] } @@ -104264,7 +104264,7 @@ "fileName": "stepper/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L13" } ], "extendedTypes": [ @@ -104298,7 +104298,7 @@ "fileName": "stepper/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/stepper/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/stepper/index.d.ts#L1" } ] }, @@ -104337,7 +104337,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -104362,7 +104362,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -104400,7 +104400,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -104440,7 +104440,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -104472,7 +104472,7 @@ "fileName": "steps/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L17" } ], "type": { @@ -104516,7 +104516,7 @@ "fileName": "steps/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L23" } ], "type": { @@ -104538,7 +104538,7 @@ "fileName": "steps/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L17" } ] } @@ -104565,7 +104565,7 @@ "fileName": "steps/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L28" } ], "type": { @@ -104609,7 +104609,7 @@ "fileName": "steps/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L34" } ], "type": { @@ -104631,7 +104631,7 @@ "fileName": "steps/index.d.ts", "line": 28, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L28" } ] } @@ -104658,7 +104658,7 @@ "fileName": "steps/index.d.ts", "line": 39, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L39" } ], "type": { @@ -104702,7 +104702,7 @@ "fileName": "steps/index.d.ts", "line": 45, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L45" } ], "type": { @@ -104731,7 +104731,7 @@ "fileName": "steps/index.d.ts", "line": 49, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L49" } ], "type": { @@ -104775,7 +104775,7 @@ "fileName": "steps/index.d.ts", "line": 55, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L55" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L55" } ], "type": { @@ -104815,7 +104815,7 @@ "fileName": "steps/index.d.ts", "line": 61, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L61" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L61" } ], "type": { @@ -104855,7 +104855,7 @@ "fileName": "steps/index.d.ts", "line": 67, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L67" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L67" } ], "type": { @@ -104895,7 +104895,7 @@ "fileName": "steps/index.d.ts", "line": 73, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L73" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L73" } ], "type": { @@ -104935,7 +104935,7 @@ "fileName": "steps/index.d.ts", "line": 79, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L79" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L79" } ], "type": { @@ -104961,7 +104961,7 @@ "fileName": "steps/index.d.ts", "line": 49, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L49" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L49" } ] } @@ -104999,7 +104999,7 @@ "fileName": "steps/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L86" } ], "type": { @@ -105023,7 +105023,7 @@ "fileName": "steps/index.d.ts", "line": 39, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L39" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L39" } ] } @@ -105050,7 +105050,7 @@ "fileName": "steps/index.d.ts", "line": 91, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L91" } ], "type": { @@ -105094,7 +105094,7 @@ "fileName": "steps/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L97" } ], "type": { @@ -105134,7 +105134,7 @@ "fileName": "steps/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L103" } ], "type": { @@ -105174,7 +105174,7 @@ "fileName": "steps/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L109" } ], "type": { @@ -105198,7 +105198,7 @@ "fileName": "steps/index.d.ts", "line": 91, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L91" } ] } @@ -105225,7 +105225,7 @@ "fileName": "steps/index.d.ts", "line": 114, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L114" } ], "type": { @@ -105269,7 +105269,7 @@ "fileName": "steps/index.d.ts", "line": 120, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L120" } ], "type": { @@ -105309,7 +105309,7 @@ "fileName": "steps/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L126" } ], "type": { @@ -105349,7 +105349,7 @@ "fileName": "steps/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L132" } ], "type": { @@ -105389,7 +105389,7 @@ "fileName": "steps/index.d.ts", "line": 138, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L138" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L138" } ], "type": { @@ -105429,7 +105429,7 @@ "fileName": "steps/index.d.ts", "line": 144, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L144" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L144" } ], "type": { @@ -105469,7 +105469,7 @@ "fileName": "steps/index.d.ts", "line": 150, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L150" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L150" } ], "type": { @@ -105509,7 +105509,7 @@ "fileName": "steps/index.d.ts", "line": 156, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L156" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L156" } ], "type": { @@ -105549,7 +105549,7 @@ "fileName": "steps/index.d.ts", "line": 162, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L162" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L162" } ], "type": { @@ -105589,7 +105589,7 @@ "fileName": "steps/index.d.ts", "line": 168, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L168" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L168" } ], "type": { @@ -105629,7 +105629,7 @@ "fileName": "steps/index.d.ts", "line": 174, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L174" } ], "type": { @@ -105669,7 +105669,7 @@ "fileName": "steps/index.d.ts", "line": 180, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L180" } ], "type": { @@ -105701,7 +105701,7 @@ "fileName": "steps/index.d.ts", "line": 114, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L114" } ] } @@ -105726,7 +105726,7 @@ "fileName": "steps/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L13" } ], "extendedTypes": [ @@ -105760,7 +105760,7 @@ "fileName": "steps/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/steps/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/steps/index.d.ts#L1" } ] }, @@ -105799,7 +105799,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -105824,7 +105824,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -105862,7 +105862,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -105902,7 +105902,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -105934,7 +105934,7 @@ "fileName": "tabmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L17" } ], "type": { @@ -105978,7 +105978,7 @@ "fileName": "tabmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L23" } ], "type": { @@ -106000,7 +106000,7 @@ "fileName": "tabmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L17" } ] } @@ -106027,7 +106027,7 @@ "fileName": "tabmenu/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L28" } ], "type": { @@ -106071,7 +106071,7 @@ "fileName": "tabmenu/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L34" } ], "type": { @@ -106111,7 +106111,7 @@ "fileName": "tabmenu/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L40" } ], "type": { @@ -106151,7 +106151,7 @@ "fileName": "tabmenu/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L46" } ], "type": { @@ -106175,7 +106175,7 @@ "fileName": "tabmenu/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L28" } ] } @@ -106202,7 +106202,7 @@ "fileName": "tabmenu/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L51" } ], "type": { @@ -106246,7 +106246,7 @@ "fileName": "tabmenu/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L57" } ], "type": { @@ -106286,7 +106286,7 @@ "fileName": "tabmenu/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L63" } ], "type": { @@ -106326,7 +106326,7 @@ "fileName": "tabmenu/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L69" } ], "type": { @@ -106366,7 +106366,7 @@ "fileName": "tabmenu/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L75" } ], "type": { @@ -106406,7 +106406,7 @@ "fileName": "tabmenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L81" } ], "type": { @@ -106446,7 +106446,7 @@ "fileName": "tabmenu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L87" } ], "type": { @@ -106486,7 +106486,7 @@ "fileName": "tabmenu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L93" } ], "type": { @@ -106526,7 +106526,7 @@ "fileName": "tabmenu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L99" } ], "type": { @@ -106566,7 +106566,7 @@ "fileName": "tabmenu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L105" } ], "type": { @@ -106606,7 +106606,7 @@ "fileName": "tabmenu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L111" } ], "type": { @@ -106646,7 +106646,7 @@ "fileName": "tabmenu/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L117" } ], "type": { @@ -106686,7 +106686,7 @@ "fileName": "tabmenu/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L123" } ], "type": { @@ -106726,7 +106726,7 @@ "fileName": "tabmenu/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L129" } ], "type": { @@ -106766,7 +106766,7 @@ "fileName": "tabmenu/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L135" } ], "type": { @@ -106795,7 +106795,7 @@ "fileName": "tabmenu/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L139" } ], "type": { @@ -106839,7 +106839,7 @@ "fileName": "tabmenu/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L145" } ], "type": { @@ -106879,7 +106879,7 @@ "fileName": "tabmenu/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L151" } ], "type": { @@ -106919,7 +106919,7 @@ "fileName": "tabmenu/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L157" } ], "type": { @@ -106959,7 +106959,7 @@ "fileName": "tabmenu/index.d.ts", "line": 163, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L163" } ], "type": { @@ -106999,7 +106999,7 @@ "fileName": "tabmenu/index.d.ts", "line": 169, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L169" } ], "type": { @@ -107025,7 +107025,7 @@ "fileName": "tabmenu/index.d.ts", "line": 139, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L139" } ] } @@ -107059,7 +107059,7 @@ "fileName": "tabmenu/index.d.ts", "line": 51, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L51" } ] } @@ -107086,7 +107086,7 @@ "fileName": "tabmenu/index.d.ts", "line": 175, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L175" } ], "type": { @@ -107130,7 +107130,7 @@ "fileName": "tabmenu/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L181" } ], "type": { @@ -107170,7 +107170,7 @@ "fileName": "tabmenu/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L187" } ], "type": { @@ -107210,7 +107210,7 @@ "fileName": "tabmenu/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L193" } ], "type": { @@ -107234,7 +107234,7 @@ "fileName": "tabmenu/index.d.ts", "line": 175, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L175" } ] } @@ -107261,7 +107261,7 @@ "fileName": "tabmenu/index.d.ts", "line": 198, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L198" } ], "type": { @@ -107305,7 +107305,7 @@ "fileName": "tabmenu/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L204" } ], "type": { @@ -107345,7 +107345,7 @@ "fileName": "tabmenu/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L210" } ], "type": { @@ -107385,7 +107385,7 @@ "fileName": "tabmenu/index.d.ts", "line": 216, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L216" } ], "type": { @@ -107409,7 +107409,7 @@ "fileName": "tabmenu/index.d.ts", "line": 198, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L198" } ] } @@ -107434,7 +107434,7 @@ "fileName": "tabmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -107468,7 +107468,7 @@ "fileName": "tabmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabmenu/index.d.ts#L1" } ] }, @@ -107507,7 +107507,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -107532,7 +107532,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -107570,7 +107570,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -107610,7 +107610,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -107642,7 +107642,7 @@ "fileName": "tabs/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L17" } ], "type": { @@ -107686,7 +107686,7 @@ "fileName": "tabs/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L23" } ], "type": { @@ -107708,7 +107708,7 @@ "fileName": "tabs/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L17" } ] } @@ -107735,7 +107735,7 @@ "fileName": "tabs/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L28" } ], "type": { @@ -107779,7 +107779,7 @@ "fileName": "tabs/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L34" } ], "type": { @@ -107819,7 +107819,7 @@ "fileName": "tabs/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L40" } ], "type": { @@ -107859,7 +107859,7 @@ "fileName": "tabs/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L46" } ], "type": { @@ -107883,7 +107883,7 @@ "fileName": "tabs/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L28" } ] } @@ -107910,7 +107910,7 @@ "fileName": "tabs/index.d.ts", "line": 51, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L51" } ], "type": { @@ -107954,7 +107954,7 @@ "fileName": "tabs/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L57" } ], "type": { @@ -107994,7 +107994,7 @@ "fileName": "tabs/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L63" } ], "type": { @@ -108034,7 +108034,7 @@ "fileName": "tabs/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L69" } ], "type": { @@ -108074,7 +108074,7 @@ "fileName": "tabs/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L75" } ], "type": { @@ -108114,7 +108114,7 @@ "fileName": "tabs/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L81" } ], "type": { @@ -108154,7 +108154,7 @@ "fileName": "tabs/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L87" } ], "type": { @@ -108194,7 +108194,7 @@ "fileName": "tabs/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L93" } ], "type": { @@ -108234,7 +108234,7 @@ "fileName": "tabs/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L99" } ], "type": { @@ -108274,7 +108274,7 @@ "fileName": "tabs/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L105" } ], "type": { @@ -108314,7 +108314,7 @@ "fileName": "tabs/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L111" } ], "type": { @@ -108354,7 +108354,7 @@ "fileName": "tabs/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L117" } ], "type": { @@ -108394,7 +108394,7 @@ "fileName": "tabs/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L123" } ], "type": { @@ -108434,7 +108434,7 @@ "fileName": "tabs/index.d.ts", "line": 129, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L129" } ], "type": { @@ -108474,7 +108474,7 @@ "fileName": "tabs/index.d.ts", "line": 135, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L135" } ], "type": { @@ -108503,7 +108503,7 @@ "fileName": "tabs/index.d.ts", "line": 139, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L139" } ], "type": { @@ -108547,7 +108547,7 @@ "fileName": "tabs/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L145" } ], "type": { @@ -108587,7 +108587,7 @@ "fileName": "tabs/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L151" } ], "type": { @@ -108627,7 +108627,7 @@ "fileName": "tabs/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L157" } ], "type": { @@ -108667,7 +108667,7 @@ "fileName": "tabs/index.d.ts", "line": 163, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L163" } ], "type": { @@ -108707,7 +108707,7 @@ "fileName": "tabs/index.d.ts", "line": 169, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L169" } ], "type": { @@ -108733,7 +108733,7 @@ "fileName": "tabs/index.d.ts", "line": 139, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L139" } ] } @@ -108767,7 +108767,7 @@ "fileName": "tabs/index.d.ts", "line": 51, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L51" } ] } @@ -108794,7 +108794,7 @@ "fileName": "tabs/index.d.ts", "line": 175, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L175" } ], "type": { @@ -108838,7 +108838,7 @@ "fileName": "tabs/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L181" } ], "type": { @@ -108878,7 +108878,7 @@ "fileName": "tabs/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L187" } ], "type": { @@ -108918,7 +108918,7 @@ "fileName": "tabs/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L193" } ], "type": { @@ -108947,7 +108947,7 @@ "fileName": "tabs/index.d.ts", "line": 197, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L197" } ], "type": { @@ -108991,7 +108991,7 @@ "fileName": "tabs/index.d.ts", "line": 203, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L203" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L203" } ], "type": { @@ -109031,7 +109031,7 @@ "fileName": "tabs/index.d.ts", "line": 209, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L209" } ], "type": { @@ -109071,7 +109071,7 @@ "fileName": "tabs/index.d.ts", "line": 215, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L215" } ], "type": { @@ -109111,7 +109111,7 @@ "fileName": "tabs/index.d.ts", "line": 221, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L221" } ], "type": { @@ -109151,7 +109151,7 @@ "fileName": "tabs/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L227" } ], "type": { @@ -109177,7 +109177,7 @@ "fileName": "tabs/index.d.ts", "line": 197, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L197" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L197" } ] } @@ -109200,7 +109200,7 @@ "fileName": "tabs/index.d.ts", "line": 175, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L175" } ] } @@ -109227,7 +109227,7 @@ "fileName": "tabs/index.d.ts", "line": 233, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L233" } ], "type": { @@ -109271,7 +109271,7 @@ "fileName": "tabs/index.d.ts", "line": 239, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L239" } ], "type": { @@ -109311,7 +109311,7 @@ "fileName": "tabs/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L245" } ], "type": { @@ -109351,7 +109351,7 @@ "fileName": "tabs/index.d.ts", "line": 251, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L251" } ], "type": { @@ -109391,7 +109391,7 @@ "fileName": "tabs/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L257" } ], "type": { @@ -109420,7 +109420,7 @@ "fileName": "tabs/index.d.ts", "line": 261, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L261" } ], "type": { @@ -109464,7 +109464,7 @@ "fileName": "tabs/index.d.ts", "line": 267, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L267" } ], "type": { @@ -109504,7 +109504,7 @@ "fileName": "tabs/index.d.ts", "line": 273, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L273" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L273" } ], "type": { @@ -109544,7 +109544,7 @@ "fileName": "tabs/index.d.ts", "line": 279, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L279" } ], "type": { @@ -109584,7 +109584,7 @@ "fileName": "tabs/index.d.ts", "line": 285, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L285" } ], "type": { @@ -109624,7 +109624,7 @@ "fileName": "tabs/index.d.ts", "line": 291, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L291" } ], "type": { @@ -109650,7 +109650,7 @@ "fileName": "tabs/index.d.ts", "line": 261, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L261" } ] } @@ -109688,7 +109688,7 @@ "fileName": "tabs/index.d.ts", "line": 298, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L298" } ], "type": { @@ -109715,7 +109715,7 @@ "fileName": "tabs/index.d.ts", "line": 233, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L233" } ] } @@ -109742,7 +109742,7 @@ "fileName": "tabs/index.d.ts", "line": 303, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L303" } ], "type": { @@ -109786,7 +109786,7 @@ "fileName": "tabs/index.d.ts", "line": 309, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L309" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L309" } ], "type": { @@ -109826,7 +109826,7 @@ "fileName": "tabs/index.d.ts", "line": 315, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L315" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L315" } ], "type": { @@ -109866,7 +109866,7 @@ "fileName": "tabs/index.d.ts", "line": 321, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L321" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L321" } ], "type": { @@ -109890,7 +109890,7 @@ "fileName": "tabs/index.d.ts", "line": 303, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L303" } ] } @@ -109916,7 +109916,7 @@ "fileName": "tabs/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L13" } ], "extendedTypes": [ @@ -109950,7 +109950,7 @@ "fileName": "tabs/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabs/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabs/index.d.ts#L1" } ] }, @@ -109989,7 +109989,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -110014,7 +110014,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -110052,7 +110052,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -110092,7 +110092,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -110124,7 +110124,7 @@ "fileName": "tabview/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L17" } ], "type": { @@ -110168,7 +110168,7 @@ "fileName": "tabview/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L23" } ], "type": { @@ -110190,7 +110190,7 @@ "fileName": "tabview/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L17" } ] } @@ -110217,7 +110217,7 @@ "fileName": "tabview/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L28" } ], "type": { @@ -110261,7 +110261,7 @@ "fileName": "tabview/index.d.ts", "line": 34, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L34" } ], "type": { @@ -110301,7 +110301,7 @@ "fileName": "tabview/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L40" } ], "type": { @@ -110324,7 +110324,7 @@ "fileName": "tabview/index.d.ts", "line": 28, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L28" } ] } @@ -110351,7 +110351,7 @@ "fileName": "tabview/index.d.ts", "line": 45, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L45" } ], "type": { @@ -110395,7 +110395,7 @@ "fileName": "tabview/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L51" } ], "type": { @@ -110435,7 +110435,7 @@ "fileName": "tabview/index.d.ts", "line": 57, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L57" } ], "type": { @@ -110475,7 +110475,7 @@ "fileName": "tabview/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L63" } ], "type": { @@ -110515,7 +110515,7 @@ "fileName": "tabview/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L69" } ], "type": { @@ -110555,7 +110555,7 @@ "fileName": "tabview/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L75" } ], "type": { @@ -110581,7 +110581,7 @@ "fileName": "tabview/index.d.ts", "line": 45, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L45" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L45" } ] } @@ -110608,7 +110608,7 @@ "fileName": "tabview/index.d.ts", "line": 80, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L80" } ], "type": { @@ -110652,7 +110652,7 @@ "fileName": "tabview/index.d.ts", "line": 86, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L86" } ], "type": { @@ -110692,7 +110692,7 @@ "fileName": "tabview/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L92" } ], "type": { @@ -110715,7 +110715,7 @@ "fileName": "tabview/index.d.ts", "line": 80, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L80" } ] } @@ -110742,7 +110742,7 @@ "fileName": "tabview/index.d.ts", "line": 97, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L97" } ], "type": { @@ -110786,7 +110786,7 @@ "fileName": "tabview/index.d.ts", "line": 103, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L103" } ], "type": { @@ -110826,7 +110826,7 @@ "fileName": "tabview/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L109" } ], "type": { @@ -110866,7 +110866,7 @@ "fileName": "tabview/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L115" } ], "type": { @@ -110906,7 +110906,7 @@ "fileName": "tabview/index.d.ts", "line": 121, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L121" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L121" } ], "type": { @@ -110931,7 +110931,7 @@ "fileName": "tabview/index.d.ts", "line": 97, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L97" } ] } @@ -110956,7 +110956,7 @@ "fileName": "tabview/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L13" } ], "extendedTypes": [ @@ -110990,7 +110990,7 @@ "fileName": "tabview/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tabview/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tabview/index.d.ts#L1" } ] }, @@ -111029,7 +111029,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -111054,7 +111054,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -111092,7 +111092,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -111132,7 +111132,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -111164,7 +111164,7 @@ "fileName": "tag/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L17" } ], "type": { @@ -111208,7 +111208,7 @@ "fileName": "tag/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L23" } ], "type": { @@ -111248,7 +111248,7 @@ "fileName": "tag/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L29" } ], "type": { @@ -111288,7 +111288,7 @@ "fileName": "tag/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L35" } ], "type": { @@ -111328,7 +111328,7 @@ "fileName": "tag/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L41" } ], "type": { @@ -111368,7 +111368,7 @@ "fileName": "tag/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L47" } ], "type": { @@ -111408,7 +111408,7 @@ "fileName": "tag/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L53" } ], "type": { @@ -111435,7 +111435,7 @@ "fileName": "tag/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L17" } ] } @@ -111462,7 +111462,7 @@ "fileName": "tag/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L58" } ], "type": { @@ -111506,7 +111506,7 @@ "fileName": "tag/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L64" } ], "type": { @@ -111528,7 +111528,7 @@ "fileName": "tag/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L58" } ] } @@ -111555,7 +111555,7 @@ "fileName": "tag/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L69" } ], "type": { @@ -111599,7 +111599,7 @@ "fileName": "tag/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L75" } ], "type": { @@ -111639,7 +111639,7 @@ "fileName": "tag/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L81" } ], "type": { @@ -111662,7 +111662,7 @@ "fileName": "tag/index.d.ts", "line": 69, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L69" } ] } @@ -111689,7 +111689,7 @@ "fileName": "tag/index.d.ts", "line": 86, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L86" } ], "type": { @@ -111733,7 +111733,7 @@ "fileName": "tag/index.d.ts", "line": 92, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L92" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L92" } ], "type": { @@ -111773,7 +111773,7 @@ "fileName": "tag/index.d.ts", "line": 98, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L98" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L98" } ], "type": { @@ -111796,7 +111796,7 @@ "fileName": "tag/index.d.ts", "line": 86, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L86" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L86" } ] } @@ -111823,7 +111823,7 @@ "fileName": "tag/index.d.ts", "line": 103, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L103" } ], "type": { @@ -111867,7 +111867,7 @@ "fileName": "tag/index.d.ts", "line": 109, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L109" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L109" } ], "type": { @@ -111907,7 +111907,7 @@ "fileName": "tag/index.d.ts", "line": 115, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L115" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L115" } ], "type": { @@ -111930,7 +111930,7 @@ "fileName": "tag/index.d.ts", "line": 103, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L103" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L103" } ] } @@ -111957,7 +111957,7 @@ "fileName": "tag/index.d.ts", "line": 120, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L120" } ], "type": { @@ -112001,7 +112001,7 @@ "fileName": "tag/index.d.ts", "line": 126, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L126" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L126" } ], "type": { @@ -112041,7 +112041,7 @@ "fileName": "tag/index.d.ts", "line": 132, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L132" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L132" } ], "type": { @@ -112064,7 +112064,7 @@ "fileName": "tag/index.d.ts", "line": 120, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L120" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L120" } ] } @@ -112091,7 +112091,7 @@ "fileName": "tag/index.d.ts", "line": 137, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L137" } ], "type": { @@ -112135,7 +112135,7 @@ "fileName": "tag/index.d.ts", "line": 143, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L143" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L143" } ], "type": { @@ -112175,7 +112175,7 @@ "fileName": "tag/index.d.ts", "line": 149, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L149" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L149" } ], "type": { @@ -112198,7 +112198,7 @@ "fileName": "tag/index.d.ts", "line": 137, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L137" } ] } @@ -112225,7 +112225,7 @@ "fileName": "tag/index.d.ts", "line": 154, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L154" } ], "type": { @@ -112269,7 +112269,7 @@ "fileName": "tag/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L160" } ], "type": { @@ -112309,7 +112309,7 @@ "fileName": "tag/index.d.ts", "line": 166, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L166" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L166" } ], "type": { @@ -112332,7 +112332,7 @@ "fileName": "tag/index.d.ts", "line": 154, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L154" } ] } @@ -112359,7 +112359,7 @@ "fileName": "tag/index.d.ts", "line": 171, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L171" } ], "type": { @@ -112403,7 +112403,7 @@ "fileName": "tag/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L177" } ], "type": { @@ -112443,7 +112443,7 @@ "fileName": "tag/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L183" } ], "type": { @@ -112466,7 +112466,7 @@ "fileName": "tag/index.d.ts", "line": 171, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L171" } ] } @@ -112495,7 +112495,7 @@ "fileName": "tag/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L13" } ], "extendedTypes": [ @@ -112529,7 +112529,7 @@ "fileName": "tag/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tag/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tag/index.d.ts#L1" } ] }, @@ -112568,7 +112568,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -112593,7 +112593,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -112631,7 +112631,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -112671,7 +112671,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -112703,7 +112703,7 @@ "fileName": "terminal/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L17" } ], "type": { @@ -112747,7 +112747,7 @@ "fileName": "terminal/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L23" } ], "type": { @@ -112787,7 +112787,7 @@ "fileName": "terminal/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L29" } ], "type": { @@ -112827,7 +112827,7 @@ "fileName": "terminal/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L35" } ], "type": { @@ -112867,7 +112867,7 @@ "fileName": "terminal/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L41" } ], "type": { @@ -112907,7 +112907,7 @@ "fileName": "terminal/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L47" } ], "type": { @@ -112947,7 +112947,7 @@ "fileName": "terminal/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L53" } ], "type": { @@ -112974,7 +112974,7 @@ "fileName": "terminal/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L17" } ] } @@ -113001,7 +113001,7 @@ "fileName": "terminal/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L58" } ], "type": { @@ -113045,7 +113045,7 @@ "fileName": "terminal/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L64" } ], "type": { @@ -113067,7 +113067,7 @@ "fileName": "terminal/index.d.ts", "line": 58, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L58" } ] } @@ -113094,7 +113094,7 @@ "fileName": "terminal/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L69" } ], "type": { @@ -113138,7 +113138,7 @@ "fileName": "terminal/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L75" } ], "type": { @@ -113160,7 +113160,7 @@ "fileName": "terminal/index.d.ts", "line": 69, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L69" } ] } @@ -113183,7 +113183,7 @@ "fileName": "terminal/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L13" } ], "extendedTypes": [ @@ -113217,7 +113217,7 @@ "fileName": "terminal/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/terminal/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/terminal/index.d.ts#L1" } ] }, @@ -113256,7 +113256,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -113281,7 +113281,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -113319,7 +113319,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -113359,7 +113359,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -113391,7 +113391,7 @@ "fileName": "textarea/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L17" } ], "type": { @@ -113435,7 +113435,7 @@ "fileName": "textarea/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L23" } ], "type": { @@ -113475,7 +113475,7 @@ "fileName": "textarea/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L29" } ], "type": { @@ -113515,7 +113515,7 @@ "fileName": "textarea/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L35" } ], "type": { @@ -113555,7 +113555,7 @@ "fileName": "textarea/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L41" } ], "type": { @@ -113595,7 +113595,7 @@ "fileName": "textarea/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L47" } ], "type": { @@ -113635,7 +113635,7 @@ "fileName": "textarea/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L53" } ], "type": { @@ -113675,7 +113675,7 @@ "fileName": "textarea/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L59" } ], "type": { @@ -113715,7 +113715,7 @@ "fileName": "textarea/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L65" } ], "type": { @@ -113755,7 +113755,7 @@ "fileName": "textarea/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L71" } ], "type": { @@ -113795,7 +113795,7 @@ "fileName": "textarea/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L77" } ], "type": { @@ -113835,7 +113835,7 @@ "fileName": "textarea/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L83" } ], "type": { @@ -113875,7 +113875,7 @@ "fileName": "textarea/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L89" } ], "type": { @@ -113915,7 +113915,7 @@ "fileName": "textarea/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L95" } ], "type": { @@ -113955,7 +113955,7 @@ "fileName": "textarea/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L101" } ], "type": { @@ -113995,7 +113995,7 @@ "fileName": "textarea/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L107" } ], "type": { @@ -114024,7 +114024,7 @@ "fileName": "textarea/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L111" } ], "type": { @@ -114068,7 +114068,7 @@ "fileName": "textarea/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L117" } ], "type": { @@ -114108,7 +114108,7 @@ "fileName": "textarea/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L123" } ], "type": { @@ -114148,7 +114148,7 @@ "fileName": "textarea/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L129" } ], "type": { @@ -114188,7 +114188,7 @@ "fileName": "textarea/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L135" } ], "type": { @@ -114228,7 +114228,7 @@ "fileName": "textarea/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L141" } ], "type": { @@ -114254,7 +114254,7 @@ "fileName": "textarea/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L111" } ] } @@ -114292,7 +114292,7 @@ "fileName": "textarea/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L148" } ], "type": { @@ -114330,7 +114330,7 @@ "fileName": "textarea/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L17" } ] } @@ -114351,7 +114351,7 @@ "fileName": "textarea/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L13" } ], "extendedTypes": [ @@ -114385,7 +114385,7 @@ "fileName": "textarea/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/textarea/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/textarea/index.d.ts#L1" } ] }, @@ -114424,7 +114424,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -114449,7 +114449,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -114487,7 +114487,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -114527,7 +114527,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -114559,7 +114559,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" } ], "type": { @@ -114603,7 +114603,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L23" } ], "type": { @@ -114643,7 +114643,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L29" } ], "type": { @@ -114683,7 +114683,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L35" } ], "type": { @@ -114723,7 +114723,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L41" } ], "type": { @@ -114763,7 +114763,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L47" } ], "type": { @@ -114803,7 +114803,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L53" } ], "type": { @@ -114830,7 +114830,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L17" } ] } @@ -114857,7 +114857,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" } ], "type": { @@ -114901,7 +114901,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L64" } ], "type": { @@ -114941,7 +114941,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L70" } ], "type": { @@ -114964,7 +114964,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L58" } ] } @@ -114991,7 +114991,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 75, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" } ], "type": { @@ -115035,7 +115035,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L81" } ], "type": { @@ -115075,7 +115075,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L87" } ], "type": { @@ -115115,7 +115115,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L93" } ], "type": { @@ -115155,7 +115155,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L99" } ], "type": { @@ -115195,7 +115195,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L105" } ], "type": { @@ -115235,7 +115235,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L111" } ], "type": { @@ -115275,7 +115275,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L117" } ], "type": { @@ -115315,7 +115315,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L123" } ], "type": { @@ -115344,7 +115344,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" } ], "type": { @@ -115388,7 +115388,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L133" } ], "type": { @@ -115428,7 +115428,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L139" } ], "type": { @@ -115468,7 +115468,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L145" } ], "type": { @@ -115492,7 +115492,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 127, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L127" } ] } @@ -115520,7 +115520,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 75, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L75" } ] } @@ -115547,7 +115547,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 151, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" } ], "type": { @@ -115591,7 +115591,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 157, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L157" } ], "type": { @@ -115631,7 +115631,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 163, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L163" } ], "type": { @@ -115671,7 +115671,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L169" } ], "type": { @@ -115711,7 +115711,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L175" } ], "type": { @@ -115736,7 +115736,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 151, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L151" } ] } @@ -115763,7 +115763,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 180, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" } ], "type": { @@ -115807,7 +115807,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L186" } ], "type": { @@ -115847,7 +115847,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L192" } ], "type": { @@ -115887,7 +115887,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L198" } ], "type": { @@ -115927,7 +115927,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L204" } ], "type": { @@ -115952,7 +115952,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 180, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L180" } ] } @@ -115979,7 +115979,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 209, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" } ], "type": { @@ -116023,7 +116023,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L215" } ], "type": { @@ -116045,7 +116045,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 209, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L209" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L209" } ] } @@ -116071,7 +116071,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L13" } ], "extendedTypes": [ @@ -116105,7 +116105,7 @@ "fileName": "tieredmenu/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tieredmenu/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tieredmenu/index.d.ts#L1" } ] }, @@ -116144,7 +116144,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -116169,7 +116169,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -116207,7 +116207,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -116247,7 +116247,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -116279,7 +116279,7 @@ "fileName": "timeline/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L17" } ], "type": { @@ -116323,7 +116323,7 @@ "fileName": "timeline/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L23" } ], "type": { @@ -116345,7 +116345,7 @@ "fileName": "timeline/index.d.ts", "line": 17, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L17" } ] } @@ -116372,7 +116372,7 @@ "fileName": "timeline/index.d.ts", "line": 28, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L28" } ], "type": { @@ -116405,7 +116405,7 @@ "fileName": "timeline/index.d.ts", "line": 32, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L32" } ], "type": { @@ -116449,7 +116449,7 @@ "fileName": "timeline/index.d.ts", "line": 38, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L38" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L38" } ], "type": { @@ -116471,7 +116471,7 @@ "fileName": "timeline/index.d.ts", "line": 32, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L32" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L32" } ] } @@ -116491,7 +116491,7 @@ "fileName": "timeline/index.d.ts", "line": 28, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L28" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L28" } ] } @@ -116518,7 +116518,7 @@ "fileName": "timeline/index.d.ts", "line": 44, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L44" } ], "type": { @@ -116551,7 +116551,7 @@ "fileName": "timeline/index.d.ts", "line": 48, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L48" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L48" } ], "type": { @@ -116595,7 +116595,7 @@ "fileName": "timeline/index.d.ts", "line": 54, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L54" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L54" } ], "type": { @@ -116617,7 +116617,7 @@ "fileName": "timeline/index.d.ts", "line": 48, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L48" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L48" } ] } @@ -116637,7 +116637,7 @@ "fileName": "timeline/index.d.ts", "line": 44, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L44" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L44" } ] } @@ -116664,7 +116664,7 @@ "fileName": "timeline/index.d.ts", "line": 60, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L60" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L60" } ], "type": { @@ -116708,7 +116708,7 @@ "fileName": "timeline/index.d.ts", "line": 66, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L66" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L66" } ], "type": { @@ -116748,7 +116748,7 @@ "fileName": "timeline/index.d.ts", "line": 72, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L72" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L72" } ], "type": { @@ -116788,7 +116788,7 @@ "fileName": "timeline/index.d.ts", "line": 78, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L78" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L78" } ], "type": { @@ -116828,7 +116828,7 @@ "fileName": "timeline/index.d.ts", "line": 84, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L84" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L84" } ], "type": { @@ -116868,7 +116868,7 @@ "fileName": "timeline/index.d.ts", "line": 90, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L90" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L90" } ], "type": { @@ -116897,7 +116897,7 @@ "fileName": "timeline/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L94" } ], "type": { @@ -116941,7 +116941,7 @@ "fileName": "timeline/index.d.ts", "line": 100, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L100" } ], "type": { @@ -116981,7 +116981,7 @@ "fileName": "timeline/index.d.ts", "line": 106, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L106" } ], "type": { @@ -117021,7 +117021,7 @@ "fileName": "timeline/index.d.ts", "line": 112, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L112" } ], "type": { @@ -117061,7 +117061,7 @@ "fileName": "timeline/index.d.ts", "line": 118, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L118" } ], "type": { @@ -117086,7 +117086,7 @@ "fileName": "timeline/index.d.ts", "line": 94, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L94" } ] } @@ -117111,7 +117111,7 @@ "fileName": "timeline/index.d.ts", "line": 60, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L60" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L60" } ] } @@ -117138,7 +117138,7 @@ "fileName": "timeline/index.d.ts", "line": 124, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L124" } ], "type": { @@ -117182,7 +117182,7 @@ "fileName": "timeline/index.d.ts", "line": 130, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L130" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L130" } ], "type": { @@ -117222,7 +117222,7 @@ "fileName": "timeline/index.d.ts", "line": 136, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L136" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L136" } ], "type": { @@ -117245,7 +117245,7 @@ "fileName": "timeline/index.d.ts", "line": 124, "character": 21, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L124" } ] } @@ -117270,7 +117270,7 @@ "fileName": "timeline/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L13" } ], "extendedTypes": [ @@ -117304,7 +117304,7 @@ "fileName": "timeline/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/timeline/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/timeline/index.d.ts#L1" } ] }, @@ -117343,7 +117343,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -117368,7 +117368,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -117406,7 +117406,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -117446,7 +117446,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -117478,7 +117478,7 @@ "fileName": "toast/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L17" } ], "type": { @@ -117522,7 +117522,7 @@ "fileName": "toast/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L23" } ], "type": { @@ -117562,7 +117562,7 @@ "fileName": "toast/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L29" } ], "type": { @@ -117602,7 +117602,7 @@ "fileName": "toast/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L35" } ], "type": { @@ -117642,7 +117642,7 @@ "fileName": "toast/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L41" } ], "type": { @@ -117667,7 +117667,7 @@ "fileName": "toast/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L17" } ] } @@ -117694,7 +117694,7 @@ "fileName": "toast/index.d.ts", "line": 46, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L46" } ], "type": { @@ -117738,7 +117738,7 @@ "fileName": "toast/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L52" } ], "type": { @@ -117760,7 +117760,7 @@ "fileName": "toast/index.d.ts", "line": 46, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L46" } ] } @@ -117787,7 +117787,7 @@ "fileName": "toast/index.d.ts", "line": 57, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L57" } ], "type": { @@ -117831,7 +117831,7 @@ "fileName": "toast/index.d.ts", "line": 63, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L63" } ], "type": { @@ -117871,7 +117871,7 @@ "fileName": "toast/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L69" } ], "type": { @@ -117894,7 +117894,7 @@ "fileName": "toast/index.d.ts", "line": 57, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L57" } ] } @@ -117921,7 +117921,7 @@ "fileName": "toast/index.d.ts", "line": 74, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L74" } ], "type": { @@ -117965,7 +117965,7 @@ "fileName": "toast/index.d.ts", "line": 80, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L80" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L80" } ], "type": { @@ -117987,7 +117987,7 @@ "fileName": "toast/index.d.ts", "line": 74, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L74" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L74" } ] } @@ -118014,7 +118014,7 @@ "fileName": "toast/index.d.ts", "line": 85, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L85" } ], "type": { @@ -118058,7 +118058,7 @@ "fileName": "toast/index.d.ts", "line": 91, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L91" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L91" } ], "type": { @@ -118098,7 +118098,7 @@ "fileName": "toast/index.d.ts", "line": 97, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L97" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L97" } ], "type": { @@ -118121,7 +118121,7 @@ "fileName": "toast/index.d.ts", "line": 85, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L85" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L85" } ] } @@ -118148,7 +118148,7 @@ "fileName": "toast/index.d.ts", "line": 102, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L102" } ], "type": { @@ -118192,7 +118192,7 @@ "fileName": "toast/index.d.ts", "line": 108, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L108" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L108" } ], "type": { @@ -118232,7 +118232,7 @@ "fileName": "toast/index.d.ts", "line": 114, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L114" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L114" } ], "type": { @@ -118255,7 +118255,7 @@ "fileName": "toast/index.d.ts", "line": 102, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L102" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L102" } ] } @@ -118282,7 +118282,7 @@ "fileName": "toast/index.d.ts", "line": 119, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L119" } ], "type": { @@ -118326,7 +118326,7 @@ "fileName": "toast/index.d.ts", "line": 125, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L125" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L125" } ], "type": { @@ -118366,7 +118366,7 @@ "fileName": "toast/index.d.ts", "line": 131, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L131" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L131" } ], "type": { @@ -118406,7 +118406,7 @@ "fileName": "toast/index.d.ts", "line": 137, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L137" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L137" } ], "type": { @@ -118435,7 +118435,7 @@ "fileName": "toast/index.d.ts", "line": 141, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L141" } ], "type": { @@ -118479,7 +118479,7 @@ "fileName": "toast/index.d.ts", "line": 147, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L147" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L147" } ], "type": { @@ -118519,7 +118519,7 @@ "fileName": "toast/index.d.ts", "line": 153, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L153" } ], "type": { @@ -118559,7 +118559,7 @@ "fileName": "toast/index.d.ts", "line": 159, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L159" } ], "type": { @@ -118583,7 +118583,7 @@ "fileName": "toast/index.d.ts", "line": 141, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L141" } ] } @@ -118606,7 +118606,7 @@ "fileName": "toast/index.d.ts", "line": 119, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L119" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L119" } ] } @@ -118633,7 +118633,7 @@ "fileName": "toast/index.d.ts", "line": 165, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L165" } ], "type": { @@ -118677,7 +118677,7 @@ "fileName": "toast/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L171" } ], "type": { @@ -118699,7 +118699,7 @@ "fileName": "toast/index.d.ts", "line": 165, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L165" } ] } @@ -118726,7 +118726,7 @@ "fileName": "toast/index.d.ts", "line": 176, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L176" } ], "type": { @@ -118770,7 +118770,7 @@ "fileName": "toast/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L182" } ], "type": { @@ -118810,7 +118810,7 @@ "fileName": "toast/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L188" } ], "type": { @@ -118850,7 +118850,7 @@ "fileName": "toast/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L194" } ], "type": { @@ -118890,7 +118890,7 @@ "fileName": "toast/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L200" } ], "type": { @@ -118930,7 +118930,7 @@ "fileName": "toast/index.d.ts", "line": 206, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L206" } ], "type": { @@ -118956,7 +118956,7 @@ "fileName": "toast/index.d.ts", "line": 176, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L176" } ] } @@ -118983,7 +118983,7 @@ "fileName": "toast/index.d.ts", "line": 211, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L211" } ], "type": { @@ -119027,7 +119027,7 @@ "fileName": "toast/index.d.ts", "line": 217, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L217" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L217" } ], "type": { @@ -119067,7 +119067,7 @@ "fileName": "toast/index.d.ts", "line": 223, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L223" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L223" } ], "type": { @@ -119107,7 +119107,7 @@ "fileName": "toast/index.d.ts", "line": 229, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L229" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L229" } ], "type": { @@ -119147,7 +119147,7 @@ "fileName": "toast/index.d.ts", "line": 235, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L235" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L235" } ], "type": { @@ -119187,7 +119187,7 @@ "fileName": "toast/index.d.ts", "line": 241, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L241" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L241" } ], "type": { @@ -119216,7 +119216,7 @@ "fileName": "toast/index.d.ts", "line": 245, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L245" } ], "type": { @@ -119260,7 +119260,7 @@ "fileName": "toast/index.d.ts", "line": 251, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L251" } ], "type": { @@ -119289,7 +119289,7 @@ "fileName": "toast/index.d.ts", "line": 255, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L255" } ], "type": { @@ -119333,7 +119333,7 @@ "fileName": "toast/index.d.ts", "line": 261, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L261" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L261" } ], "type": { @@ -119373,7 +119373,7 @@ "fileName": "toast/index.d.ts", "line": 267, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L267" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L267" } ], "type": { @@ -119396,7 +119396,7 @@ "fileName": "toast/index.d.ts", "line": 255, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L255" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L255" } ] } @@ -119417,7 +119417,7 @@ "fileName": "toast/index.d.ts", "line": 245, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L245" } ] } @@ -119442,7 +119442,7 @@ "fileName": "toast/index.d.ts", "line": 211, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L211" } ] } @@ -119469,7 +119469,7 @@ "fileName": "toast/index.d.ts", "line": 274, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L274" } ], "type": { @@ -119513,7 +119513,7 @@ "fileName": "toast/index.d.ts", "line": 280, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L280" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L280" } ], "type": { @@ -119553,7 +119553,7 @@ "fileName": "toast/index.d.ts", "line": 286, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L286" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L286" } ], "type": { @@ -119593,7 +119593,7 @@ "fileName": "toast/index.d.ts", "line": 292, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L292" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L292" } ], "type": { @@ -119633,7 +119633,7 @@ "fileName": "toast/index.d.ts", "line": 298, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L298" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L298" } ], "type": { @@ -119673,7 +119673,7 @@ "fileName": "toast/index.d.ts", "line": 304, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L304" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L304" } ], "type": { @@ -119702,7 +119702,7 @@ "fileName": "toast/index.d.ts", "line": 308, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L308" } ], "type": { @@ -119746,7 +119746,7 @@ "fileName": "toast/index.d.ts", "line": 314, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L314" } ], "type": { @@ -119775,7 +119775,7 @@ "fileName": "toast/index.d.ts", "line": 318, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L318" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L318" } ], "type": { @@ -119819,7 +119819,7 @@ "fileName": "toast/index.d.ts", "line": 324, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L324" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L324" } ], "type": { @@ -119859,7 +119859,7 @@ "fileName": "toast/index.d.ts", "line": 330, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L330" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L330" } ], "type": { @@ -119882,7 +119882,7 @@ "fileName": "toast/index.d.ts", "line": 318, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L318" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L318" } ] } @@ -119903,7 +119903,7 @@ "fileName": "toast/index.d.ts", "line": 308, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L308" } ] } @@ -119928,7 +119928,7 @@ "fileName": "toast/index.d.ts", "line": 274, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L274" } ] } @@ -119955,7 +119955,7 @@ "fileName": "toast/index.d.ts", "line": 337, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L337" } ], "type": { @@ -119999,7 +119999,7 @@ "fileName": "toast/index.d.ts", "line": 343, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L343" } ], "type": { @@ -120039,7 +120039,7 @@ "fileName": "toast/index.d.ts", "line": 349, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L349" } ], "type": { @@ -120079,7 +120079,7 @@ "fileName": "toast/index.d.ts", "line": 355, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L355" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L355" } ], "type": { @@ -120119,7 +120119,7 @@ "fileName": "toast/index.d.ts", "line": 361, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L361" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L361" } ], "type": { @@ -120159,7 +120159,7 @@ "fileName": "toast/index.d.ts", "line": 367, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L367" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L367" } ], "type": { @@ -120188,7 +120188,7 @@ "fileName": "toast/index.d.ts", "line": 371, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L371" } ], "type": { @@ -120232,7 +120232,7 @@ "fileName": "toast/index.d.ts", "line": 377, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L377" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L377" } ], "type": { @@ -120261,7 +120261,7 @@ "fileName": "toast/index.d.ts", "line": 381, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L381" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L381" } ], "type": { @@ -120305,7 +120305,7 @@ "fileName": "toast/index.d.ts", "line": 387, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L387" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L387" } ], "type": { @@ -120345,7 +120345,7 @@ "fileName": "toast/index.d.ts", "line": 393, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L393" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L393" } ], "type": { @@ -120368,7 +120368,7 @@ "fileName": "toast/index.d.ts", "line": 381, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L381" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L381" } ] } @@ -120389,7 +120389,7 @@ "fileName": "toast/index.d.ts", "line": 371, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L371" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L371" } ] } @@ -120414,7 +120414,7 @@ "fileName": "toast/index.d.ts", "line": 337, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L337" } ] } @@ -120441,7 +120441,7 @@ "fileName": "toast/index.d.ts", "line": 400, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L400" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L400" } ], "type": { @@ -120485,7 +120485,7 @@ "fileName": "toast/index.d.ts", "line": 406, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L406" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L406" } ], "type": { @@ -120525,7 +120525,7 @@ "fileName": "toast/index.d.ts", "line": 412, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L412" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L412" } ], "type": { @@ -120565,7 +120565,7 @@ "fileName": "toast/index.d.ts", "line": 418, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L418" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L418" } ], "type": { @@ -120605,7 +120605,7 @@ "fileName": "toast/index.d.ts", "line": 424, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L424" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L424" } ], "type": { @@ -120645,7 +120645,7 @@ "fileName": "toast/index.d.ts", "line": 430, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L430" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L430" } ], "type": { @@ -120674,7 +120674,7 @@ "fileName": "toast/index.d.ts", "line": 434, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L434" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L434" } ], "type": { @@ -120718,7 +120718,7 @@ "fileName": "toast/index.d.ts", "line": 440, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L440" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L440" } ], "type": { @@ -120747,7 +120747,7 @@ "fileName": "toast/index.d.ts", "line": 444, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L444" } ], "type": { @@ -120791,7 +120791,7 @@ "fileName": "toast/index.d.ts", "line": 450, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L450" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L450" } ], "type": { @@ -120831,7 +120831,7 @@ "fileName": "toast/index.d.ts", "line": 456, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L456" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L456" } ], "type": { @@ -120854,7 +120854,7 @@ "fileName": "toast/index.d.ts", "line": 444, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L444" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L444" } ] } @@ -120875,7 +120875,7 @@ "fileName": "toast/index.d.ts", "line": 434, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L434" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L434" } ] } @@ -120900,7 +120900,7 @@ "fileName": "toast/index.d.ts", "line": 400, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L400" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L400" } ] } @@ -120927,7 +120927,7 @@ "fileName": "toast/index.d.ts", "line": 463, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L463" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L463" } ], "type": { @@ -120971,7 +120971,7 @@ "fileName": "toast/index.d.ts", "line": 469, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L469" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L469" } ], "type": { @@ -121011,7 +121011,7 @@ "fileName": "toast/index.d.ts", "line": 475, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L475" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L475" } ], "type": { @@ -121051,7 +121051,7 @@ "fileName": "toast/index.d.ts", "line": 481, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L481" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L481" } ], "type": { @@ -121091,7 +121091,7 @@ "fileName": "toast/index.d.ts", "line": 487, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L487" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L487" } ], "type": { @@ -121131,7 +121131,7 @@ "fileName": "toast/index.d.ts", "line": 493, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L493" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L493" } ], "type": { @@ -121160,7 +121160,7 @@ "fileName": "toast/index.d.ts", "line": 497, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L497" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L497" } ], "type": { @@ -121204,7 +121204,7 @@ "fileName": "toast/index.d.ts", "line": 503, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L503" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L503" } ], "type": { @@ -121233,7 +121233,7 @@ "fileName": "toast/index.d.ts", "line": 507, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L507" } ], "type": { @@ -121277,7 +121277,7 @@ "fileName": "toast/index.d.ts", "line": 513, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L513" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L513" } ], "type": { @@ -121317,7 +121317,7 @@ "fileName": "toast/index.d.ts", "line": 519, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L519" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L519" } ], "type": { @@ -121340,7 +121340,7 @@ "fileName": "toast/index.d.ts", "line": 507, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L507" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L507" } ] } @@ -121361,7 +121361,7 @@ "fileName": "toast/index.d.ts", "line": 497, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L497" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L497" } ] } @@ -121386,7 +121386,7 @@ "fileName": "toast/index.d.ts", "line": 463, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L463" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L463" } ] } @@ -121413,7 +121413,7 @@ "fileName": "toast/index.d.ts", "line": 526, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L526" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L526" } ], "type": { @@ -121457,7 +121457,7 @@ "fileName": "toast/index.d.ts", "line": 532, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L532" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L532" } ], "type": { @@ -121497,7 +121497,7 @@ "fileName": "toast/index.d.ts", "line": 538, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L538" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L538" } ], "type": { @@ -121537,7 +121537,7 @@ "fileName": "toast/index.d.ts", "line": 544, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L544" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L544" } ], "type": { @@ -121577,7 +121577,7 @@ "fileName": "toast/index.d.ts", "line": 550, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L550" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L550" } ], "type": { @@ -121617,7 +121617,7 @@ "fileName": "toast/index.d.ts", "line": 556, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L556" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L556" } ], "type": { @@ -121646,7 +121646,7 @@ "fileName": "toast/index.d.ts", "line": 560, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L560" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L560" } ], "type": { @@ -121690,7 +121690,7 @@ "fileName": "toast/index.d.ts", "line": 566, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L566" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L566" } ], "type": { @@ -121719,7 +121719,7 @@ "fileName": "toast/index.d.ts", "line": 570, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L570" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L570" } ], "type": { @@ -121763,7 +121763,7 @@ "fileName": "toast/index.d.ts", "line": 576, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L576" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L576" } ], "type": { @@ -121803,7 +121803,7 @@ "fileName": "toast/index.d.ts", "line": 582, "character": 16, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L582" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L582" } ], "type": { @@ -121826,7 +121826,7 @@ "fileName": "toast/index.d.ts", "line": 570, "character": 24, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L570" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L570" } ] } @@ -121847,7 +121847,7 @@ "fileName": "toast/index.d.ts", "line": 560, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L560" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L560" } ] } @@ -121872,7 +121872,7 @@ "fileName": "toast/index.d.ts", "line": 526, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L526" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L526" } ] } @@ -121907,7 +121907,7 @@ "fileName": "toast/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L13" } ], "extendedTypes": [ @@ -121941,7 +121941,7 @@ "fileName": "toast/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toast/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toast/index.d.ts#L1" } ] }, @@ -121980,7 +121980,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -122005,7 +122005,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -122043,7 +122043,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -122083,7 +122083,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -122115,7 +122115,7 @@ "fileName": "togglebutton/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L17" } ], "type": { @@ -122159,7 +122159,7 @@ "fileName": "togglebutton/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L23" } ], "type": { @@ -122199,7 +122199,7 @@ "fileName": "togglebutton/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L29" } ], "type": { @@ -122239,7 +122239,7 @@ "fileName": "togglebutton/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L35" } ], "type": { @@ -122279,7 +122279,7 @@ "fileName": "togglebutton/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L41" } ], "type": { @@ -122319,7 +122319,7 @@ "fileName": "togglebutton/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L47" } ], "type": { @@ -122359,7 +122359,7 @@ "fileName": "togglebutton/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L53" } ], "type": { @@ -122399,7 +122399,7 @@ "fileName": "togglebutton/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L59" } ], "type": { @@ -122439,7 +122439,7 @@ "fileName": "togglebutton/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L65" } ], "type": { @@ -122468,7 +122468,7 @@ "fileName": "togglebutton/index.d.ts", "line": 69, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L69" } ], "type": { @@ -122512,7 +122512,7 @@ "fileName": "togglebutton/index.d.ts", "line": 75, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L75" } ], "type": { @@ -122552,7 +122552,7 @@ "fileName": "togglebutton/index.d.ts", "line": 81, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L81" } ], "type": { @@ -122592,7 +122592,7 @@ "fileName": "togglebutton/index.d.ts", "line": 87, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L87" } ], "type": { @@ -122632,7 +122632,7 @@ "fileName": "togglebutton/index.d.ts", "line": 93, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L93" } ], "type": { @@ -122672,7 +122672,7 @@ "fileName": "togglebutton/index.d.ts", "line": 99, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L99" } ], "type": { @@ -122698,7 +122698,7 @@ "fileName": "togglebutton/index.d.ts", "line": 69, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L69" } ] } @@ -122736,7 +122736,7 @@ "fileName": "togglebutton/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L106" } ], "type": { @@ -122776,7 +122776,7 @@ "fileName": "togglebutton/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L112" } ], "type": { @@ -122816,7 +122816,7 @@ "fileName": "togglebutton/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L118" } ], "type": { @@ -122856,7 +122856,7 @@ "fileName": "togglebutton/index.d.ts", "line": 124, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L124" } ], "type": { @@ -122896,7 +122896,7 @@ "fileName": "togglebutton/index.d.ts", "line": 130, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L130" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L130" } ], "type": { @@ -122936,7 +122936,7 @@ "fileName": "togglebutton/index.d.ts", "line": 136, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L136" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L136" } ], "type": { @@ -122976,7 +122976,7 @@ "fileName": "togglebutton/index.d.ts", "line": 142, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L142" } ], "type": { @@ -123016,7 +123016,7 @@ "fileName": "togglebutton/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L148" } ], "type": { @@ -123056,7 +123056,7 @@ "fileName": "togglebutton/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L154" } ], "type": { @@ -123095,7 +123095,7 @@ "fileName": "togglebutton/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L17" } ] } @@ -123122,7 +123122,7 @@ "fileName": "togglebutton/index.d.ts", "line": 159, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L159" } ], "type": { @@ -123166,7 +123166,7 @@ "fileName": "togglebutton/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L165" } ], "type": { @@ -123206,7 +123206,7 @@ "fileName": "togglebutton/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L171" } ], "type": { @@ -123246,7 +123246,7 @@ "fileName": "togglebutton/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L177" } ], "type": { @@ -123286,7 +123286,7 @@ "fileName": "togglebutton/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L183" } ], "type": { @@ -123311,7 +123311,7 @@ "fileName": "togglebutton/index.d.ts", "line": 159, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L159" } ] } @@ -123338,7 +123338,7 @@ "fileName": "togglebutton/index.d.ts", "line": 188, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L188" } ], "type": { @@ -123382,7 +123382,7 @@ "fileName": "togglebutton/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L194" } ], "type": { @@ -123422,7 +123422,7 @@ "fileName": "togglebutton/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L200" } ], "type": { @@ -123462,7 +123462,7 @@ "fileName": "togglebutton/index.d.ts", "line": 206, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L206" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L206" } ], "type": { @@ -123502,7 +123502,7 @@ "fileName": "togglebutton/index.d.ts", "line": 212, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L212" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L212" } ], "type": { @@ -123527,7 +123527,7 @@ "fileName": "togglebutton/index.d.ts", "line": 188, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L188" } ] } @@ -123550,7 +123550,7 @@ "fileName": "togglebutton/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L13" } ], "extendedTypes": [ @@ -123584,7 +123584,7 @@ "fileName": "togglebutton/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/togglebutton/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/togglebutton/index.d.ts#L1" } ] }, @@ -123623,7 +123623,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -123648,7 +123648,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -123686,7 +123686,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -123726,7 +123726,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -123758,7 +123758,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" } ], "type": { @@ -123802,7 +123802,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L23" } ], "type": { @@ -123842,7 +123842,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L29" } ], "type": { @@ -123882,7 +123882,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L35" } ], "type": { @@ -123922,7 +123922,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L41" } ], "type": { @@ -123962,7 +123962,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L47" } ], "type": { @@ -123991,7 +123991,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 51, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" } ], "type": { @@ -124035,7 +124035,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 57, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L57" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L57" } ], "type": { @@ -124075,7 +124075,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 63, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L63" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L63" } ], "type": { @@ -124115,7 +124115,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 69, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L69" } ], "type": { @@ -124155,7 +124155,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 75, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L75" } ], "type": { @@ -124195,7 +124195,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 81, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L81" } ], "type": { @@ -124221,7 +124221,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 51, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L51" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L51" } ] } @@ -124259,7 +124259,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L88" } ], "type": { @@ -124299,7 +124299,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L94" } ], "type": { @@ -124339,7 +124339,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L100" } ], "type": { @@ -124379,7 +124379,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 106, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L106" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L106" } ], "type": { @@ -124419,7 +124419,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 112, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L112" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L112" } ], "type": { @@ -124459,7 +124459,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 118, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L118" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L118" } ], "type": { @@ -124499,7 +124499,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 124, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L124" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L124" } ], "type": { @@ -124539,7 +124539,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 130, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L130" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L130" } ], "type": { @@ -124579,7 +124579,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 136, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L136" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L136" } ], "type": { @@ -124619,7 +124619,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 142, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L142" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L142" } ], "type": { @@ -124659,7 +124659,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L148" } ], "type": { @@ -124699,7 +124699,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 154, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L154" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L154" } ], "type": { @@ -124739,7 +124739,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 160, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L160" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L160" } ], "type": { @@ -124779,7 +124779,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L17" } ] } @@ -124806,7 +124806,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 165, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" } ], "type": { @@ -124850,7 +124850,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 171, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L171" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L171" } ], "type": { @@ -124890,7 +124890,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 177, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L177" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L177" } ], "type": { @@ -124930,7 +124930,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 183, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L183" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L183" } ], "type": { @@ -124970,7 +124970,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 189, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L189" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L189" } ], "type": { @@ -125010,7 +125010,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 195, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L195" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L195" } ], "type": { @@ -125050,7 +125050,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 201, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L201" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L201" } ], "type": { @@ -125090,7 +125090,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 207, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L207" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L207" } ], "type": { @@ -125118,7 +125118,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 165, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L165" } ] } @@ -125140,7 +125140,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L13" } ], "extendedTypes": [ @@ -125174,7 +125174,7 @@ "fileName": "toggleswitch/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toggleswitch/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toggleswitch/index.d.ts#L1" } ] }, @@ -125213,7 +125213,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -125238,7 +125238,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -125276,7 +125276,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -125316,7 +125316,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -125348,7 +125348,7 @@ "fileName": "toolbar/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L17" } ], "type": { @@ -125392,7 +125392,7 @@ "fileName": "toolbar/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L23" } ], "type": { @@ -125432,7 +125432,7 @@ "fileName": "toolbar/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L29" } ], "type": { @@ -125472,7 +125472,7 @@ "fileName": "toolbar/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L35" } ], "type": { @@ -125512,7 +125512,7 @@ "fileName": "toolbar/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L41" } ], "type": { @@ -125552,7 +125552,7 @@ "fileName": "toolbar/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L47" } ], "type": { @@ -125592,7 +125592,7 @@ "fileName": "toolbar/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L53" } ], "type": { @@ -125619,7 +125619,7 @@ "fileName": "toolbar/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L17" } ] } @@ -125640,7 +125640,7 @@ "fileName": "toolbar/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L13" } ], "extendedTypes": [ @@ -125674,7 +125674,7 @@ "fileName": "toolbar/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/toolbar/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/toolbar/index.d.ts#L1" } ] }, @@ -125713,7 +125713,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -125738,7 +125738,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -125776,7 +125776,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -125816,7 +125816,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -125848,7 +125848,7 @@ "fileName": "tooltip/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L17" } ], "type": { @@ -125892,7 +125892,7 @@ "fileName": "tooltip/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L23" } ], "type": { @@ -125932,7 +125932,7 @@ "fileName": "tooltip/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L29" } ], "type": { @@ -125972,7 +125972,7 @@ "fileName": "tooltip/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L35" } ], "type": { @@ -126012,7 +126012,7 @@ "fileName": "tooltip/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L41" } ], "type": { @@ -126052,7 +126052,7 @@ "fileName": "tooltip/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L47" } ], "type": { @@ -126092,7 +126092,7 @@ "fileName": "tooltip/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L53" } ], "type": { @@ -126132,7 +126132,7 @@ "fileName": "tooltip/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L59" } ], "type": { @@ -126160,7 +126160,7 @@ "fileName": "tooltip/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L17" } ] } @@ -126181,7 +126181,7 @@ "fileName": "tooltip/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L13" } ], "extendedTypes": [ @@ -126215,7 +126215,7 @@ "fileName": "tooltip/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tooltip/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tooltip/index.d.ts#L1" } ] }, @@ -126254,7 +126254,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -126279,7 +126279,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -126317,7 +126317,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -126357,7 +126357,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -126389,7 +126389,7 @@ "fileName": "tree/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L17" } ], "type": { @@ -126433,7 +126433,7 @@ "fileName": "tree/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L23" } ], "type": { @@ -126473,7 +126473,7 @@ "fileName": "tree/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L29" } ], "type": { @@ -126513,7 +126513,7 @@ "fileName": "tree/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L35" } ], "type": { @@ -126553,7 +126553,7 @@ "fileName": "tree/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L41" } ], "type": { @@ -126593,7 +126593,7 @@ "fileName": "tree/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L47" } ], "type": { @@ -126633,7 +126633,7 @@ "fileName": "tree/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L53" } ], "type": { @@ -126660,7 +126660,7 @@ "fileName": "tree/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L17" } ] } @@ -126687,7 +126687,7 @@ "fileName": "tree/index.d.ts", "line": 58, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L58" } ], "type": { @@ -126731,7 +126731,7 @@ "fileName": "tree/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L64" } ], "type": { @@ -126771,7 +126771,7 @@ "fileName": "tree/index.d.ts", "line": 70, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L70" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L70" } ], "type": { @@ -126811,7 +126811,7 @@ "fileName": "tree/index.d.ts", "line": 76, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L76" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L76" } ], "type": { @@ -126851,7 +126851,7 @@ "fileName": "tree/index.d.ts", "line": 82, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L82" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L82" } ], "type": { @@ -126891,7 +126891,7 @@ "fileName": "tree/index.d.ts", "line": 88, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L88" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L88" } ], "type": { @@ -126931,7 +126931,7 @@ "fileName": "tree/index.d.ts", "line": 94, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L94" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L94" } ], "type": { @@ -126971,7 +126971,7 @@ "fileName": "tree/index.d.ts", "line": 100, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L100" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L100" } ], "type": { @@ -127000,7 +127000,7 @@ "fileName": "tree/index.d.ts", "line": 104, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L104" } ], "type": { @@ -127044,7 +127044,7 @@ "fileName": "tree/index.d.ts", "line": 110, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L110" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L110" } ], "type": { @@ -127084,7 +127084,7 @@ "fileName": "tree/index.d.ts", "line": 116, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L116" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L116" } ], "type": { @@ -127124,7 +127124,7 @@ "fileName": "tree/index.d.ts", "line": 122, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L122" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L122" } ], "type": { @@ -127164,7 +127164,7 @@ "fileName": "tree/index.d.ts", "line": 128, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L128" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L128" } ], "type": { @@ -127204,7 +127204,7 @@ "fileName": "tree/index.d.ts", "line": 134, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L134" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L134" } ], "type": { @@ -127230,7 +127230,7 @@ "fileName": "tree/index.d.ts", "line": 104, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L104" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L104" } ] } @@ -127268,7 +127268,7 @@ "fileName": "tree/index.d.ts", "line": 141, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L141" } ], "type": { @@ -127298,7 +127298,7 @@ "fileName": "tree/index.d.ts", "line": 58, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L58" } ] } @@ -127325,7 +127325,7 @@ "fileName": "tree/index.d.ts", "line": 146, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L146" } ], "type": { @@ -127369,7 +127369,7 @@ "fileName": "tree/index.d.ts", "line": 152, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L152" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L152" } ], "type": { @@ -127409,7 +127409,7 @@ "fileName": "tree/index.d.ts", "line": 158, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L158" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L158" } ], "type": { @@ -127449,7 +127449,7 @@ "fileName": "tree/index.d.ts", "line": 164, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L164" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L164" } ], "type": { @@ -127473,7 +127473,7 @@ "fileName": "tree/index.d.ts", "line": 146, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L146" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L146" } ] } @@ -127500,7 +127500,7 @@ "fileName": "tree/index.d.ts", "line": 169, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L169" } ], "type": { @@ -127544,7 +127544,7 @@ "fileName": "tree/index.d.ts", "line": 175, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L175" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L175" } ], "type": { @@ -127584,7 +127584,7 @@ "fileName": "tree/index.d.ts", "line": 181, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L181" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L181" } ], "type": { @@ -127624,7 +127624,7 @@ "fileName": "tree/index.d.ts", "line": 187, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L187" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L187" } ], "type": { @@ -127664,7 +127664,7 @@ "fileName": "tree/index.d.ts", "line": 193, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L193" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L193" } ], "type": { @@ -127704,7 +127704,7 @@ "fileName": "tree/index.d.ts", "line": 199, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L199" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L199" } ], "type": { @@ -127744,7 +127744,7 @@ "fileName": "tree/index.d.ts", "line": 205, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L205" } ], "type": { @@ -127784,7 +127784,7 @@ "fileName": "tree/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L211" } ], "type": { @@ -127813,7 +127813,7 @@ "fileName": "tree/index.d.ts", "line": 215, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L215" } ], "type": { @@ -127857,7 +127857,7 @@ "fileName": "tree/index.d.ts", "line": 221, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L221" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L221" } ], "type": { @@ -127897,7 +127897,7 @@ "fileName": "tree/index.d.ts", "line": 227, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L227" } ], "type": { @@ -127937,7 +127937,7 @@ "fileName": "tree/index.d.ts", "line": 233, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L233" } ], "type": { @@ -127977,7 +127977,7 @@ "fileName": "tree/index.d.ts", "line": 239, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L239" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L239" } ], "type": { @@ -128017,7 +128017,7 @@ "fileName": "tree/index.d.ts", "line": 245, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L245" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L245" } ], "type": { @@ -128043,7 +128043,7 @@ "fileName": "tree/index.d.ts", "line": 215, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L215" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L215" } ] } @@ -128070,7 +128070,7 @@ "fileName": "tree/index.d.ts", "line": 169, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L169" } ] } @@ -128097,7 +128097,7 @@ "fileName": "tree/index.d.ts", "line": 251, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L251" } ], "type": { @@ -128141,7 +128141,7 @@ "fileName": "tree/index.d.ts", "line": 257, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L257" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L257" } ], "type": { @@ -128163,7 +128163,7 @@ "fileName": "tree/index.d.ts", "line": 251, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L251" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L251" } ] } @@ -128188,7 +128188,7 @@ "fileName": "tree/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L13" } ], "extendedTypes": [ @@ -128222,7 +128222,7 @@ "fileName": "tree/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/tree/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/tree/index.d.ts#L1" } ] }, @@ -128261,7 +128261,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -128286,7 +128286,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -128324,7 +128324,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -128364,7 +128364,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -128396,7 +128396,7 @@ "fileName": "treeselect/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L17" } ], "type": { @@ -128440,7 +128440,7 @@ "fileName": "treeselect/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L23" } ], "type": { @@ -128480,7 +128480,7 @@ "fileName": "treeselect/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L29" } ], "type": { @@ -128520,7 +128520,7 @@ "fileName": "treeselect/index.d.ts", "line": 35, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L35" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L35" } ], "type": { @@ -128560,7 +128560,7 @@ "fileName": "treeselect/index.d.ts", "line": 41, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L41" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L41" } ], "type": { @@ -128600,7 +128600,7 @@ "fileName": "treeselect/index.d.ts", "line": 47, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L47" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L47" } ], "type": { @@ -128640,7 +128640,7 @@ "fileName": "treeselect/index.d.ts", "line": 53, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L53" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L53" } ], "type": { @@ -128680,7 +128680,7 @@ "fileName": "treeselect/index.d.ts", "line": 59, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L59" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L59" } ], "type": { @@ -128720,7 +128720,7 @@ "fileName": "treeselect/index.d.ts", "line": 65, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L65" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L65" } ], "type": { @@ -128760,7 +128760,7 @@ "fileName": "treeselect/index.d.ts", "line": 71, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L71" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L71" } ], "type": { @@ -128800,7 +128800,7 @@ "fileName": "treeselect/index.d.ts", "line": 77, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L77" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L77" } ], "type": { @@ -128840,7 +128840,7 @@ "fileName": "treeselect/index.d.ts", "line": 83, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L83" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L83" } ], "type": { @@ -128880,7 +128880,7 @@ "fileName": "treeselect/index.d.ts", "line": 89, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L89" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L89" } ], "type": { @@ -128920,7 +128920,7 @@ "fileName": "treeselect/index.d.ts", "line": 95, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L95" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L95" } ], "type": { @@ -128960,7 +128960,7 @@ "fileName": "treeselect/index.d.ts", "line": 101, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L101" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L101" } ], "type": { @@ -129000,7 +129000,7 @@ "fileName": "treeselect/index.d.ts", "line": 107, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L107" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L107" } ], "type": { @@ -129029,7 +129029,7 @@ "fileName": "treeselect/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L111" } ], "type": { @@ -129073,7 +129073,7 @@ "fileName": "treeselect/index.d.ts", "line": 117, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L117" } ], "type": { @@ -129113,7 +129113,7 @@ "fileName": "treeselect/index.d.ts", "line": 123, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L123" } ], "type": { @@ -129153,7 +129153,7 @@ "fileName": "treeselect/index.d.ts", "line": 129, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L129" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L129" } ], "type": { @@ -129193,7 +129193,7 @@ "fileName": "treeselect/index.d.ts", "line": 135, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L135" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L135" } ], "type": { @@ -129233,7 +129233,7 @@ "fileName": "treeselect/index.d.ts", "line": 141, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L141" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L141" } ], "type": { @@ -129259,7 +129259,7 @@ "fileName": "treeselect/index.d.ts", "line": 111, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L111" } ] } @@ -129297,7 +129297,7 @@ "fileName": "treeselect/index.d.ts", "line": 148, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L148" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L148" } ], "type": { @@ -129335,7 +129335,7 @@ "fileName": "treeselect/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L17" } ] } @@ -129362,7 +129362,7 @@ "fileName": "treeselect/index.d.ts", "line": 153, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L153" } ], "type": { @@ -129406,7 +129406,7 @@ "fileName": "treeselect/index.d.ts", "line": 159, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L159" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L159" } ], "type": { @@ -129446,7 +129446,7 @@ "fileName": "treeselect/index.d.ts", "line": 165, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L165" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L165" } ], "type": { @@ -129469,7 +129469,7 @@ "fileName": "treeselect/index.d.ts", "line": 153, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L153" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L153" } ] } @@ -129496,7 +129496,7 @@ "fileName": "treeselect/index.d.ts", "line": 170, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L170" } ], "type": { @@ -129540,7 +129540,7 @@ "fileName": "treeselect/index.d.ts", "line": 176, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L176" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L176" } ], "type": { @@ -129580,7 +129580,7 @@ "fileName": "treeselect/index.d.ts", "line": 182, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L182" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L182" } ], "type": { @@ -129620,7 +129620,7 @@ "fileName": "treeselect/index.d.ts", "line": 188, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L188" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L188" } ], "type": { @@ -129660,7 +129660,7 @@ "fileName": "treeselect/index.d.ts", "line": 194, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L194" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L194" } ], "type": { @@ -129700,7 +129700,7 @@ "fileName": "treeselect/index.d.ts", "line": 200, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L200" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L200" } ], "type": { @@ -129726,7 +129726,7 @@ "fileName": "treeselect/index.d.ts", "line": 170, "character": 14, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L170" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L170" } ] } @@ -129753,7 +129753,7 @@ "fileName": "treeselect/index.d.ts", "line": 205, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L205" } ], "type": { @@ -129797,7 +129797,7 @@ "fileName": "treeselect/index.d.ts", "line": 211, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L211" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L211" } ], "type": { @@ -129819,7 +129819,7 @@ "fileName": "treeselect/index.d.ts", "line": 205, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L205" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L205" } ] } @@ -129846,7 +129846,7 @@ "fileName": "treeselect/index.d.ts", "line": 216, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L216" } ], "type": { @@ -129890,7 +129890,7 @@ "fileName": "treeselect/index.d.ts", "line": 222, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L222" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L222" } ], "type": { @@ -129912,7 +129912,7 @@ "fileName": "treeselect/index.d.ts", "line": 216, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L216" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L216" } ] } @@ -129939,7 +129939,7 @@ "fileName": "treeselect/index.d.ts", "line": 227, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L227" } ], "type": { @@ -129983,7 +129983,7 @@ "fileName": "treeselect/index.d.ts", "line": 233, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L233" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L233" } ], "type": { @@ -130005,7 +130005,7 @@ "fileName": "treeselect/index.d.ts", "line": 227, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L227" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L227" } ] } @@ -130031,7 +130031,7 @@ "fileName": "treeselect/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L13" } ], "extendedTypes": [ @@ -130065,7 +130065,7 @@ "fileName": "treeselect/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treeselect/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treeselect/index.d.ts#L1" } ] }, @@ -130104,7 +130104,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -130129,7 +130129,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -130167,7 +130167,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -130207,7 +130207,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -130239,7 +130239,7 @@ "fileName": "treetable/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L17" } ], "type": { @@ -130283,7 +130283,7 @@ "fileName": "treetable/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L23" } ], "type": { @@ -130323,7 +130323,7 @@ "fileName": "treetable/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L29" } ], "type": { @@ -130346,7 +130346,7 @@ "fileName": "treetable/index.d.ts", "line": 17, "character": 11, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L17" } ] } @@ -130373,7 +130373,7 @@ "fileName": "treetable/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L34" } ], "type": { @@ -130417,7 +130417,7 @@ "fileName": "treetable/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L40" } ], "type": { @@ -130457,7 +130457,7 @@ "fileName": "treetable/index.d.ts", "line": 46, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L46" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L46" } ], "type": { @@ -130497,7 +130497,7 @@ "fileName": "treetable/index.d.ts", "line": 52, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L52" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L52" } ], "type": { @@ -130537,7 +130537,7 @@ "fileName": "treetable/index.d.ts", "line": 58, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L58" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L58" } ], "type": { @@ -130577,7 +130577,7 @@ "fileName": "treetable/index.d.ts", "line": 64, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L64" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L64" } ], "type": { @@ -130603,7 +130603,7 @@ "fileName": "treetable/index.d.ts", "line": 34, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L34" } ] } @@ -130630,7 +130630,7 @@ "fileName": "treetable/index.d.ts", "line": 69, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L69" } ], "type": { @@ -130674,7 +130674,7 @@ "fileName": "treetable/index.d.ts", "line": 75, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L75" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L75" } ], "type": { @@ -130714,7 +130714,7 @@ "fileName": "treetable/index.d.ts", "line": 81, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L81" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L81" } ], "type": { @@ -130754,7 +130754,7 @@ "fileName": "treetable/index.d.ts", "line": 87, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L87" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L87" } ], "type": { @@ -130794,7 +130794,7 @@ "fileName": "treetable/index.d.ts", "line": 93, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L93" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L93" } ], "type": { @@ -130834,7 +130834,7 @@ "fileName": "treetable/index.d.ts", "line": 99, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L99" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L99" } ], "type": { @@ -130874,7 +130874,7 @@ "fileName": "treetable/index.d.ts", "line": 105, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L105" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L105" } ], "type": { @@ -130914,7 +130914,7 @@ "fileName": "treetable/index.d.ts", "line": 111, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L111" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L111" } ], "type": { @@ -130954,7 +130954,7 @@ "fileName": "treetable/index.d.ts", "line": 117, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L117" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L117" } ], "type": { @@ -130994,7 +130994,7 @@ "fileName": "treetable/index.d.ts", "line": 123, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L123" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L123" } ], "type": { @@ -131023,7 +131023,7 @@ "fileName": "treetable/index.d.ts", "line": 127, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L127" } ], "type": { @@ -131067,7 +131067,7 @@ "fileName": "treetable/index.d.ts", "line": 133, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L133" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L133" } ], "type": { @@ -131107,7 +131107,7 @@ "fileName": "treetable/index.d.ts", "line": 139, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L139" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L139" } ], "type": { @@ -131147,7 +131147,7 @@ "fileName": "treetable/index.d.ts", "line": 145, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L145" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L145" } ], "type": { @@ -131187,7 +131187,7 @@ "fileName": "treetable/index.d.ts", "line": 151, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L151" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L151" } ], "type": { @@ -131227,7 +131227,7 @@ "fileName": "treetable/index.d.ts", "line": 157, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L157" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L157" } ], "type": { @@ -131253,7 +131253,7 @@ "fileName": "treetable/index.d.ts", "line": 127, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L127" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L127" } ] } @@ -131282,7 +131282,7 @@ "fileName": "treetable/index.d.ts", "line": 69, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L69" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L69" } ] } @@ -131309,7 +131309,7 @@ "fileName": "treetable/index.d.ts", "line": 163, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L163" } ], "type": { @@ -131353,7 +131353,7 @@ "fileName": "treetable/index.d.ts", "line": 169, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L169" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L169" } ], "type": { @@ -131375,7 +131375,7 @@ "fileName": "treetable/index.d.ts", "line": 163, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L163" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L163" } ] } @@ -131402,7 +131402,7 @@ "fileName": "treetable/index.d.ts", "line": 174, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L174" } ], "type": { @@ -131446,7 +131446,7 @@ "fileName": "treetable/index.d.ts", "line": 180, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L180" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L180" } ], "type": { @@ -131486,7 +131486,7 @@ "fileName": "treetable/index.d.ts", "line": 186, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L186" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L186" } ], "type": { @@ -131526,7 +131526,7 @@ "fileName": "treetable/index.d.ts", "line": 192, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L192" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L192" } ], "type": { @@ -131566,7 +131566,7 @@ "fileName": "treetable/index.d.ts", "line": 198, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L198" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L198" } ], "type": { @@ -131606,7 +131606,7 @@ "fileName": "treetable/index.d.ts", "line": 204, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L204" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L204" } ], "type": { @@ -131646,7 +131646,7 @@ "fileName": "treetable/index.d.ts", "line": 210, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L210" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L210" } ], "type": { @@ -131675,7 +131675,7 @@ "fileName": "treetable/index.d.ts", "line": 214, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L214" } ], "type": { @@ -131719,7 +131719,7 @@ "fileName": "treetable/index.d.ts", "line": 220, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L220" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L220" } ], "type": { @@ -131759,7 +131759,7 @@ "fileName": "treetable/index.d.ts", "line": 226, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L226" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L226" } ], "type": { @@ -131799,7 +131799,7 @@ "fileName": "treetable/index.d.ts", "line": 232, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L232" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L232" } ], "type": { @@ -131839,7 +131839,7 @@ "fileName": "treetable/index.d.ts", "line": 238, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L238" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L238" } ], "type": { @@ -131879,7 +131879,7 @@ "fileName": "treetable/index.d.ts", "line": 244, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L244" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L244" } ], "type": { @@ -131905,7 +131905,7 @@ "fileName": "treetable/index.d.ts", "line": 214, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L214" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L214" } ] } @@ -131931,7 +131931,7 @@ "fileName": "treetable/index.d.ts", "line": 174, "character": 10, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L174" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L174" } ] } @@ -131958,7 +131958,7 @@ "fileName": "treetable/index.d.ts", "line": 250, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L250" } ], "type": { @@ -132002,7 +132002,7 @@ "fileName": "treetable/index.d.ts", "line": 256, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L256" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L256" } ], "type": { @@ -132042,7 +132042,7 @@ "fileName": "treetable/index.d.ts", "line": 262, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L262" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L262" } ], "type": { @@ -132082,7 +132082,7 @@ "fileName": "treetable/index.d.ts", "line": 268, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L268" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L268" } ], "type": { @@ -132122,7 +132122,7 @@ "fileName": "treetable/index.d.ts", "line": 274, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L274" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L274" } ], "type": { @@ -132147,7 +132147,7 @@ "fileName": "treetable/index.d.ts", "line": 250, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L250" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L250" } ] } @@ -132174,7 +132174,7 @@ "fileName": "treetable/index.d.ts", "line": 279, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L279" } ], "type": { @@ -132218,7 +132218,7 @@ "fileName": "treetable/index.d.ts", "line": 285, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L285" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L285" } ], "type": { @@ -132258,7 +132258,7 @@ "fileName": "treetable/index.d.ts", "line": 291, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L291" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L291" } ], "type": { @@ -132298,7 +132298,7 @@ "fileName": "treetable/index.d.ts", "line": 297, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L297" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L297" } ], "type": { @@ -132338,7 +132338,7 @@ "fileName": "treetable/index.d.ts", "line": 303, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L303" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L303" } ], "type": { @@ -132363,7 +132363,7 @@ "fileName": "treetable/index.d.ts", "line": 279, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L279" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L279" } ] } @@ -132390,7 +132390,7 @@ "fileName": "treetable/index.d.ts", "line": 308, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L308" } ], "type": { @@ -132434,7 +132434,7 @@ "fileName": "treetable/index.d.ts", "line": 314, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L314" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L314" } ], "type": { @@ -132456,7 +132456,7 @@ "fileName": "treetable/index.d.ts", "line": 308, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L308" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L308" } ] } @@ -132483,7 +132483,7 @@ "fileName": "treetable/index.d.ts", "line": 319, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L319" } ], "type": { @@ -132527,7 +132527,7 @@ "fileName": "treetable/index.d.ts", "line": 325, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L325" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L325" } ], "type": { @@ -132567,7 +132567,7 @@ "fileName": "treetable/index.d.ts", "line": 331, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L331" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L331" } ], "type": { @@ -132607,7 +132607,7 @@ "fileName": "treetable/index.d.ts", "line": 337, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L337" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L337" } ], "type": { @@ -132647,7 +132647,7 @@ "fileName": "treetable/index.d.ts", "line": 343, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L343" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L343" } ], "type": { @@ -132687,7 +132687,7 @@ "fileName": "treetable/index.d.ts", "line": 349, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L349" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L349" } ], "type": { @@ -132713,7 +132713,7 @@ "fileName": "treetable/index.d.ts", "line": 319, "character": 13, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L319" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L319" } ] } @@ -132740,7 +132740,7 @@ "fileName": "treetable/index.d.ts", "line": 354, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L354" } ], "type": { @@ -132784,7 +132784,7 @@ "fileName": "treetable/index.d.ts", "line": 360, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L360" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L360" } ], "type": { @@ -132824,7 +132824,7 @@ "fileName": "treetable/index.d.ts", "line": 366, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L366" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L366" } ], "type": { @@ -132864,7 +132864,7 @@ "fileName": "treetable/index.d.ts", "line": 372, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L372" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L372" } ], "type": { @@ -132904,7 +132904,7 @@ "fileName": "treetable/index.d.ts", "line": 378, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L378" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L378" } ], "type": { @@ -132944,7 +132944,7 @@ "fileName": "treetable/index.d.ts", "line": 384, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L384" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L384" } ], "type": { @@ -132984,7 +132984,7 @@ "fileName": "treetable/index.d.ts", "line": 390, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L390" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L390" } ], "type": { @@ -133011,7 +133011,7 @@ "fileName": "treetable/index.d.ts", "line": 354, "character": 25, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L354" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L354" } ] } @@ -133038,7 +133038,7 @@ "fileName": "treetable/index.d.ts", "line": 395, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L395" } ], "type": { @@ -133082,7 +133082,7 @@ "fileName": "treetable/index.d.ts", "line": 401, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L401" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L401" } ], "type": { @@ -133122,7 +133122,7 @@ "fileName": "treetable/index.d.ts", "line": 407, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L407" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L407" } ], "type": { @@ -133145,7 +133145,7 @@ "fileName": "treetable/index.d.ts", "line": 395, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L395" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L395" } ] } @@ -133172,7 +133172,7 @@ "fileName": "treetable/index.d.ts", "line": 412, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L412" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L412" } ], "type": { @@ -133216,7 +133216,7 @@ "fileName": "treetable/index.d.ts", "line": 418, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L418" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L418" } ], "type": { @@ -133256,7 +133256,7 @@ "fileName": "treetable/index.d.ts", "line": 424, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L424" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L424" } ], "type": { @@ -133279,7 +133279,7 @@ "fileName": "treetable/index.d.ts", "line": 412, "character": 15, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L412" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L412" } ] } @@ -133306,7 +133306,7 @@ "fileName": "treetable/index.d.ts", "line": 429, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L429" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L429" } ], "type": { @@ -133350,7 +133350,7 @@ "fileName": "treetable/index.d.ts", "line": 435, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L435" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L435" } ], "type": { @@ -133372,7 +133372,7 @@ "fileName": "treetable/index.d.ts", "line": 429, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L429" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L429" } ] } @@ -133399,7 +133399,7 @@ "fileName": "treetable/index.d.ts", "line": 440, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L440" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L440" } ], "type": { @@ -133443,7 +133443,7 @@ "fileName": "treetable/index.d.ts", "line": 446, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L446" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L446" } ], "type": { @@ -133483,7 +133483,7 @@ "fileName": "treetable/index.d.ts", "line": 452, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L452" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L452" } ], "type": { @@ -133523,7 +133523,7 @@ "fileName": "treetable/index.d.ts", "line": 458, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L458" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L458" } ], "type": { @@ -133563,7 +133563,7 @@ "fileName": "treetable/index.d.ts", "line": 464, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L464" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L464" } ], "type": { @@ -133603,7 +133603,7 @@ "fileName": "treetable/index.d.ts", "line": 470, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L470" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L470" } ], "type": { @@ -133643,7 +133643,7 @@ "fileName": "treetable/index.d.ts", "line": 476, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L476" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L476" } ], "type": { @@ -133683,7 +133683,7 @@ "fileName": "treetable/index.d.ts", "line": 482, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L482" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L482" } ], "type": { @@ -133712,7 +133712,7 @@ "fileName": "treetable/index.d.ts", "line": 486, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L486" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L486" } ], "type": { @@ -133756,7 +133756,7 @@ "fileName": "treetable/index.d.ts", "line": 492, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L492" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L492" } ], "type": { @@ -133796,7 +133796,7 @@ "fileName": "treetable/index.d.ts", "line": 498, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L498" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L498" } ], "type": { @@ -133836,7 +133836,7 @@ "fileName": "treetable/index.d.ts", "line": 504, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L504" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L504" } ], "type": { @@ -133876,7 +133876,7 @@ "fileName": "treetable/index.d.ts", "line": 510, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L510" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L510" } ], "type": { @@ -133916,7 +133916,7 @@ "fileName": "treetable/index.d.ts", "line": 516, "character": 12, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L516" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L516" } ], "type": { @@ -133942,7 +133942,7 @@ "fileName": "treetable/index.d.ts", "line": 486, "character": 20, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L486" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L486" } ] } @@ -133969,7 +133969,7 @@ "fileName": "treetable/index.d.ts", "line": 440, "character": 23, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L440" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L440" } ] } @@ -133996,7 +133996,7 @@ "fileName": "treetable/index.d.ts", "line": 522, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L522" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L522" } ], "type": { @@ -134040,7 +134040,7 @@ "fileName": "treetable/index.d.ts", "line": 528, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L528" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L528" } ], "type": { @@ -134080,7 +134080,7 @@ "fileName": "treetable/index.d.ts", "line": 534, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L534" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L534" } ], "type": { @@ -134103,7 +134103,7 @@ "fileName": "treetable/index.d.ts", "line": 522, "character": 19, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L522" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L522" } ] } @@ -134130,7 +134130,7 @@ "fileName": "treetable/index.d.ts", "line": 539, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L539" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L539" } ], "type": { @@ -134174,7 +134174,7 @@ "fileName": "treetable/index.d.ts", "line": 545, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L545" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L545" } ], "type": { @@ -134214,7 +134214,7 @@ "fileName": "treetable/index.d.ts", "line": 551, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L551" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L551" } ], "type": { @@ -134237,7 +134237,7 @@ "fileName": "treetable/index.d.ts", "line": 539, "character": 22, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L539" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L539" } ] } @@ -134273,7 +134273,7 @@ "fileName": "treetable/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L13" } ], "extendedTypes": [ @@ -134307,7 +134307,7 @@ "fileName": "treetable/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/treetable/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/treetable/index.d.ts#L1" } ] }, @@ -134346,7 +134346,7 @@ "fileName": "index.d.ts", "line": 9, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ], "type": { @@ -134371,7 +134371,7 @@ "fileName": "index.d.ts", "line": 10, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L10" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L10" } ], "type": { @@ -134409,7 +134409,7 @@ "fileName": "index.d.ts", "line": 11, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L11" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L11" } ], "type": { @@ -134449,7 +134449,7 @@ "fileName": "index.d.ts", "line": 9, "character": 18, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/index.d.ts#L9" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/index.d.ts#L9" } ] } @@ -134481,7 +134481,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 17, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" } ], "type": { @@ -134525,7 +134525,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 23, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L23" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L23" } ], "type": { @@ -134565,7 +134565,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 29, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L29" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L29" } ], "type": { @@ -134588,7 +134588,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 17, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L17" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L17" } ] } @@ -134615,7 +134615,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 34, "character": 4, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" } ], "type": { @@ -134659,7 +134659,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 40, "character": 8, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L40" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L40" } ], "type": { @@ -134681,7 +134681,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 34, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L34" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L34" } ] } @@ -134703,7 +134703,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 13, "character": 17, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L13" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L13" } ], "extendedTypes": [ @@ -134737,7 +134737,7 @@ "fileName": "virtualscroller/index.d.ts", "line": 1, "character": 0, - "url": "https://github.com/primefaces/primeng/blob/920f8343a1f9ee9510dfe0299a8c9664213e388c/src/app/components/themes/types/virtualscroller/index.d.ts#L1" + "url": "https://github.com/primefaces/primeng/blob/0e6bfb29910eea0d6654df3bfdcb69040483bae4/src/app/components/themes/types/virtualscroller/index.d.ts#L1" } ] } @@ -134841,7 +134841,7 @@ "readme": [ { "kind": "text", - "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\n\nVisit the [PrimeNG Website](https://v18.primeng.org) for general information, demos and documentation." + "text": "[![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng)\n[![npm downloads](https://img.shields.io/npm/dm/primeng.svg)](https://www.npmjs.com/package/primeng)\n[![Actions CI](https://github.com/primefaces/primeng/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primeng/actions/workflows/node.js.yml)\n[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)\n[![Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)\n\n[![PrimeNG Hero](https://www.primefaces.org/static/social/primeng-preview.jpg)](https://primeng.org)\n\n### Website\nPrimeNG is a rich set of open source UI Components for Angular. Visit the [PrimeNG website](https://primeng.org/) for interactive demos, comprehensive documentation and additional resources." } ], "symbolIdMap": { diff --git a/src/app/components/accordion/accordion.ts b/src/app/components/accordion/accordion.ts index 9f99ba6cea0..8b57e900d76 100755 --- a/src/app/components/accordion/accordion.ts +++ b/src/app/components/accordion/accordion.ts @@ -178,6 +178,18 @@ export class AccordionHeader extends BaseComponent { disabled = computed(() => this.pcAccordionPanel.disabled()); ariaControls = computed(() => `${this.pcAccordion.id()}_accordioncontent_${this.pcAccordionPanel.value()}`); + /** + * A template reference variable that represents the toggle icon in a UI component. + * @param {AccordionToggleIconTemplateContext} context - Context of the template + * @example + * ```html + * + * ``` + * @see {@link AccordionToggleIconTemplateContext} + * @group Templates + */ + @ContentChild('toggleicon') toggleicon: TemplateRef | undefined; + @ContentChildren(PrimeTemplate) templates!: QueryList; @HostListener('click', ['$event']) onClick() { this.changeActiveValue(); @@ -210,19 +222,6 @@ export class AccordionHeader extends BaseComponent { break; } } - /** - * A template reference variable that represents the toggle icon in a UI component. - * @param {AccordionToggleIconTemplateContext} context - Context of the template - * @example - * ```html - * - * ``` - * @see {@link AccordionToggleIconTemplateContext} - * @group Templates - */ - @ContentChild('toggleicon') toggleicon: TemplateRef | undefined; - - @ContentChildren(PrimeTemplate) templates!: QueryList; ngAfterContentInit() { this.templates.forEach((item) => { @@ -391,13 +390,13 @@ export class AccordionContent extends BaseComponent { [attr.id]="getTabHeaderActionId(id)" [attr.aria-controls]="getTabContentId(id)" > - @if (!hasHeaderFacet && !headerTemplate) { + @if (!headerTemplate) { {{ header }} } @else { @if (headerTemplate) { } - @if (hasHeaderFacet) { + @if (headerFacet) { } } @@ -584,12 +583,26 @@ export class AccordionTab extends BaseComponent implements AfterContentInit, OnD return 'p-accordionheader-toggle-icon icon-start'; } } - - contentTemplate: TemplateRef | undefined; - - headerTemplate: TemplateRef | undefined; - - iconTemplate: TemplateRef | undefined; + /** + * Content template for the content of the drawer. + * @group Templates + */ + @ContentChild('header') headerTemplate: TemplateRef | undefined; + /** + * Header template for the header of the drawer. + * @group Templates + */ + @ContentChild('footer') footerTemplate: TemplateRef | undefined; + /** + * Template for the header icon. + * @group Templates + */ + @ContentChild('icon') iconTemplate: TemplateRef | undefined; + /** + * Content template for the footer of the drawer. + * @group Templates + */ + @ContentChild('content') contentTemplate: TemplateRef | undefined; loaded: boolean = false; @@ -668,10 +681,6 @@ export class AccordionTab extends BaseComponent implements AfterContentInit, OnD return index; } - get hasHeaderFacet(): boolean { - return (this.headerFacet as QueryList
    ) && (this.headerFacet as QueryList
    ).length > 0; - } - onKeydown(event: KeyboardEvent) { switch (event.code) { case 'Enter': @@ -1052,7 +1061,7 @@ export class Accordion extends BaseComponent implements BlockableUI, AfterConten } @NgModule({ - imports: [Accordion, AccordionTab, AccordionPanel, AccordionHeader, AccordionContent], + imports: [Accordion, AccordionTab, SharedModule, AccordionPanel, AccordionHeader, AccordionContent], exports: [Accordion, AccordionTab, SharedModule, AccordionPanel, AccordionHeader, AccordionContent], }) export class AccordionModule {} diff --git a/src/app/components/animateonscroll/animateonscroll.ts b/src/app/components/animateonscroll/animateonscroll.ts index 8fd9b144862..7291684bdba 100644 --- a/src/app/components/animateonscroll/animateonscroll.ts +++ b/src/app/components/animateonscroll/animateonscroll.ts @@ -1,17 +1,6 @@ -import { CommonModule, DOCUMENT, isPlatformBrowser } from '@angular/common'; -import { - AfterViewInit, - Directive, - ElementRef, - Input, - NgModule, - Renderer2, - OnInit, - Inject, - PLATFORM_ID, - booleanAttribute, - numberAttribute, -} from '@angular/core'; +import { isPlatformBrowser } from '@angular/common'; +import { AfterViewInit, booleanAttribute, Directive, Input, NgModule, numberAttribute, OnInit } from '@angular/core'; +import { BaseComponent } from 'primeng/basecomponent'; import { DomHandler } from 'primeng/dom'; interface AnimateOnScrollOptions { @@ -26,11 +15,12 @@ interface AnimateOnScrollOptions { */ @Directive({ selector: '[pAnimateOnScroll]', + standalone: true, host: { '[class.p-animateonscroll]': 'true', }, }) -export class AnimateOnScroll implements OnInit, AfterViewInit { +export class AnimateOnScroll extends BaseComponent implements OnInit, AfterViewInit { /** * Selector to define the CSS class for enter animation. * @group Props @@ -72,21 +62,15 @@ export class AnimateOnScroll implements OnInit, AfterViewInit { animationEndListener: VoidFunction | undefined; - constructor( - @Inject(DOCUMENT) private document: Document, - @Inject(PLATFORM_ID) private platformId: any, - private host: ElementRef, - public el: ElementRef, - public renderer: Renderer2, - ) {} - ngOnInit() { + super.ngOnInit(); if (isPlatformBrowser(this.platformId)) { - this.renderer.setStyle(this.host.nativeElement, 'opacity', this.enterClass ? '0' : ''); + this.renderer.setStyle(this.el.nativeElement, 'opacity', this.enterClass ? '0' : ''); } } ngAfterViewInit() { + super.ngAfterViewInit(); if (isPlatformBrowser(this.platformId)) { this.bindIntersectionObserver(); } @@ -113,17 +97,17 @@ export class AnimateOnScroll implements OnInit, AfterViewInit { this.isObserverActive = true; }, this.options); - setTimeout(() => this.observer.observe(this.host.nativeElement), 0); + setTimeout(() => this.observer.observe(this.el.nativeElement), 0); // Reset this.resetObserver = new IntersectionObserver( ([entry]) => { if (entry.boundingClientRect.top > 0 && !entry.isIntersecting) { - this.host.nativeElement.style.opacity = this.enterClass ? '0' : ''; - DomHandler.removeMultipleClasses(this.host.nativeElement, [this.enterClass, this.leaveClass]); + this.el.nativeElement.style.opacity = this.enterClass ? '0' : ''; + DomHandler.removeMultipleClasses(this.el.nativeElement, [this.enterClass, this.leaveClass]); - this.resetObserver.unobserve(this.host.nativeElement); + this.resetObserver.unobserve(this.el.nativeElement); } this.animationState = undefined; @@ -134,9 +118,9 @@ export class AnimateOnScroll implements OnInit, AfterViewInit { enter() { if (this.animationState !== 'enter' && this.enterClass) { - this.host.nativeElement.style.opacity = ''; - DomHandler.removeMultipleClasses(this.host.nativeElement, this.leaveClass); - DomHandler.addMultipleClasses(this.host.nativeElement, this.enterClass); + this.el.nativeElement.style.opacity = ''; + DomHandler.removeMultipleClasses(this.el.nativeElement, this.leaveClass); + DomHandler.addMultipleClasses(this.el.nativeElement, this.enterClass); this.once && this.unbindIntersectionObserver(); @@ -147,9 +131,9 @@ export class AnimateOnScroll implements OnInit, AfterViewInit { leave() { if (this.animationState !== 'leave' && this.leaveClass) { - this.host.nativeElement.style.opacity = this.enterClass ? '0' : ''; - DomHandler.removeMultipleClasses(this.host.nativeElement, this.enterClass); - DomHandler.addMultipleClasses(this.host.nativeElement, this.leaveClass); + this.el.nativeElement.style.opacity = this.enterClass ? '0' : ''; + DomHandler.removeMultipleClasses(this.el.nativeElement, this.enterClass); + DomHandler.addMultipleClasses(this.el.nativeElement, this.leaveClass); this.bindAnimationEvents(); this.animationState = 'leave'; @@ -158,9 +142,9 @@ export class AnimateOnScroll implements OnInit, AfterViewInit { bindAnimationEvents() { if (!this.animationEndListener) { - this.animationEndListener = this.renderer.listen(this.host.nativeElement, 'animationend', () => { - DomHandler.removeMultipleClasses(this.host.nativeElement, [this.enterClass, this.leaveClass]); - !this.once && this.resetObserver.observe(this.host.nativeElement); + this.animationEndListener = this.renderer.listen(this.el.nativeElement, 'animationend', () => { + DomHandler.removeMultipleClasses(this.el.nativeElement, [this.enterClass, this.leaveClass]); + !this.once && this.resetObserver.observe(this.el.nativeElement); this.unbindAnimationEvents(); }); } @@ -174,20 +158,21 @@ export class AnimateOnScroll implements OnInit, AfterViewInit { } unbindIntersectionObserver() { - this.observer?.unobserve(this.host.nativeElement); - this.resetObserver?.unobserve(this.host.nativeElement); + this.observer?.unobserve(this.el.nativeElement); + this.resetObserver?.unobserve(this.el.nativeElement); this.isObserverActive = false; } ngOnDestroy() { this.unbindAnimationEvents(); this.unbindIntersectionObserver(); + + super.ngOnDestroy(); } } @NgModule({ - imports: [CommonModule], + imports: [AnimateOnScroll], exports: [AnimateOnScroll], - declarations: [AnimateOnScroll], }) export class AnimateOnScrollModule {} diff --git a/src/app/components/autocomplete/autocomplete.ts b/src/app/components/autocomplete/autocomplete.ts index 9cb2d37f159..cc55e420c88 100755 --- a/src/app/components/autocomplete/autocomplete.ts +++ b/src/app/components/autocomplete/autocomplete.ts @@ -7,6 +7,7 @@ import { ChangeDetectionStrategy, Component, computed, + ContentChild, ContentChildren, effect, ElementRef, @@ -26,14 +27,14 @@ import { ViewEncapsulation, } from '@angular/core'; import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'; +import { AutoFocus } from 'primeng/autofocus'; +import { Button } from 'primeng/button'; import { OverlayOptions, OverlayService, PrimeTemplate, ScrollerOptions, SharedModule, TranslationKeys } from 'primeng/api'; -import { AutoFocusModule } from 'primeng/autofocus'; -import { ButtonModule } from 'primeng/button'; import { ConnectedOverlayScrollHandler, DomHandler } from 'primeng/dom'; -import { InputTextModule } from 'primeng/inputtext'; -import { Overlay, OverlayModule } from 'primeng/overlay'; -import { RippleModule } from 'primeng/ripple'; -import { Scroller, ScrollerModule } from 'primeng/scroller'; +import { InputText } from 'primeng/inputtext'; +import { Overlay } from 'primeng/overlay'; +import { Ripple } from 'primeng/ripple'; +import { Scroller } from 'primeng/scroller'; import { ObjectUtils, UniqueComponentId } from 'primeng/utils'; import { TimesCircleIcon } from 'primeng/icons/timescircle'; import { SpinnerIcon } from 'primeng/icons/spinner'; @@ -47,7 +48,7 @@ import { AutoCompleteSelectEvent, AutoCompleteUnselectEvent, } from './autocomplete.interface'; -import { ChipModule } from 'primeng/chip'; +import { Chip } from 'primeng/chip'; import { AutoCompleteStyle } from './style/autocompletestyle'; import { BaseComponent } from 'primeng/basecomponent'; @@ -62,6 +63,21 @@ export const AUTOCOMPLETE_VALUE_ACCESSOR: any = { */ @Component({ selector: 'p-autoComplete, p-autocomplete', + standalone: true, + imports: [ + CommonModule, + Overlay, + InputText, + Button, + Ripple, + Scroller, + AutoFocus, + TimesCircleIcon, + SpinnerIcon, + TimesIcon, + ChevronDownIcon, + Chip, + ], template: `
    - + @@ -253,13 +269,13 @@ export const AUTOCOMPLETE_VALUE_ACCESSOR: any = { (onLazyLoad)="onLazyLoad.emit($event)" [options]="virtualScrollOptions" > - + - + @@ -329,10 +345,11 @@ export const AUTOCOMPLETE_VALUE_ACCESSOR: any = { [ngStyle]="{ height: scrollerOptions.itemSize + 'px' }" role="option" > - + @if (!emptyTemplate) { {{ searchResultMessageText }} - - + } @else { + + } @@ -786,27 +803,71 @@ export class AutoComplete extends BaseComponent implements AfterViewChecked, Aft itemsWrapper: Nullable; - itemTemplate: Nullable>; + /** + * Custom item template. + * @group Templates + */ + @ContentChild('item') itemTemplate: Nullable>; - emptyTemplate: Nullable>; + /** + * Custom empty message template. + * @group Templates + */ + @ContentChild('empty') emptyTemplate: Nullable>; - headerTemplate: Nullable>; + /** + * Custom header template. + * @group Templates + */ + @ContentChild('header') headerTemplate: Nullable>; - footerTemplate: Nullable>; + /** + * Custom footer template. + * @group Templates + */ + @ContentChild('footer') footerTemplate: Nullable>; - selectedItemTemplate: Nullable>; + /** + * Custom selected item template. + * @group Templates + */ + @ContentChild('selecteditem') selectedItemTemplate: Nullable>; - groupTemplate: Nullable>; + /** + * Custom group item template. + * @group Templates + */ + @ContentChild('group') groupTemplate: Nullable>; - loaderTemplate: Nullable>; + /** + * Custom loader template. + * @group Templates + */ + @ContentChild('loader') loaderTemplate: Nullable>; - removeIconTemplate: Nullable>; + /** + * Custom remove icon template. + * @group Templates + */ + @ContentChild('removeicon') removeIconTemplate: Nullable>; - loadingIconTemplate: Nullable>; + /** + * Custom loading icon template. + * @group Templates + */ + @ContentChild('loadingicon') loadingIconTemplate: Nullable>; - clearIconTemplate: Nullable>; + /** + * Custom clear icon template. + * @group Templates + */ + @ContentChild('clearicon') clearIconTemplate: Nullable>; - dropdownIconTemplate: Nullable>; + /** + * Custom dropdown icon template. + * @group Templates + */ + @ContentChild('dropdownicon') dropdownIconTemplate: Nullable>; value: string | any; @@ -1794,22 +1855,7 @@ export class AutoComplete extends BaseComponent implements AfterViewChecked, Aft } @NgModule({ - imports: [ - CommonModule, - OverlayModule, - InputTextModule, - ButtonModule, - SharedModule, - RippleModule, - ScrollerModule, - AutoFocusModule, - TimesCircleIcon, - SpinnerIcon, - TimesIcon, - ChevronDownIcon, - ChipModule, - ], - exports: [AutoComplete, OverlayModule, SharedModule, ScrollerModule, AutoFocusModule], - declarations: [AutoComplete], + imports: [AutoComplete, SharedModule], + exports: [AutoComplete, SharedModule], }) export class AutoCompleteModule {} diff --git a/src/app/components/autofocus/autofocus.ts b/src/app/components/autofocus/autofocus.ts index 46416dea560..52fd78ff7bd 100644 --- a/src/app/components/autofocus/autofocus.ts +++ b/src/app/components/autofocus/autofocus.ts @@ -1,6 +1,8 @@ -import { CommonModule, DOCUMENT, isPlatformBrowser } from '@angular/common'; -import { Directive, ElementRef, Input, NgModule, PLATFORM_ID, booleanAttribute, inject } from '@angular/core'; +import { DOCUMENT, isPlatformBrowser } from '@angular/common'; +import { booleanAttribute, Directive, ElementRef, inject, Input, NgModule, PLATFORM_ID } from '@angular/core'; +import { BaseComponent } from 'primeng/basecomponent'; import { DomHandler } from 'primeng/dom'; + /** * AutoFocus manages focus on focusable element on load. * @group Components @@ -9,7 +11,7 @@ import { DomHandler } from 'primeng/dom'; selector: '[pAutoFocus]', standalone: true, }) -export class AutoFocus { +export class AutoFocus extends BaseComponent { /** * When present, it specifies that the component should automatically get focus on load. * @group Props diff --git a/src/app/components/avatar/avatar.ts b/src/app/components/avatar/avatar.ts index a12758fbaae..b442018329e 100755 --- a/src/app/components/avatar/avatar.ts +++ b/src/app/components/avatar/avatar.ts @@ -8,7 +8,7 @@ import { Input, NgModule, Output, - ViewEncapsulation, + ViewEncapsulation } from '@angular/core'; import { BaseComponent } from 'primeng/basecomponent'; import { AvatarStyle } from './style/avatarstyle'; @@ -19,6 +19,8 @@ import { AvatarStyle } from './style/avatarstyle'; */ @Component({ selector: 'p-avatar', + standalone: true, + imports: [CommonModule], template: ` {{ label }} @@ -108,8 +110,7 @@ export class Avatar extends BaseComponent { } @NgModule({ - imports: [CommonModule], + imports: [Avatar], exports: [Avatar], - declarations: [Avatar], }) export class AvatarModule {} diff --git a/src/app/components/avatargroup/avatargroup.ts b/src/app/components/avatargroup/avatargroup.ts index a131abdc82f..c5ce25102e6 100755 --- a/src/app/components/avatargroup/avatargroup.ts +++ b/src/app/components/avatargroup/avatargroup.ts @@ -1,13 +1,24 @@ -import { NgModule, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, HostBinding, inject } from '@angular/core'; +import { + ChangeDetectionStrategy, + Component, + HostBinding, + inject, + Input, + NgModule, + ViewEncapsulation +} from '@angular/core'; import { CommonModule } from '@angular/common'; import { AvatarGroupStyle } from './style/avatargroupstyle'; import { BaseComponent } from 'primeng/basecomponent'; + /** * AvatarGroup is a helper component for Avatar. * @group Components */ @Component({ selector: 'p-avatarGroup, p-avatar-group, p-avatargroup', + standalone: true, + imports: [CommonModule], template: ` `, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, @@ -41,8 +52,7 @@ export class AvatarGroup extends BaseComponent { } @NgModule({ - imports: [CommonModule], + imports: [AvatarGroup], exports: [AvatarGroup], - declarations: [AvatarGroup], }) export class AvatarGroupModule {} diff --git a/src/app/components/blockui/blockui.ts b/src/app/components/blockui/blockui.ts index a1928b26e06..a8982ace771 100755 --- a/src/app/components/blockui/blockui.ts +++ b/src/app/components/blockui/blockui.ts @@ -1,32 +1,33 @@ import { CommonModule, isPlatformBrowser } from '@angular/common'; import { AfterViewInit, + booleanAttribute, ChangeDetectionStrategy, Component, - ContentChildren, + ContentChild, ElementRef, + inject, Input, NgModule, + numberAttribute, OnDestroy, - QueryList, TemplateRef, ViewChild, - ViewEncapsulation, - booleanAttribute, - inject, - numberAttribute, + ViewEncapsulation } from '@angular/core'; -import { PrimeTemplate } from 'primeng/api'; import { DomHandler } from 'primeng/dom'; import { ZIndexUtils } from 'primeng/utils'; import { BaseComponent } from 'primeng/basecomponent'; import { BlockUiStyle } from './style/blockuistyle'; + /** * BlockUI can either block other components or the whole page. * @group Components */ @Component({ selector: 'p-blockUI, p-blockui', + standalone: true, + imports: [CommonModule], template: `
    | undefined; + /** + * template of the content + * @group Templates + */ + @ContentChild('content') contentTemplate: TemplateRef | undefined; @ViewChild('mask') mask: ElementRef | undefined; @@ -91,8 +94,6 @@ export class BlockUI extends BaseComponent implements AfterViewInit, OnDestroy { animationEndListener: VoidFunction | null | undefined; - contentTemplate: TemplateRef | undefined; - _componentStyle = inject(BlockUiStyle); constructor() { @@ -108,20 +109,6 @@ export class BlockUI extends BaseComponent implements AfterViewInit, OnDestroy { } } - ngAfterContentInit() { - (this.templates as QueryList).forEach((item) => { - switch (item.getType()) { - case 'content': - this.contentTemplate = item.template; - break; - - default: - this.contentTemplate = item.template; - break; - } - }); - } - block() { if (isPlatformBrowser(this.platformId)) { this._blocked = true; @@ -175,8 +162,7 @@ export class BlockUI extends BaseComponent implements AfterViewInit, OnDestroy { } @NgModule({ - imports: [CommonModule], + imports: [BlockUI], exports: [BlockUI], - declarations: [BlockUI], }) export class BlockUIModule {} diff --git a/src/app/components/breadcrumb/breadcrumb.ts b/src/app/components/breadcrumb/breadcrumb.ts index 989197c9b81..f88fa36a4a4 100755 --- a/src/app/components/breadcrumb/breadcrumb.ts +++ b/src/app/components/breadcrumb/breadcrumb.ts @@ -3,6 +3,7 @@ import { AfterContentInit, ChangeDetectionStrategy, Component, + ContentChild, ContentChildren, EventEmitter, inject, @@ -11,7 +12,7 @@ import { Output, QueryList, TemplateRef, - ViewEncapsulation, + ViewEncapsulation } from '@angular/core'; import { Router, RouterModule } from '@angular/router'; import { MenuItem, PrimeTemplate, SharedModule } from 'primeng/api'; @@ -28,6 +29,8 @@ import { BaseComponent } from 'primeng/basecomponent'; */ @Component({ selector: 'p-breadcrumb', + standalone: true, + imports: [CommonModule, RouterModule, TooltipModule, ChevronRightIcon, HomeIcon], template: `